mirror of
https://github.com/pezkuwichain/pez-solochain-template.git
synced 2026-06-13 17:31:08 +00:00
Update to stable2407 triggered by workflow_dispatch
This commit is contained in:
+30
-32
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "solochain-template-runtime"
|
||||
description = "A solochain runtime template built with Substrate, part of Polkadot Sdk. (polkadot v1.14.0)"
|
||||
description = "A solochain runtime template built with Substrate, part of Polkadot Sdk. (polkadot v1.15.0)"
|
||||
version = "0.1.0"
|
||||
license = "Unlicense"
|
||||
authors.workspace = true
|
||||
@@ -20,38 +20,37 @@ scale-info = { features = [
|
||||
"derive",
|
||||
"serde",
|
||||
], workspace = true }
|
||||
frame-support = { version = "36.0.0", features = ["experimental"], workspace = true }
|
||||
frame-system = { version = "36.0.0", workspace = true }
|
||||
frame-try-runtime = { version = "0.42.0", optional = true, workspace = true }
|
||||
frame-executive = { version = "36.0.0", workspace = true }
|
||||
pallet-aura = { version = "35.0.0", workspace = true }
|
||||
pallet-balances = { version = "37.0.0", workspace = true }
|
||||
pallet-grandpa = { version = "36.0.0", workspace = true }
|
||||
pallet-sudo = { version = "36.0.0", workspace = true }
|
||||
pallet-timestamp = { version = "35.0.0", workspace = true }
|
||||
pallet-transaction-payment = { version = "36.0.0", workspace = true }
|
||||
sp-api = { version = "33.0.0", workspace = true }
|
||||
sp-block-builder = { version = "33.0.0", workspace = true }
|
||||
sp-consensus-aura = { version = "0.39.0", features = ["serde"], workspace = true }
|
||||
sp-consensus-grandpa = { version = "20.0.0", features = ["serde"], workspace = true }
|
||||
sp-core = { version = "34.0.0", features = ["serde"], workspace = true }
|
||||
sp-inherents = { version = "33.0.0", workspace = true }
|
||||
sp-offchain = { version = "33.0.0", workspace = true }
|
||||
sp-runtime = { version = "38.0.0", features = ["serde"], workspace = true }
|
||||
sp-session = { version = "34.0.0", workspace = true }
|
||||
sp-std = { version = "14.0.0", workspace = true }
|
||||
sp-storage = { version = "21.0.0", workspace = true }
|
||||
sp-transaction-pool = { version = "33.0.0", workspace = true }
|
||||
sp-version = { version = "36.0.0", features = ["serde"], workspace = true }
|
||||
sp-genesis-builder = { version = "0.14.0", workspace = true }
|
||||
frame-system-rpc-runtime-api = { version = "33.0.0", workspace = true }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "36.0.0", workspace = true }
|
||||
frame-benchmarking = { version = "36.0.0", optional = true, workspace = true }
|
||||
frame-system-benchmarking = { version = "36.0.0", optional = true, workspace = true }
|
||||
pallet-template = { version = "0.1.0", workspace = true }
|
||||
frame-support = { features = ["experimental"], workspace = true }
|
||||
frame-system.workspace = true
|
||||
frame-try-runtime = { optional = true, workspace = true }
|
||||
frame-executive.workspace = true
|
||||
pallet-aura.workspace = true
|
||||
pallet-balances.workspace = true
|
||||
pallet-grandpa.workspace = true
|
||||
pallet-sudo.workspace = true
|
||||
pallet-timestamp.workspace = true
|
||||
pallet-transaction-payment.workspace = true
|
||||
sp-api.workspace = true
|
||||
sp-block-builder.workspace = true
|
||||
sp-consensus-aura = { features = ["serde"], workspace = true }
|
||||
sp-consensus-grandpa = { features = ["serde"], workspace = true }
|
||||
sp-core = { features = ["serde"], workspace = true }
|
||||
sp-inherents.workspace = true
|
||||
sp-offchain.workspace = true
|
||||
sp-runtime = { features = ["serde"], workspace = true }
|
||||
sp-session.workspace = true
|
||||
sp-storage.workspace = true
|
||||
sp-transaction-pool.workspace = true
|
||||
sp-version = { features = ["serde"], workspace = true }
|
||||
sp-genesis-builder.workspace = true
|
||||
frame-system-rpc-runtime-api.workspace = true
|
||||
pallet-transaction-payment-rpc-runtime-api.workspace = true
|
||||
frame-benchmarking = { optional = true, workspace = true }
|
||||
frame-system-benchmarking = { optional = true, workspace = true }
|
||||
pallet-template.workspace = true
|
||||
|
||||
[build-dependencies]
|
||||
substrate-wasm-builder = { version = "23.0.0", optional = true, workspace = true, default-features = true }
|
||||
substrate-wasm-builder = { optional = true, workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -87,7 +86,6 @@ std = [
|
||||
"sp-offchain/std",
|
||||
"sp-runtime/std",
|
||||
"sp-session/std",
|
||||
"sp-std/std",
|
||||
"sp-storage/std",
|
||||
"sp-transaction-pool/std",
|
||||
"sp-version/std",
|
||||
|
||||
+3
-2
@@ -3,6 +3,8 @@
|
||||
#[cfg(feature = "std")]
|
||||
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));
|
||||
|
||||
extern crate alloc;
|
||||
use alloc::{vec, vec::Vec};
|
||||
use pallet_grandpa::AuthorityId as GrandpaId;
|
||||
use sp_api::impl_runtime_apis;
|
||||
use sp_consensus_aura::sr25519::AuthorityId as AuraId;
|
||||
@@ -13,7 +15,6 @@ use sp_runtime::{
|
||||
transaction_validity::{TransactionSource, TransactionValidity},
|
||||
ApplyExtrinsicResult, MultiSignature,
|
||||
};
|
||||
use sp_std::prelude::*;
|
||||
#[cfg(feature = "std")]
|
||||
use sp_version::NativeVersion;
|
||||
use sp_version::RuntimeVersion;
|
||||
@@ -370,7 +371,7 @@ impl_runtime_apis! {
|
||||
Runtime::metadata_at_version(version)
|
||||
}
|
||||
|
||||
fn metadata_versions() -> sp_std::vec::Vec<u32> {
|
||||
fn metadata_versions() -> Vec<u32> {
|
||||
Runtime::metadata_versions()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user