From 463ca8e0b1499b7b78e0448e15e1140c834e9e16 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Fri, 17 Jul 2020 04:59:28 +0200 Subject: [PATCH 1/4] Update for balances weights --- runtime/kusama/src/lib.rs | 17 ++++++++++++-- runtime/kusama/src/weights/balances.rs | 29 ++++++++++++++++++++++++ runtime/kusama/src/weights/mod.rs | 1 + runtime/polkadot/src/lib.rs | 17 ++++++++++++-- runtime/polkadot/src/weights/balances.rs | 29 ++++++++++++++++++++++++ runtime/polkadot/src/weights/mod.rs | 1 + runtime/westend/src/lib.rs | 17 ++++++++++++-- runtime/westend/src/weights/balances.rs | 29 ++++++++++++++++++++++++ runtime/westend/src/weights/mod.rs | 1 + 9 files changed, 135 insertions(+), 6 deletions(-) create mode 100644 runtime/kusama/src/weights/balances.rs create mode 100644 runtime/kusama/src/weights/mod.rs create mode 100644 runtime/polkadot/src/weights/balances.rs create mode 100644 runtime/polkadot/src/weights/mod.rs create mode 100644 runtime/westend/src/weights/balances.rs create mode 100644 runtime/westend/src/weights/mod.rs diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index cba2ad10c0cf..a63174d4a643 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -78,6 +78,9 @@ pub use parachains::Call as ParachainsCall; pub mod constants; use constants::{time::*, currency::*, fee::*}; +// Weights used in the runtime. +mod weights; + // Make the WASM binary available. #[cfg(feature = "std")] include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); @@ -219,7 +222,7 @@ impl balances::Trait for Runtime { type Event = Event; type ExistentialDeposit = ExistentialDeposit; type AccountStore = System; - type WeightInfo = (); + type WeightInfo = weights::balances::WeightInfo; } parameter_types! { @@ -1273,6 +1276,7 @@ sp_api::impl_runtime_apis! { highest_range_values: Vec, steps: Vec, repeat: u32, + extra: bool, ) -> Result, RuntimeString> { use frame_benchmarking::{Benchmarking, BenchmarkBatch, add_benchmark}; // Trying to add benchmarks directly to the Session Pallet caused cyclic dependency issues. @@ -1305,7 +1309,16 @@ sp_api::impl_runtime_apis! { ]; let mut batches = Vec::::new(); - let params = (&pallet, &benchmark, &lowest_range_values, &highest_range_values, &steps, repeat, &whitelist); + let params = ( + &pallet, + &benchmark, + &lowest_range_values, + &highest_range_values, + &steps, + repeat, + &whitelist, + extra, + ); // Polkadot add_benchmark!(params, batches, claims, Claims); // Substrate diff --git a/runtime/kusama/src/weights/balances.rs b/runtime/kusama/src/weights/balances.rs new file mode 100644 index 000000000000..90746544822e --- /dev/null +++ b/runtime/kusama/src/weights/balances.rs @@ -0,0 +1,29 @@ +use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight}; +pub struct WeightInfo; +impl balances::WeightInfo for WeightInfo { + fn transfer() -> Weight { + (65949000 as Weight) + .saturating_add(DbWeight::get().reads(1 as Weight)) + .saturating_add(DbWeight::get().writes(1 as Weight)) + } + fn transfer_keep_alive() -> Weight { + (46665000 as Weight) + .saturating_add(DbWeight::get().reads(1 as Weight)) + .saturating_add(DbWeight::get().writes(1 as Weight)) + } + fn set_balance_creating() -> Weight { + (27086000 as Weight) + .saturating_add(DbWeight::get().reads(1 as Weight)) + .saturating_add(DbWeight::get().writes(1 as Weight)) + } + fn set_balance_killing() -> Weight { + (33424000 as Weight) + .saturating_add(DbWeight::get().reads(1 as Weight)) + .saturating_add(DbWeight::get().writes(1 as Weight)) + } + fn force_transfer() -> Weight { + (65343000 as Weight) + .saturating_add(DbWeight::get().reads(2 as Weight)) + .saturating_add(DbWeight::get().writes(2 as Weight)) + } +} diff --git a/runtime/kusama/src/weights/mod.rs b/runtime/kusama/src/weights/mod.rs new file mode 100644 index 000000000000..1134948feb8c --- /dev/null +++ b/runtime/kusama/src/weights/mod.rs @@ -0,0 +1 @@ +pub mod balances; diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 68cbf0a97bf5..6e419653e2ea 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -83,6 +83,9 @@ pub mod poll; use constants::{time::*, currency::*, fee::*}; use frame_support::traits::InstanceFilter; +// Weights used in the runtime. +mod weights; + // Make the WASM binary available. #[cfg(feature = "std")] include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); @@ -247,7 +250,7 @@ impl balances::Trait for Runtime { type Event = Event; type ExistentialDeposit = ExistentialDeposit; type AccountStore = System; - type WeightInfo = (); + type WeightInfo = weights::balances::WeightInfo; } parameter_types! { @@ -1284,6 +1287,7 @@ sp_api::impl_runtime_apis! { highest_range_values: Vec, steps: Vec, repeat: u32, + extra: bool, ) -> Result, RuntimeString> { use frame_benchmarking::{Benchmarking, BenchmarkBatch, add_benchmark}; // Trying to add benchmarks directly to the Session Pallet caused cyclic dependency issues. @@ -1316,7 +1320,16 @@ sp_api::impl_runtime_apis! { ]; let mut batches = Vec::::new(); - let params = (&pallet, &benchmark, &lowest_range_values, &highest_range_values, &steps, repeat, &whitelist); + let params = ( + &pallet, + &benchmark, + &lowest_range_values, + &highest_range_values, + &steps, + repeat, + &whitelist, + extra, + ); // Polkadot add_benchmark!(params, batches, claims, Claims); // Substrate diff --git a/runtime/polkadot/src/weights/balances.rs b/runtime/polkadot/src/weights/balances.rs new file mode 100644 index 000000000000..90746544822e --- /dev/null +++ b/runtime/polkadot/src/weights/balances.rs @@ -0,0 +1,29 @@ +use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight}; +pub struct WeightInfo; +impl balances::WeightInfo for WeightInfo { + fn transfer() -> Weight { + (65949000 as Weight) + .saturating_add(DbWeight::get().reads(1 as Weight)) + .saturating_add(DbWeight::get().writes(1 as Weight)) + } + fn transfer_keep_alive() -> Weight { + (46665000 as Weight) + .saturating_add(DbWeight::get().reads(1 as Weight)) + .saturating_add(DbWeight::get().writes(1 as Weight)) + } + fn set_balance_creating() -> Weight { + (27086000 as Weight) + .saturating_add(DbWeight::get().reads(1 as Weight)) + .saturating_add(DbWeight::get().writes(1 as Weight)) + } + fn set_balance_killing() -> Weight { + (33424000 as Weight) + .saturating_add(DbWeight::get().reads(1 as Weight)) + .saturating_add(DbWeight::get().writes(1 as Weight)) + } + fn force_transfer() -> Weight { + (65343000 as Weight) + .saturating_add(DbWeight::get().reads(2 as Weight)) + .saturating_add(DbWeight::get().writes(2 as Weight)) + } +} diff --git a/runtime/polkadot/src/weights/mod.rs b/runtime/polkadot/src/weights/mod.rs new file mode 100644 index 000000000000..1134948feb8c --- /dev/null +++ b/runtime/polkadot/src/weights/mod.rs @@ -0,0 +1 @@ +pub mod balances; diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index a0eaa03fd62a..a5b991c67861 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -74,6 +74,9 @@ pub use parachains::Call as ParachainsCall; pub mod constants; use constants::{time::*, currency::*, fee::*}; +// Weights used in the runtime +mod weights; + // Make the WASM binary available. #[cfg(feature = "std")] include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); @@ -201,7 +204,7 @@ impl balances::Trait for Runtime { type Event = Event; type ExistentialDeposit = ExistentialDeposit; type AccountStore = System; - type WeightInfo = (); + type WeightInfo = weights::balances::WeightInfo; } parameter_types! { @@ -1013,6 +1016,7 @@ sp_api::impl_runtime_apis! { highest_range_values: Vec, steps: Vec, repeat: u32, + extra: bool, ) -> Result, RuntimeString> { use frame_benchmarking::{Benchmarking, BenchmarkBatch, add_benchmark}; // Trying to add benchmarks directly to the Session Pallet caused cyclic dependency issues. @@ -1045,7 +1049,16 @@ sp_api::impl_runtime_apis! { ]; let mut batches = Vec::::new(); - let params = (&pallet, &benchmark, &lowest_range_values, &highest_range_values, &steps, repeat, &whitelist); + let params = ( + &pallet, + &benchmark, + &lowest_range_values, + &highest_range_values, + &steps, + repeat, + &whitelist, + extra, + ); add_benchmark!(params, batches, balances,Balances); add_benchmark!(params, batches, identity,Identity); diff --git a/runtime/westend/src/weights/balances.rs b/runtime/westend/src/weights/balances.rs new file mode 100644 index 000000000000..90746544822e --- /dev/null +++ b/runtime/westend/src/weights/balances.rs @@ -0,0 +1,29 @@ +use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight}; +pub struct WeightInfo; +impl balances::WeightInfo for WeightInfo { + fn transfer() -> Weight { + (65949000 as Weight) + .saturating_add(DbWeight::get().reads(1 as Weight)) + .saturating_add(DbWeight::get().writes(1 as Weight)) + } + fn transfer_keep_alive() -> Weight { + (46665000 as Weight) + .saturating_add(DbWeight::get().reads(1 as Weight)) + .saturating_add(DbWeight::get().writes(1 as Weight)) + } + fn set_balance_creating() -> Weight { + (27086000 as Weight) + .saturating_add(DbWeight::get().reads(1 as Weight)) + .saturating_add(DbWeight::get().writes(1 as Weight)) + } + fn set_balance_killing() -> Weight { + (33424000 as Weight) + .saturating_add(DbWeight::get().reads(1 as Weight)) + .saturating_add(DbWeight::get().writes(1 as Weight)) + } + fn force_transfer() -> Weight { + (65343000 as Weight) + .saturating_add(DbWeight::get().reads(2 as Weight)) + .saturating_add(DbWeight::get().writes(2 as Weight)) + } +} diff --git a/runtime/westend/src/weights/mod.rs b/runtime/westend/src/weights/mod.rs new file mode 100644 index 000000000000..1134948feb8c --- /dev/null +++ b/runtime/westend/src/weights/mod.rs @@ -0,0 +1 @@ +pub mod balances; From 5d7d4af29ddae945ad7f6d20ab9e670e8665b5d3 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Fri, 17 Jul 2020 05:34:23 +0200 Subject: [PATCH 2/4] remove unneeded tests --- runtime/polkadot/tests/weights.rs | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/runtime/polkadot/tests/weights.rs b/runtime/polkadot/tests/weights.rs index 3cdb71995801..70f9d7e4f91a 100644 --- a/runtime/polkadot/tests/weights.rs +++ b/runtime/polkadot/tests/weights.rs @@ -51,29 +51,6 @@ fn sanity_check_weight_per_time_constants_are_as_expected() { assert_eq!(WEIGHT_PER_NANOS, WEIGHT_PER_MICROS / 1000); } -#[test] -fn weight_of_balances_transfer_is_correct() { - // #[weight = T::DbWeight::get().reads_writes(1, 1) + 70_000_000] - let expected_weight = DbWeight::get().read + DbWeight::get().write + 70_000_000; - - let weight = polkadot_runtime::BalancesCall::transfer::(Default::default(), Default::default()) - .get_dispatch_info() - .weight; - assert_eq!(weight, expected_weight); -} - -#[test] -fn weight_of_balances_transfer_keep_alive_is_correct() { - // #[weight = T::DbWeight::get().reads_writes(1, 1) + 50_000_000] - let expected_weight = DbWeight::get().read + DbWeight::get().write + 50_000_000; - - let weight = polkadot_runtime::BalancesCall::transfer_keep_alive::(Default::default(), Default::default()) - .get_dispatch_info() - .weight; - - assert_eq!(weight, expected_weight); -} - #[test] fn weight_of_timestamp_set_is_correct() { // #[weight = T::DbWeight::get().reads_writes(2, 1) + 8_000_000] From 2bdcb0b6b8610250ba08a9676298be4ebc735883 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Thu, 30 Jul 2020 11:40:38 +0200 Subject: [PATCH 3/4] Add file headers --- runtime/kusama/src/weights/balances.rs | 18 ++++++++++++++++++ runtime/kusama/src/weights/mod.rs | 18 ++++++++++++++++++ runtime/polkadot/src/weights/balances.rs | 18 ++++++++++++++++++ runtime/polkadot/src/weights/mod.rs | 18 ++++++++++++++++++ runtime/westend/src/weights/balances.rs | 18 ++++++++++++++++++ runtime/westend/src/weights/mod.rs | 18 ++++++++++++++++++ 6 files changed, 108 insertions(+) diff --git a/runtime/kusama/src/weights/balances.rs b/runtime/kusama/src/weights/balances.rs index 90746544822e..bc2f3ac18af2 100644 --- a/runtime/kusama/src/weights/balances.rs +++ b/runtime/kusama/src/weights/balances.rs @@ -1,3 +1,21 @@ +// Copyright 2019-2020 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +/// Weights for the Balances Pallet + use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight}; pub struct WeightInfo; impl balances::WeightInfo for WeightInfo { diff --git a/runtime/kusama/src/weights/mod.rs b/runtime/kusama/src/weights/mod.rs index 1134948feb8c..75cabca0c6e6 100644 --- a/runtime/kusama/src/weights/mod.rs +++ b/runtime/kusama/src/weights/mod.rs @@ -1 +1,19 @@ +// Copyright 2019-2020 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +/// A collection of weight modules used for pallets in the runtime. + pub mod balances; diff --git a/runtime/polkadot/src/weights/balances.rs b/runtime/polkadot/src/weights/balances.rs index 90746544822e..bc2f3ac18af2 100644 --- a/runtime/polkadot/src/weights/balances.rs +++ b/runtime/polkadot/src/weights/balances.rs @@ -1,3 +1,21 @@ +// Copyright 2019-2020 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +/// Weights for the Balances Pallet + use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight}; pub struct WeightInfo; impl balances::WeightInfo for WeightInfo { diff --git a/runtime/polkadot/src/weights/mod.rs b/runtime/polkadot/src/weights/mod.rs index 1134948feb8c..75cabca0c6e6 100644 --- a/runtime/polkadot/src/weights/mod.rs +++ b/runtime/polkadot/src/weights/mod.rs @@ -1 +1,19 @@ +// Copyright 2019-2020 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +/// A collection of weight modules used for pallets in the runtime. + pub mod balances; diff --git a/runtime/westend/src/weights/balances.rs b/runtime/westend/src/weights/balances.rs index 90746544822e..bc2f3ac18af2 100644 --- a/runtime/westend/src/weights/balances.rs +++ b/runtime/westend/src/weights/balances.rs @@ -1,3 +1,21 @@ +// Copyright 2019-2020 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +/// Weights for the Balances Pallet + use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight}; pub struct WeightInfo; impl balances::WeightInfo for WeightInfo { diff --git a/runtime/westend/src/weights/mod.rs b/runtime/westend/src/weights/mod.rs index 1134948feb8c..75cabca0c6e6 100644 --- a/runtime/westend/src/weights/mod.rs +++ b/runtime/westend/src/weights/mod.rs @@ -1 +1,19 @@ +// Copyright 2019-2020 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +/// A collection of weight modules used for pallets in the runtime. + pub mod balances; From 278f5521f231f7efbd669ff1d16b6fa5d45952d8 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Thu, 30 Jul 2020 17:20:50 +0200 Subject: [PATCH 4/4] cargo update -p sp-io --- Cargo.lock | 276 +++++++++++++++++++++++++++-------------------------- 1 file changed, 139 insertions(+), 137 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5de0b58e8f7e..9cc34439aa22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1370,7 +1370,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", ] @@ -1378,7 +1378,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -1395,7 +1395,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "Inflector", "frame-benchmarking", @@ -1414,7 +1414,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -1429,7 +1429,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "11.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "serde", @@ -1440,7 +1440,7 @@ dependencies = [ [[package]] name = "frame-support" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "bitmask", "frame-metadata", @@ -1465,7 +1465,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support-procedural-tools", "proc-macro2 1.0.18", @@ -1476,7 +1476,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -1488,7 +1488,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "proc-macro2 1.0.18", "quote 1.0.7", @@ -1498,7 +1498,7 @@ dependencies = [ [[package]] name = "frame-system" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -1514,7 +1514,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -1528,7 +1528,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "sp-api", @@ -3542,7 +3542,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -3558,7 +3558,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -3573,7 +3573,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3598,7 +3598,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3612,7 +3612,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3628,7 +3628,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3643,7 +3643,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3658,7 +3658,7 @@ dependencies = [ [[package]] name = "pallet-finality-tracker" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -3674,7 +3674,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3696,7 +3696,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "enumflags2", "frame-benchmarking", @@ -3712,7 +3712,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3732,7 +3732,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -3748,7 +3748,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -3762,7 +3762,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -3777,7 +3777,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -3791,7 +3791,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -3806,7 +3806,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3827,7 +3827,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -3842,7 +3842,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -3855,7 +3855,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "enumflags2", "frame-support", @@ -3870,7 +3870,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3885,7 +3885,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -3905,7 +3905,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3921,7 +3921,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -3935,7 +3935,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3957,7 +3957,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.18", @@ -3968,7 +3968,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -3982,7 +3982,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -4000,7 +4000,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "frame-system", @@ -4017,7 +4017,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -4035,7 +4035,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-support", "parity-scale-codec", @@ -4048,7 +4048,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -4063,7 +4063,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-benchmarking", "frame-support", @@ -4079,7 +4079,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6059,7 +6059,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "bytes 0.5.5", "derive_more 0.99.9", @@ -6086,7 +6086,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -6110,7 +6110,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -6127,7 +6127,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "impl-trait-for-tuples", "sc-chain-spec-derive", @@ -6143,7 +6143,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.18", @@ -6154,7 +6154,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "ansi_term 0.12.1", "atty", @@ -6195,7 +6195,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "fnv", @@ -6231,7 +6231,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "blake2-rfc", "hash-db", @@ -6260,7 +6260,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "sc-client-api", "sp-blockchain", @@ -6271,7 +6271,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "fork-tree", @@ -6286,6 +6286,7 @@ dependencies = [ "parking_lot 0.10.2", "pdqselect", "rand 0.7.3", + "retain_mut", "sc-client-api", "sc-consensus-epochs", "sc-consensus-slots", @@ -6306,6 +6307,7 @@ dependencies = [ "sp-io", "sp-runtime", "sp-timestamp", + "sp-utils", "sp-version", "substrate-prometheus-endpoint", ] @@ -6313,7 +6315,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -6337,7 +6339,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "fork-tree", "parity-scale-codec", @@ -6350,7 +6352,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -6373,7 +6375,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "log 0.4.8", "sc-client-api", @@ -6387,7 +6389,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "lazy_static", @@ -6415,7 +6417,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "log 0.4.8", @@ -6432,7 +6434,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -6447,7 +6449,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "cranelift-codegen", "cranelift-wasm", @@ -6468,7 +6470,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "assert_matches", "derive_more 0.99.9", @@ -6506,7 +6508,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "finality-grandpa", @@ -6523,7 +6525,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "ansi_term 0.12.1", "futures 0.3.5", @@ -6541,7 +6543,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "hex", @@ -6557,7 +6559,7 @@ dependencies = [ [[package]] name = "sc-light" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "hash-db", "lazy_static", @@ -6576,7 +6578,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "bitflags", "bs58", @@ -6628,7 +6630,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -6643,7 +6645,7 @@ dependencies = [ [[package]] name = "sc-network-test" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "env_logger", "futures 0.3.5", @@ -6670,7 +6672,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "bytes 0.5.5", "fnv", @@ -6697,7 +6699,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "futures 0.3.5", "libp2p", @@ -6710,7 +6712,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "log 0.4.8", "substrate-prometheus-endpoint", @@ -6719,7 +6721,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "futures 0.3.5", "hash-db", @@ -6751,7 +6753,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -6775,7 +6777,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "jsonrpc-core", "jsonrpc-http-server", @@ -6791,7 +6793,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "directories", @@ -6854,7 +6856,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -6868,7 +6870,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -6889,7 +6891,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "erased-serde", "log 0.4.8", @@ -6906,7 +6908,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -6927,7 +6929,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7382,7 +7384,7 @@ dependencies = [ [[package]] name = "sp-allocator" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "log 0.4.8", @@ -7394,7 +7396,7 @@ dependencies = [ [[package]] name = "sp-api" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "hash-db", "parity-scale-codec", @@ -7409,7 +7411,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "blake2-rfc", "proc-macro-crate", @@ -7421,7 +7423,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "serde", @@ -7433,7 +7435,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "integer-sqrt", "num-traits 0.2.12", @@ -7446,7 +7448,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "sp-api", @@ -7458,7 +7460,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -7469,7 +7471,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "sp-api", @@ -7481,7 +7483,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "log 0.4.8", @@ -7498,7 +7500,7 @@ dependencies = [ [[package]] name = "sp-chain-spec" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "serde", "serde_json", @@ -7507,7 +7509,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7533,7 +7535,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "sp-api", @@ -7547,7 +7549,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "merlin", "parity-scale-codec", @@ -7566,7 +7568,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -7575,7 +7577,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -7587,7 +7589,7 @@ dependencies = [ [[package]] name = "sp-core" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "base58", "blake2-rfc", @@ -7631,7 +7633,7 @@ dependencies = [ [[package]] name = "sp-database" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "kvdb", "parking_lot 0.10.2", @@ -7640,7 +7642,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "proc-macro2 1.0.18", "quote 1.0.7", @@ -7650,7 +7652,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "environmental", "parity-scale-codec", @@ -7661,7 +7663,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "finality-grandpa", "log 0.4.8", @@ -7677,7 +7679,7 @@ dependencies = [ [[package]] name = "sp-finality-tracker" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -7687,7 +7689,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "parity-scale-codec", @@ -7699,7 +7701,7 @@ dependencies = [ [[package]] name = "sp-io" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "futures 0.3.5", "hash-db", @@ -7720,7 +7722,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "lazy_static", "sp-core", @@ -7731,7 +7733,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "serde", @@ -7743,7 +7745,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.18", @@ -7754,7 +7756,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "sp-api", "sp-core", @@ -7764,7 +7766,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "backtrace", "log 0.4.8", @@ -7773,7 +7775,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "serde", "sp-core", @@ -7782,7 +7784,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "either", "hash256-std-hasher", @@ -7804,7 +7806,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "primitive-types", @@ -7819,7 +7821,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "Inflector", "proc-macro-crate", @@ -7831,7 +7833,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "serde", "serde_json", @@ -7840,7 +7842,7 @@ dependencies = [ [[package]] name = "sp-session" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "sp-api", @@ -7853,7 +7855,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -7863,7 +7865,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "hash-db", "itertools 0.9.0", @@ -7884,12 +7886,12 @@ dependencies = [ [[package]] name = "sp-std" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" [[package]] name = "sp-storage" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "impl-serde 0.2.3", "ref-cast", @@ -7901,7 +7903,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7915,7 +7917,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "log 0.4.8", "rental", @@ -7925,7 +7927,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7940,7 +7942,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "hash-db", "memory-db", @@ -7954,7 +7956,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "futures 0.3.5", "futures-core", @@ -7966,7 +7968,7 @@ dependencies = [ [[package]] name = "sp-version" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "impl-serde 0.2.3", "parity-scale-codec", @@ -7978,7 +7980,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8109,7 +8111,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "chrono", "console_error_panic_hook", @@ -8135,7 +8137,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "platforms", ] @@ -8143,7 +8145,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.5", @@ -8166,7 +8168,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "async-std", "derive_more 0.99.9", @@ -8180,7 +8182,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "futures 0.1.29", "futures 0.3.5", @@ -8206,7 +8208,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "cfg-if", "frame-executive", @@ -8246,7 +8248,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" dependencies = [ "futures 0.3.5", "parity-scale-codec", @@ -8267,7 +8269,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder-runner" version = "1.0.6" -source = "git+https://github.com/paritytech/substrate#19c1d9028d8d6eabef41693433b56e14da025247" +source = "git+https://github.com/paritytech/substrate#87063c3c00da34213379330bae3174aa0da7ad0f" [[package]] name = "substrate-wasm-builder-runner"