From d9e09aae289a726dba8473aa5b43cadf722d18af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Tue, 19 May 2020 09:45:52 +0200 Subject: [PATCH 1/4] Companion to #6067 --- runtime/common/src/lib.rs | 1 + runtime/kusama/src/lib.rs | 2 ++ runtime/polkadot/src/lib.rs | 2 ++ runtime/westend/src/lib.rs | 3 ++- 4 files changed, 7 insertions(+), 1 deletion(-) diff --git a/runtime/common/src/lib.rs b/runtime/common/src/lib.rs index 57ef31b70cae..62386b3bf5b1 100644 --- a/runtime/common/src/lib.rs +++ b/runtime/common/src/lib.rs @@ -54,5 +54,6 @@ parameter_types! { pub const BlockHashCount: BlockNumber = 2400; pub const MaximumBlockWeight: Weight = 2 * WEIGHT_PER_SECOND; pub const AvailableBlockRatio: Perbill = Perbill::from_percent(75); + pub const MaximumExtrinsicWeight: Weight = Perbill::from_percent(75 - 10) * MaximumBlockWeight::get(); pub const MaximumBlockLength: u32 = 5 * 1024 * 1024; } diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 4f9d0f20e7f3..e0552983b2dc 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -31,6 +31,7 @@ use runtime_common::{attestations, claims, parachains, registrar, slots, impls::{CurrencyToVoteHandler, TargetedFeeAdjustment, ToAuthor}, NegativeImbalance, BlockHashCount, MaximumBlockWeight, AvailableBlockRatio, MaximumBlockLength, BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, + MaximumExtrinsicWeight }; use sp_runtime::{ create_runtime_str, generic, impl_opaque_keys, ModuleId, @@ -148,6 +149,7 @@ impl system::Trait for Runtime { type DbWeight = RocksDbWeight; type BlockExecutionWeight = BlockExecutionWeight; type ExtrinsicBaseWeight = ExtrinsicBaseWeight; + type MaximumExtrinsicWeight = MaximumExtrinsicWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = Version; diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 0a16390001e3..2b7151e7a1c9 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -24,6 +24,7 @@ use runtime_common::{attestations, claims, parachains, registrar, slots, impls::{CurrencyToVoteHandler, TargetedFeeAdjustment, ToAuthor}, NegativeImbalance, BlockHashCount, MaximumBlockWeight, AvailableBlockRatio, MaximumBlockLength, BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, + MaximumExtrinsicWeight, }; use sp_std::prelude::*; @@ -154,6 +155,7 @@ impl system::Trait for Runtime { type DbWeight = RocksDbWeight; type BlockExecutionWeight = BlockExecutionWeight; type ExtrinsicBaseWeight = ExtrinsicBaseWeight; + type MaximumExtrinsicWeight = MaximumExtrinsicWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = Version; diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 30741ebd7534..71a0eeb7c21d 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -29,7 +29,7 @@ use primitives::{ use runtime_common::{attestations, parachains, registrar, impls::{CurrencyToVoteHandler, TargetedFeeAdjustment, ToAuthor}, BlockHashCount, MaximumBlockWeight, AvailableBlockRatio, MaximumBlockLength, - BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, + BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, MaximumExtrinsicWeight }; use sp_runtime::{ create_runtime_str, generic, impl_opaque_keys, @@ -147,6 +147,7 @@ impl system::Trait for Runtime { type DbWeight = RocksDbWeight; type BlockExecutionWeight = BlockExecutionWeight; type ExtrinsicBaseWeight = ExtrinsicBaseWeight; + type MaximumExtrinsicWeight = MaximumExtrinsicWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = Version; From 58957662ead2a9b6a72f709ef052730a8cb92c40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Tue, 19 May 2020 14:06:41 +0200 Subject: [PATCH 2/4] Fix tests? --- runtime/common/src/claims.rs | 1 + runtime/common/src/crowdfund.rs | 1 + runtime/common/src/parachains.rs | 1 + runtime/common/src/registrar.rs | 1 + runtime/common/src/slots.rs | 1 + runtime/test-runtime/src/lib.rs | 1 + 6 files changed, 6 insertions(+) diff --git a/runtime/common/src/claims.rs b/runtime/common/src/claims.rs index 38378b961501..53e58caebe93 100644 --- a/runtime/common/src/claims.rs +++ b/runtime/common/src/claims.rs @@ -646,6 +646,7 @@ mod tests { type DbWeight = (); type BlockExecutionWeight = (); type ExtrinsicBaseWeight = (); + type MaximumExtrinsicWeight = MaximumBlockWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = (); diff --git a/runtime/common/src/crowdfund.rs b/runtime/common/src/crowdfund.rs index e3c8bb6eb1e4..8433bb064bfa 100644 --- a/runtime/common/src/crowdfund.rs +++ b/runtime/common/src/crowdfund.rs @@ -608,6 +608,7 @@ mod tests { type DbWeight = (); type BlockExecutionWeight = (); type ExtrinsicBaseWeight = (); + type MaximumExtrinsicWeight = MaximumBlockWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = (); diff --git a/runtime/common/src/parachains.rs b/runtime/common/src/parachains.rs index cb9b3d5d7765..d1c551304817 100644 --- a/runtime/common/src/parachains.rs +++ b/runtime/common/src/parachains.rs @@ -1624,6 +1624,7 @@ mod tests { type DbWeight = (); type BlockExecutionWeight = (); type ExtrinsicBaseWeight = (); + type MaximumExtrinsicWeight = MaximumBlockWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = (); diff --git a/runtime/common/src/registrar.rs b/runtime/common/src/registrar.rs index c736a4fe9f89..9e79e29a792c 100644 --- a/runtime/common/src/registrar.rs +++ b/runtime/common/src/registrar.rs @@ -738,6 +738,7 @@ mod tests { type DbWeight = (); type BlockExecutionWeight = (); type ExtrinsicBaseWeight = (); + type MaximumExtrinsicWeight = MaximumBlockWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = (); diff --git a/runtime/common/src/slots.rs b/runtime/common/src/slots.rs index 302cf4ef6a1f..02efa1f90e68 100644 --- a/runtime/common/src/slots.rs +++ b/runtime/common/src/slots.rs @@ -924,6 +924,7 @@ mod tests { type DbWeight = (); type BlockExecutionWeight = (); type ExtrinsicBaseWeight = (); + type MaximumExtrinsicWeight = MaximumBlockWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = (); diff --git a/runtime/test-runtime/src/lib.rs b/runtime/test-runtime/src/lib.rs index 3de486587713..94ef6acebd47 100644 --- a/runtime/test-runtime/src/lib.rs +++ b/runtime/test-runtime/src/lib.rs @@ -144,6 +144,7 @@ impl system::Trait for Runtime { type DbWeight = (); type BlockExecutionWeight = BlockExecutionWeight; type ExtrinsicBaseWeight = ExtrinsicBaseWeight; + type MaximumExtrinsicWeight = MaximumBlockWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = Version; From 6d98d9e994484be84e394cfa0aead2a388d35f24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Wed, 20 May 2020 13:40:24 +0200 Subject: [PATCH 3/4] Use AvailableBlockLimit instead of hardcoding the value. --- runtime/common/src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/runtime/common/src/lib.rs b/runtime/common/src/lib.rs index 62386b3bf5b1..1dbabf92d4b3 100644 --- a/runtime/common/src/lib.rs +++ b/runtime/common/src/lib.rs @@ -28,7 +28,7 @@ pub mod crowdfund; pub mod impls; use primitives::BlockNumber; -use sp_runtime::Perbill; +use sp_runtime::{traits::Saturating, Perbill}; use frame_support::{ parameter_types, traits::Currency, weights::{Weight, constants::WEIGHT_PER_SECOND}, @@ -54,6 +54,7 @@ parameter_types! { pub const BlockHashCount: BlockNumber = 2400; pub const MaximumBlockWeight: Weight = 2 * WEIGHT_PER_SECOND; pub const AvailableBlockRatio: Perbill = Perbill::from_percent(75); - pub const MaximumExtrinsicWeight: Weight = Perbill::from_percent(75 - 10) * MaximumBlockWeight::get(); + pub const MaximumExtrinsicWeight: Weight = AvailableBlockRatio::get() + .saturating_sub(Perbill::from_percent(10)) * MaximumBlockWeight::get(); pub const MaximumBlockLength: u32 = 5 * 1024 * 1024; } From 0917fea9d4fc676e372ff8e4e24cbc1fdd2353e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Wed, 20 May 2020 15:05:48 +0200 Subject: [PATCH 4/4] Bump substrate. --- Cargo.lock | 285 ++++++++++++++++++++++++++--------------------------- 1 file changed, 138 insertions(+), 147 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e9829ca4633f..e87d974d4f47 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1221,7 +1221,7 @@ checksum = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" [[package]] name = "fork-tree" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", ] @@ -1229,7 +1229,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -1246,7 +1246,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-benchmarking", "parity-scale-codec", @@ -1264,7 +1264,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -1279,7 +1279,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "11.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "serde", @@ -1290,7 +1290,7 @@ dependencies = [ [[package]] name = "frame-support" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "bitmask", "frame-metadata", @@ -1314,7 +1314,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support-procedural-tools", "proc-macro2 1.0.12", @@ -1325,7 +1325,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -1337,7 +1337,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "proc-macro2 1.0.12", "quote 1.0.5", @@ -1347,7 +1347,7 @@ dependencies = [ [[package]] name = "frame-system" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -1363,7 +1363,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "sp-api", @@ -3265,7 +3265,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -3274,8 +3274,6 @@ dependencies = [ "serde", "sp-application-crypto", "sp-authority-discovery", - "sp-core", - "sp-io", "sp-runtime", "sp-std", ] @@ -3283,16 +3281,14 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", "impl-trait-for-tuples", "parity-scale-codec", "sp-authorship", - "sp-core", "sp-inherents", - "sp-io", "sp-runtime", "sp-std", ] @@ -3300,7 +3296,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -3322,14 +3318,13 @@ dependencies = [ [[package]] name = "pallet-balances" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "serde", - "sp-io", "sp-runtime", "sp-std", ] @@ -3337,7 +3332,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-benchmarking", "frame-support", @@ -3353,7 +3348,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-benchmarking", "frame-support", @@ -3368,7 +3363,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-benchmarking", "frame-support", @@ -3383,7 +3378,7 @@ dependencies = [ [[package]] name = "pallet-finality-tracker" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -3399,7 +3394,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -3419,7 +3414,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "enumflags2", "frame-benchmarking", @@ -3435,7 +3430,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-benchmarking", "frame-support", @@ -3455,7 +3450,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -3471,7 +3466,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -3485,7 +3480,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -3499,7 +3494,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -3514,7 +3509,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-benchmarking", "frame-support", @@ -3527,7 +3522,6 @@ dependencies = [ "pallet-session", "pallet-staking", "parity-scale-codec", - "sp-io", "sp-runtime", "sp-staking", "sp-std", @@ -3536,7 +3530,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -3549,7 +3543,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "enumflags2", "frame-support", @@ -3564,7 +3558,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-benchmarking", "frame-support", @@ -3579,7 +3573,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -3587,7 +3581,6 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "serde", - "sp-io", "sp-runtime", "sp-session", "sp-staking", @@ -3598,7 +3591,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-benchmarking", "frame-support", @@ -3612,14 +3605,13 @@ dependencies = [ [[package]] name = "pallet-society" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", "parity-scale-codec", "rand_chacha 0.2.2", "serde", - "sp-io", "sp-runtime", "sp-std", ] @@ -3627,7 +3619,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-benchmarking", "frame-support", @@ -3650,7 +3642,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.12", @@ -3661,7 +3653,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -3675,7 +3667,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-benchmarking", "frame-support", @@ -3693,7 +3685,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "frame-system", @@ -3706,7 +3698,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -3724,7 +3716,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-support", "parity-scale-codec", @@ -3737,7 +3729,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-benchmarking", "frame-support", @@ -3752,7 +3744,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-benchmarking", "frame-support", @@ -3768,7 +3760,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "enumflags2", "frame-benchmarking", @@ -3776,7 +3768,6 @@ dependencies = [ "frame-system", "parity-scale-codec", "serde", - "sp-io", "sp-runtime", "sp-std", ] @@ -5316,7 +5307,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "bytes 0.5.4", "derive_more 0.99.6", @@ -5343,7 +5334,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -5359,7 +5350,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "impl-trait-for-tuples", "sc-chain-spec-derive", @@ -5375,7 +5366,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.12", @@ -5386,7 +5377,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "ansi_term 0.12.1", "app_dirs", @@ -5428,7 +5419,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "fnv", @@ -5464,7 +5455,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "blake2-rfc", "hash-db", @@ -5493,7 +5484,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "sc-client-api", "sp-blockchain", @@ -5504,7 +5495,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "fork-tree", @@ -5546,7 +5537,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -5568,7 +5559,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "fork-tree", "parity-scale-codec", @@ -5581,7 +5572,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5603,7 +5594,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "log 0.4.8", "sc-client-api", @@ -5617,7 +5608,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "lazy_static", @@ -5645,7 +5636,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "log 0.4.8", @@ -5662,7 +5653,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -5677,7 +5668,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "cranelift-codegen", "cranelift-wasm", @@ -5698,7 +5689,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "assert_matches", "derive_more 0.99.6", @@ -5735,7 +5726,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "finality-grandpa", @@ -5752,7 +5743,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "ansi_term 0.12.1", "futures 0.3.5", @@ -5769,7 +5760,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "hex", @@ -5784,7 +5775,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "bitflags", "bs58", @@ -5836,7 +5827,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5851,7 +5842,7 @@ dependencies = [ [[package]] name = "sc-network-test" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "env_logger", "futures 0.3.5", @@ -5878,7 +5869,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "bytes 0.5.4", "fnv", @@ -5905,7 +5896,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "futures 0.3.5", "libp2p", @@ -5918,7 +5909,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "futures 0.3.5", "hash-db", @@ -5950,7 +5941,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -5974,7 +5965,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "jsonrpc-core", "jsonrpc-http-server", @@ -5989,7 +5980,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "exit-future", @@ -6047,7 +6038,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -6061,7 +6052,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "bytes 0.5.4", "futures 0.3.5", @@ -6083,7 +6074,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "erased-serde", "log 0.4.8", @@ -6098,7 +6089,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -6118,7 +6109,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -6515,7 +6506,7 @@ dependencies = [ [[package]] name = "sp-allocator" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "log 0.4.8", @@ -6527,7 +6518,7 @@ dependencies = [ [[package]] name = "sp-api" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "hash-db", "parity-scale-codec", @@ -6542,7 +6533,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "blake2-rfc", "proc-macro-crate", @@ -6554,7 +6545,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "serde", @@ -6566,7 +6557,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "integer-sqrt", "num-traits 0.2.11", @@ -6580,7 +6571,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "sp-api", @@ -6592,7 +6583,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -6603,7 +6594,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "sp-api", @@ -6615,7 +6606,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "log 0.4.8", @@ -6631,7 +6622,7 @@ dependencies = [ [[package]] name = "sp-chain-spec" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "serde", "serde_json", @@ -6640,7 +6631,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -6663,7 +6654,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "sp-api", @@ -6677,7 +6668,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "merlin", "parity-scale-codec", @@ -6694,7 +6685,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -6706,7 +6697,7 @@ dependencies = [ [[package]] name = "sp-core" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "base58", "blake2-rfc", @@ -6748,7 +6739,7 @@ dependencies = [ [[package]] name = "sp-database" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "kvdb", "parking_lot 0.10.2", @@ -6757,7 +6748,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "proc-macro2 1.0.12", "quote 1.0.5", @@ -6767,7 +6758,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "environmental", "parity-scale-codec", @@ -6778,7 +6769,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "finality-grandpa", "log 0.4.8", @@ -6794,7 +6785,7 @@ dependencies = [ [[package]] name = "sp-finality-tracker" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -6804,7 +6795,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "parity-scale-codec", @@ -6816,7 +6807,7 @@ dependencies = [ [[package]] name = "sp-io" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "futures 0.3.5", "hash-db", @@ -6836,7 +6827,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "lazy_static", "sp-core", @@ -6847,7 +6838,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "sp-api", "sp-core", @@ -6857,7 +6848,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "backtrace", "log 0.4.8", @@ -6866,7 +6857,7 @@ dependencies = [ [[package]] name = "sp-phragmen" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "serde", @@ -6878,7 +6869,7 @@ dependencies = [ [[package]] name = "sp-phragmen-compact" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.12", @@ -6889,7 +6880,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "serde", "sp-core", @@ -6898,7 +6889,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "hash256-std-hasher", "impl-trait-for-tuples", @@ -6919,7 +6910,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "primitive-types", @@ -6934,7 +6925,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "Inflector", "proc-macro-crate", @@ -6946,7 +6937,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "serde", "serde_json", @@ -6955,7 +6946,7 @@ dependencies = [ [[package]] name = "sp-session" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "sp-api", @@ -6968,7 +6959,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -6978,7 +6969,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "hash-db", "log 0.4.8", @@ -6997,12 +6988,12 @@ dependencies = [ [[package]] name = "sp-std" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" [[package]] name = "sp-storage" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "impl-serde 0.2.3", "ref-cast", @@ -7014,7 +7005,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7028,7 +7019,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "tracing", ] @@ -7036,7 +7027,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -7051,7 +7042,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "hash-db", "memory-db", @@ -7065,7 +7056,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "futures 0.3.5", "futures-core", @@ -7076,7 +7067,7 @@ dependencies = [ [[package]] name = "sp-version" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "impl-serde 0.2.3", "parity-scale-codec", @@ -7088,7 +7079,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7216,7 +7207,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "chrono", "clear_on_drop", @@ -7243,7 +7234,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "platforms", ] @@ -7251,7 +7242,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.5", @@ -7272,7 +7263,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "async-std", "derive_more 0.99.6", @@ -7286,7 +7277,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "futures 0.3.5", "hash-db", @@ -7307,7 +7298,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "cfg-if", "frame-executive", @@ -7347,7 +7338,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" dependencies = [ "futures 0.3.5", "parity-scale-codec", @@ -7367,7 +7358,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder-runner" version = "1.0.6" -source = "git+https://github.com/paritytech/substrate#12e08fd25455053e3cedc8b19beb7e77330a5713" +source = "git+https://github.com/paritytech/substrate#899a44864900cb691c99f7421bc85e4118bca93d" [[package]] name = "substrate-wasm-builder-runner" @@ -7377,9 +7368,9 @@ checksum = "d2a965994514ab35d3893e9260245f2947fd1981cdd4fffd2c6e6d1a9ce02e6a" [[package]] name = "substrate-wasmtime" -version = "0.16.0-threadsafe.3" +version = "0.16.0-threadsafe.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b0d8eca5d0186e98c8d13399423853e2356b593e028b53e43b2aa35e9105a82" +checksum = "6bd62264edc1a5f3ef44d86fb0c11c9fb142894b9a2da034f34afae482080d7a" dependencies = [ "anyhow", "backtrace", @@ -7400,9 +7391,9 @@ dependencies = [ [[package]] name = "substrate-wasmtime-jit" -version = "0.16.0-threadsafe.3" +version = "0.16.0-threadsafe.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e95772b1778186e4f5c9ae9148bab9911cddf563805a403dee418780e2ed14b4" +checksum = "4ce43c159d4f3ef6b19641e1ae045847fd202d8e2cc74df7ccb2b6475e069d4a" dependencies = [ "anyhow", "cfg-if", @@ -7427,9 +7418,9 @@ dependencies = [ [[package]] name = "substrate-wasmtime-profiling" -version = "0.16.0-threadsafe.3" +version = "0.16.0-threadsafe.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f8a0bf9ca20bee7d83338470247a3f1823158382ebd51fadefcc986e0a6c3de" +checksum = "c77f0ce539b5a09a54dc80a1cf0c7cd7e694df11029354fe50a2d5fe889bdb97" dependencies = [ "anyhow", "cfg-if", @@ -7446,9 +7437,9 @@ dependencies = [ [[package]] name = "substrate-wasmtime-runtime" -version = "0.16.0-threadsafe.3" +version = "0.16.0-threadsafe.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a559895fe1efab16d1c490199225ae35c153ed432ef87ebc177fb37edbd20c7c" +checksum = "46516af0a64a7d9b652c5aa7436b6ce13edfa54435a66ef177fc02d2283e2dc2" dependencies = [ "backtrace", "cc",