From 218b9a7004f5d5ab5ac8c1e5a8beba4182f65eeb Mon Sep 17 00:00:00 2001 From: marcio-diaz Date: Fri, 5 Jun 2020 18:49:41 +0200 Subject: [PATCH 1/2] Rename Fixed128 to FixedI128. --- runtime/common/src/impls.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/runtime/common/src/impls.rs b/runtime/common/src/impls.rs index a58193e3cc28..8562a376c170 100644 --- a/runtime/common/src/impls.rs +++ b/runtime/common/src/impls.rs @@ -17,7 +17,7 @@ //! Auxillary struct/enums for polkadot runtime. use sp_runtime::traits::{Convert, Saturating}; -use sp_runtime::{FixedPointNumber, Fixed128, Perquintill}; +use sp_runtime::{FixedPointNumber, FixedI128, Perquintill}; use frame_support::traits::{OnUnbalanced, Imbalance, Currency, Get}; use crate::{MaximumBlockWeight, NegativeImbalance}; @@ -83,8 +83,8 @@ where /// https://research.web3.foundation/en/latest/polkadot/Token%20Economics/#relay-chain-transaction-fees pub struct TargetedFeeAdjustment(sp_std::marker::PhantomData<(T, R)>); -impl, R: system::Trait> Convert for TargetedFeeAdjustment { - fn convert(multiplier: Fixed128) -> Fixed128 { +impl, R: system::Trait> Convert for TargetedFeeAdjustment { + fn convert(multiplier: FixedI128) -> FixedI128 { let max_weight = MaximumBlockWeight::get(); let block_weight = >::block_weight().total().min(max_weight); let target_weight = (T::get() * max_weight) as u128; @@ -94,14 +94,14 @@ impl, R: system::Trait> Convert for Targ let positive = block_weight >= target_weight; let diff_abs = block_weight.max(target_weight) - block_weight.min(target_weight); // safe, diff_abs cannot exceed u64 and it can always be computed safely even with the lossy - // `Fixed128::saturating_from_rational`. - let diff = Fixed128::saturating_from_rational(diff_abs, max_weight.max(1)); + // `FixedI128::saturating_from_rational`. + let diff = FixedI128::saturating_from_rational(diff_abs, max_weight.max(1)); let diff_squared = diff.saturating_mul(diff); // 0.00004 = 4/100_000 = 40_000/10^9 - let v = Fixed128::saturating_from_rational(4, 100_000); + let v = FixedI128::saturating_from_rational(4, 100_000); // 0.00004^2 = 16/10^10 Taking the future /2 into account... 8/10^10 - let v_squared_2 = Fixed128::saturating_from_rational(8, 10_000_000_000u64); + let v_squared_2 = FixedI128::saturating_from_rational(8, 10_000_000_000u64); let first_term = v.saturating_mul(diff); let second_term = v_squared_2.saturating_mul(diff_squared); @@ -120,7 +120,7 @@ impl, R: system::Trait> Convert for Targ // multiplier. While at -1, it means that the network is so un-congested that all // transactions have no weight fee. We stop here and only increase if the network // became more busy. - .max(Fixed128::saturating_from_integer(-1)) + .max(FixedI128::saturating_from_integer(-1)) } } } From 5a90cb0c49264e6762c1a0729eb180e64fc4d79e Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Sat, 6 Jun 2020 22:37:55 +0200 Subject: [PATCH 2/2] Bump cargo, merge #6236 fixes --- Cargo.lock | 269 ++++++++++++++++++------------------ runtime/kusama/src/lib.rs | 2 +- runtime/polkadot/src/lib.rs | 2 +- runtime/westend/src/lib.rs | 2 +- 4 files changed, 138 insertions(+), 137 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 272897c662bd..0900244f16a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1171,7 +1171,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", ] @@ -1179,7 +1179,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -1196,7 +1196,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "parity-scale-codec", @@ -1214,7 +1214,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -1229,7 +1229,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "11.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "serde", @@ -1240,7 +1240,7 @@ dependencies = [ [[package]] name = "frame-support" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "bitmask", "frame-metadata", @@ -1265,7 +1265,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support-procedural-tools", "proc-macro2 1.0.17", @@ -1276,7 +1276,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -1288,7 +1288,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "proc-macro2 1.0.17", "quote 1.0.6", @@ -1298,7 +1298,7 @@ dependencies = [ [[package]] name = "frame-system" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -1314,7 +1314,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "frame-support", @@ -1328,7 +1328,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "sp-api", @@ -3228,7 +3228,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3244,7 +3244,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3259,7 +3259,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3281,7 +3281,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3295,7 +3295,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3311,7 +3311,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3326,7 +3326,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3341,7 +3341,7 @@ dependencies = [ [[package]] name = "pallet-finality-tracker" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3357,7 +3357,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3377,7 +3377,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "enumflags2", "frame-benchmarking", @@ -3393,7 +3393,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3413,7 +3413,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3429,7 +3429,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3443,7 +3443,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3457,7 +3457,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3472,7 +3472,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3493,13 +3493,14 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", "parity-scale-codec", "serde", "sp-core", + "sp-io", "sp-runtime", "sp-std", ] @@ -3507,7 +3508,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3520,7 +3521,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "enumflags2", "frame-support", @@ -3535,7 +3536,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3550,7 +3551,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3568,7 +3569,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3582,7 +3583,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3596,7 +3597,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3618,7 +3619,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.17", @@ -3629,7 +3630,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3643,7 +3644,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3661,7 +3662,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "frame-system", @@ -3675,7 +3676,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -3693,7 +3694,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-support", "parity-scale-codec", @@ -3706,7 +3707,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3721,7 +3722,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3737,7 +3738,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5356,7 +5357,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "bytes 0.5.4", "derive_more 0.99.7", @@ -5383,7 +5384,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5407,7 +5408,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -5423,7 +5424,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "impl-trait-for-tuples", "sc-chain-spec-derive", @@ -5439,7 +5440,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.17", @@ -5450,7 +5451,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "ansi_term 0.12.1", "atty", @@ -5491,7 +5492,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "fnv", @@ -5527,7 +5528,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "blake2-rfc", "hash-db", @@ -5556,7 +5557,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "sc-client-api", "sp-blockchain", @@ -5567,7 +5568,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "fork-tree", @@ -5609,7 +5610,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -5632,7 +5633,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "fork-tree", "parity-scale-codec", @@ -5645,7 +5646,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5667,7 +5668,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "log 0.4.8", "sc-client-api", @@ -5681,7 +5682,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "lazy_static", @@ -5709,7 +5710,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "log 0.4.8", @@ -5726,7 +5727,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -5741,7 +5742,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "cranelift-codegen", "cranelift-wasm", @@ -5762,7 +5763,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "assert_matches", "derive_more 0.99.7", @@ -5799,7 +5800,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "finality-grandpa", @@ -5816,7 +5817,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "ansi_term 0.12.1", "futures 0.3.5", @@ -5833,7 +5834,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "hex", @@ -5848,7 +5849,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "bitflags", "bs58", @@ -5900,7 +5901,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5915,7 +5916,7 @@ dependencies = [ [[package]] name = "sc-network-test" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "env_logger", "futures 0.3.5", @@ -5942,7 +5943,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "bytes 0.5.4", "fnv", @@ -5969,7 +5970,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "futures 0.3.5", "libp2p", @@ -5982,7 +5983,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "log 0.4.8", "substrate-prometheus-endpoint", @@ -5991,7 +5992,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "futures 0.3.5", "hash-db", @@ -6023,7 +6024,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -6047,7 +6048,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "jsonrpc-core", "jsonrpc-http-server", @@ -6062,7 +6063,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "exit-future", @@ -6120,7 +6121,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -6134,7 +6135,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "bytes 0.5.4", "futures 0.3.5", @@ -6156,7 +6157,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "erased-serde", "log 0.4.8", @@ -6171,7 +6172,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -6191,7 +6192,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -6578,7 +6579,7 @@ dependencies = [ [[package]] name = "sp-allocator" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "log 0.4.8", @@ -6590,7 +6591,7 @@ dependencies = [ [[package]] name = "sp-api" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "hash-db", "parity-scale-codec", @@ -6605,7 +6606,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "blake2-rfc", "proc-macro-crate", @@ -6617,7 +6618,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "serde", @@ -6629,7 +6630,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "integer-sqrt", "num-traits 0.2.11", @@ -6642,7 +6643,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "sp-api", @@ -6654,7 +6655,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -6665,7 +6666,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "sp-api", @@ -6677,7 +6678,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "log 0.4.8", @@ -6693,7 +6694,7 @@ dependencies = [ [[package]] name = "sp-chain-spec" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "serde", "serde_json", @@ -6702,7 +6703,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -6725,7 +6726,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "sp-api", @@ -6739,7 +6740,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "merlin", "parity-scale-codec", @@ -6756,7 +6757,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -6768,7 +6769,7 @@ dependencies = [ [[package]] name = "sp-core" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "base58", "blake2-rfc", @@ -6810,7 +6811,7 @@ dependencies = [ [[package]] name = "sp-database" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "kvdb", "parking_lot 0.10.2", @@ -6819,7 +6820,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "proc-macro2 1.0.17", "quote 1.0.6", @@ -6829,7 +6830,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "environmental", "parity-scale-codec", @@ -6840,7 +6841,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "finality-grandpa", "log 0.4.8", @@ -6856,7 +6857,7 @@ dependencies = [ [[package]] name = "sp-finality-tracker" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -6866,7 +6867,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "parity-scale-codec", @@ -6878,7 +6879,7 @@ dependencies = [ [[package]] name = "sp-io" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "futures 0.3.5", "hash-db", @@ -6898,7 +6899,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "lazy_static", "sp-core", @@ -6909,7 +6910,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "serde", @@ -6921,7 +6922,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.17", @@ -6932,7 +6933,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "sp-api", "sp-core", @@ -6942,7 +6943,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "backtrace", "log 0.4.8", @@ -6951,7 +6952,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "serde", "sp-core", @@ -6960,7 +6961,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "hash256-std-hasher", "impl-trait-for-tuples", @@ -6981,7 +6982,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "primitive-types", @@ -6996,7 +6997,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "Inflector", "proc-macro-crate", @@ -7008,7 +7009,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "serde", "serde_json", @@ -7017,7 +7018,7 @@ dependencies = [ [[package]] name = "sp-session" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "sp-api", @@ -7030,7 +7031,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -7040,7 +7041,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "hash-db", "log 0.4.8", @@ -7059,12 +7060,12 @@ dependencies = [ [[package]] name = "sp-std" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" [[package]] name = "sp-storage" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "impl-serde 0.2.3", "ref-cast", @@ -7076,7 +7077,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7090,7 +7091,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "tracing", ] @@ -7098,7 +7099,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -7114,7 +7115,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "hash-db", "memory-db", @@ -7128,7 +7129,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "futures 0.3.5", "futures-core", @@ -7139,7 +7140,7 @@ dependencies = [ [[package]] name = "sp-version" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "impl-serde 0.2.3", "parity-scale-codec", @@ -7151,7 +7152,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7282,7 +7283,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "chrono", "clear_on_drop", @@ -7309,7 +7310,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "platforms", ] @@ -7317,7 +7318,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.5", @@ -7338,7 +7339,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "async-std", "derive_more 0.99.7", @@ -7352,7 +7353,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "futures 0.3.5", "hash-db", @@ -7373,7 +7374,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "cfg-if", "frame-executive", @@ -7413,7 +7414,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" dependencies = [ "futures 0.3.5", "parity-scale-codec", @@ -7433,7 +7434,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder-runner" version = "1.0.6" -source = "git+https://github.com/paritytech/substrate#9ce077465ac46a93ebaced4b47863952b3d63d33" +source = "git+https://github.com/paritytech/substrate#d68cfd7cd5c64cb0965b49d9868aff02849e077c" [[package]] name = "substrate-wasm-builder-runner" diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 4099496f4740..64768451dc46 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -874,7 +874,7 @@ construct_runtime! { Scheduler: scheduler::{Module, Call, Storage, Event}, // Proxy module. Late addition. - Proxy: proxy::{Module, Call, Storage, Event} + Proxy: proxy::{Module, Call, Storage, Event} } } diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 4effc8b6fba3..e947844fbd7a 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -850,7 +850,7 @@ construct_runtime! { Identity: identity::{Module, Call, Storage, Event}, // Proxy module. Late addition. - Proxy: proxy::{Module, Call, Storage, Event} + Proxy: proxy::{Module, Call, Storage, Event} } } diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 9000c782d651..26ab0a8e4243 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -664,7 +664,7 @@ construct_runtime! { Sudo: sudo::{Module, Call, Storage, Event, Config}, // Proxy module. Late addition. - Proxy: proxy::{Module, Call, Storage, Event} + Proxy: proxy::{Module, Call, Storage, Event} } }