From 182d1deef1418f036938b1102706b2441a08188f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Tue, 8 Sep 2020 10:16:10 +0200 Subject: [PATCH 1/4] grandpa-rpc: dont share subscription manager, only executor --- Cargo.lock | 1 - node/service/src/lib.rs | 9 ++++++--- rpc/Cargo.toml | 1 - rpc/src/lib.rs | 8 ++++---- service/src/lib.rs | 9 ++++++--- 5 files changed, 16 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 11cfc862a319..4bf4de0be21d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5199,7 +5199,6 @@ name = "polkadot-rpc" version = "0.8.23" dependencies = [ "jsonrpc-core", - "jsonrpc-pubsub", "pallet-transaction-payment-rpc", "parity-scale-codec", "polkadot-primitives", diff --git a/node/service/src/lib.rs b/node/service/src/lib.rs index 80bd0e240629..38812d72735f 100644 --- a/node/service/src/lib.rs +++ b/node/service/src/lib.rs @@ -158,7 +158,10 @@ fn new_partial(config: &mut Configuration) -> Result< consensus_common::DefaultImportQueue>, sc_transaction_pool::FullPool>, ( - impl Fn(polkadot_rpc::DenyUnsafe, polkadot_rpc::SubscriptionManager) -> polkadot_rpc::RpcExtension, + impl Fn( + polkadot_rpc::DenyUnsafe, + polkadot_rpc::SubscriptionTaskExecutor + ) -> polkadot_rpc::RpcExtension, ( babe::BabeBlockImport< Block, FullClient, FullGrandpaBlockImport @@ -245,7 +248,7 @@ fn new_partial(config: &mut Configuration) -> Result< let transaction_pool = transaction_pool.clone(); let select_chain = select_chain.clone(); - move |deny_unsafe, subscriptions| -> polkadot_rpc::RpcExtension { + move |deny_unsafe, subscription_executor| -> polkadot_rpc::RpcExtension { let deps = polkadot_rpc::FullDeps { client: client.clone(), pool: transaction_pool.clone(), @@ -260,7 +263,7 @@ fn new_partial(config: &mut Configuration) -> Result< shared_voter_state: shared_voter_state.clone(), shared_authority_set: shared_authority_set.clone(), justification_stream: justification_stream.clone(), - subscriptions, + subscription_executor, }, }; diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index ed4aa0ac09e1..50b965060053 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -6,7 +6,6 @@ edition = "2018" [dependencies] jsonrpc-core = "14.0.3" -jsonrpc-pubsub = "14.0.3" polkadot-primitives = { path = "../primitives" } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/rpc/src/lib.rs b/rpc/src/lib.rs index 4867e14f15d5..96c07a21d41b 100644 --- a/rpc/src/lib.rs +++ b/rpc/src/lib.rs @@ -30,7 +30,7 @@ use sc_client_api::light::{Fetcher, RemoteBlockchain}; use sc_consensus_babe::Epoch; use sp_block_builder::BlockBuilder; pub use sc_rpc::DenyUnsafe; -pub use jsonrpc_pubsub::manager::SubscriptionManager; +pub use sc_rpc::SubscriptionTaskExecutor; /// A type representing all RPC extensions. pub type RpcExtension = jsonrpc_core::IoHandler; @@ -66,7 +66,7 @@ pub struct GrandpaDeps { /// Receives notifications about justification events from Grandpa. pub justification_stream: sc_finality_grandpa::GrandpaJustificationStream, /// Subscription manager to keep track of pubsub subscribers. - pub subscriptions: jsonrpc_pubsub::manager::SubscriptionManager, + pub subscription_executor: sc_rpc::SubscriptionTaskExecutor, } /// Full client dependencies @@ -120,7 +120,7 @@ pub fn create_full(deps: FullDeps) -> RpcExtension where shared_voter_state, shared_authority_set, justification_stream, - subscriptions, + subscription_executor, } = grandpa; io.extend_with( @@ -146,7 +146,7 @@ pub fn create_full(deps: FullDeps) -> RpcExtension where shared_authority_set, shared_voter_state, justification_stream, - subscriptions, + subscription_executor, )) ); io diff --git a/service/src/lib.rs b/service/src/lib.rs index 49924eaf4be3..b4480385b061 100644 --- a/service/src/lib.rs +++ b/service/src/lib.rs @@ -121,7 +121,10 @@ pub fn new_partial(config: &mut Configuration, test: bool) consensus_common::DefaultImportQueue>, sc_transaction_pool::FullPool>, ( - impl Fn(polkadot_rpc::DenyUnsafe, polkadot_rpc::SubscriptionManager) -> polkadot_rpc::RpcExtension, + impl Fn( + polkadot_rpc::DenyUnsafe, + polkadot_rpc::SubscriptionTaskExecutor + ) -> polkadot_rpc::RpcExtension, ( babe::BabeBlockImport< Block, FullClient, FullGrandpaBlockImport @@ -213,7 +216,7 @@ pub fn new_partial(config: &mut Configuration, test: bool) let transaction_pool = transaction_pool.clone(); let select_chain = select_chain.clone(); - move |deny_unsafe, subscriptions| -> polkadot_rpc::RpcExtension { + move |deny_unsafe, subscription_executor| -> polkadot_rpc::RpcExtension { let deps = polkadot_rpc::FullDeps { client: client.clone(), pool: transaction_pool.clone(), @@ -228,7 +231,7 @@ pub fn new_partial(config: &mut Configuration, test: bool) shared_voter_state: shared_voter_state.clone(), shared_authority_set: shared_authority_set.clone(), justification_stream: justification_stream.clone(), - subscriptions, + subscription_executor, }, }; From 88a086051dd4325873be890220a3c1dc458d7fc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Tue, 8 Sep 2020 10:51:46 +0200 Subject: [PATCH 2/4] node/rpc: merge imports --- rpc/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rpc/src/lib.rs b/rpc/src/lib.rs index 96c07a21d41b..2714db4d3054 100644 --- a/rpc/src/lib.rs +++ b/rpc/src/lib.rs @@ -29,8 +29,7 @@ use sp_consensus_babe::BabeApi; use sc_client_api::light::{Fetcher, RemoteBlockchain}; use sc_consensus_babe::Epoch; use sp_block_builder::BlockBuilder; -pub use sc_rpc::DenyUnsafe; -pub use sc_rpc::SubscriptionTaskExecutor; +pub use sc_rpc::{DenyUnsafe, SubscriptionTaskExecutor}; /// A type representing all RPC extensions. pub type RpcExtension = jsonrpc_core::IoHandler; From bc94f1d81ef71aaff2b388722fc00cf6c233a6f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= <123550+andresilva@users.noreply.github.com> Date: Mon, 14 Sep 2020 11:33:49 +0100 Subject: [PATCH 3/4] node: apply style fixes from code review --- node/service/src/lib.rs | 2 +- service/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/node/service/src/lib.rs b/node/service/src/lib.rs index 38812d72735f..c8295c29c55c 100644 --- a/node/service/src/lib.rs +++ b/node/service/src/lib.rs @@ -160,7 +160,7 @@ fn new_partial(config: &mut Configuration) -> Result< ( impl Fn( polkadot_rpc::DenyUnsafe, - polkadot_rpc::SubscriptionTaskExecutor + polkadot_rpc::SubscriptionTaskExecutor, ) -> polkadot_rpc::RpcExtension, ( babe::BabeBlockImport< diff --git a/service/src/lib.rs b/service/src/lib.rs index b4480385b061..07e2c905490a 100644 --- a/service/src/lib.rs +++ b/service/src/lib.rs @@ -123,7 +123,7 @@ pub fn new_partial(config: &mut Configuration, test: bool) ( impl Fn( polkadot_rpc::DenyUnsafe, - polkadot_rpc::SubscriptionTaskExecutor + polkadot_rpc::SubscriptionTaskExecutor, ) -> polkadot_rpc::RpcExtension, ( babe::BabeBlockImport< From 45d5a292117734649d1aaf0b89da6e05a7cfb3b0 Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Mon, 14 Sep 2020 11:03:26 +0000 Subject: [PATCH 4/4] "Update Substrate" --- Cargo.lock | 277 +++++++++++++++++++++++++++-------------------------- 1 file changed, 139 insertions(+), 138 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4bf4de0be21d..9ea19d1592ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1485,7 +1485,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", ] @@ -1493,7 +1493,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -1511,7 +1511,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "parity-scale-codec", @@ -1529,7 +1529,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -1544,7 +1544,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "11.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "serde", @@ -1555,7 +1555,7 @@ dependencies = [ [[package]] name = "frame-support" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "bitmask", "frame-metadata", @@ -1580,7 +1580,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support-procedural-tools", "proc-macro2 1.0.18", @@ -1591,7 +1591,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -1603,7 +1603,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "proc-macro2 1.0.18", "quote 1.0.7", @@ -1613,7 +1613,7 @@ dependencies = [ [[package]] name = "frame-system" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -1629,7 +1629,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -1643,7 +1643,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "sp-api", @@ -3842,7 +3842,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -3858,7 +3858,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -3873,7 +3873,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -3898,7 +3898,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -3912,7 +3912,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -3928,7 +3928,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -3943,7 +3943,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -3958,7 +3958,7 @@ dependencies = [ [[package]] name = "pallet-finality-tracker" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -3974,7 +3974,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -3996,7 +3996,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "enumflags2", "frame-benchmarking", @@ -4012,7 +4012,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -4032,7 +4032,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -4048,7 +4048,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -4062,7 +4062,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -4077,7 +4077,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -4091,7 +4091,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -4106,7 +4106,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -4127,7 +4127,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -4142,7 +4142,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -4155,7 +4155,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "enumflags2", "frame-support", @@ -4170,7 +4170,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -4185,7 +4185,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -4205,7 +4205,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -4221,7 +4221,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -4235,7 +4235,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -4257,7 +4257,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.18", @@ -4268,7 +4268,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -4282,7 +4282,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -4300,7 +4300,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "frame-system", @@ -4317,7 +4317,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -4335,7 +4335,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-support", "parity-scale-codec", @@ -4348,7 +4348,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -4363,7 +4363,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -4379,7 +4379,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5832,14 +5832,15 @@ dependencies = [ [[package]] name = "prometheus" -version = "0.9.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd0ced56dee39a6e960c15c74dc48849d614586db2eaada6497477af7c7811cd" +checksum = "30d70cf4412832bcac9cffe27906f4a66e450d323525e977168c70d1b36120ae" dependencies = [ "cfg-if", "fnv", "lazy_static", - "spin", + "parking_lot 0.11.0", + "regex", "thiserror", ] @@ -6525,7 +6526,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "bytes 0.5.5", "derive_more 0.99.9", @@ -6553,7 +6554,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -6577,7 +6578,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -6594,7 +6595,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -6611,7 +6612,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.18", @@ -6622,7 +6623,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "ansi_term 0.12.1", "atty", @@ -6669,7 +6670,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "fnv", @@ -6705,7 +6706,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "blake2-rfc", "hash-db", @@ -6735,7 +6736,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "sc-client-api", "sp-blockchain", @@ -6746,7 +6747,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "fork-tree", @@ -6790,7 +6791,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -6814,7 +6815,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "fork-tree", "parity-scale-codec", @@ -6827,7 +6828,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -6850,7 +6851,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "log 0.4.11", "sc-client-api", @@ -6864,7 +6865,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "lazy_static", @@ -6892,7 +6893,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "log 0.4.11", @@ -6909,7 +6910,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "log 0.4.11", "parity-scale-codec", @@ -6924,7 +6925,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "log 0.4.11", "parity-scale-codec", @@ -6942,7 +6943,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "finality-grandpa", @@ -6979,7 +6980,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "finality-grandpa", @@ -7001,7 +7002,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "ansi_term 0.12.1", "futures 0.3.5", @@ -7019,7 +7020,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "hex", @@ -7035,7 +7036,7 @@ dependencies = [ [[package]] name = "sc-light" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "hash-db", "lazy_static", @@ -7054,7 +7055,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "async-std", "async-trait", @@ -7108,7 +7109,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -7123,7 +7124,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "bytes 0.5.5", "fnv", @@ -7150,7 +7151,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "futures 0.3.5", "libp2p", @@ -7163,7 +7164,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "log 0.4.11", "substrate-prometheus-endpoint", @@ -7172,7 +7173,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "futures 0.3.5", "hash-db", @@ -7204,7 +7205,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7228,7 +7229,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "jsonrpc-core", "jsonrpc-http-server", @@ -7244,7 +7245,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "directories", @@ -7305,7 +7306,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "log 0.4.11", "parity-scale-codec", @@ -7319,7 +7320,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -7340,7 +7341,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "erased-serde", "log 0.4.11", @@ -7358,7 +7359,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7379,7 +7380,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7842,7 +7843,7 @@ dependencies = [ [[package]] name = "sp-allocator" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "log 0.4.11", @@ -7854,7 +7855,7 @@ dependencies = [ [[package]] name = "sp-api" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "hash-db", "parity-scale-codec", @@ -7869,7 +7870,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "blake2-rfc", "proc-macro-crate", @@ -7881,7 +7882,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "serde", @@ -7893,7 +7894,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "integer-sqrt", "num-traits 0.2.12", @@ -7906,7 +7907,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "sp-api", @@ -7918,7 +7919,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -7929,7 +7930,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "sp-api", @@ -7941,7 +7942,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "log 0.4.11", @@ -7958,7 +7959,7 @@ dependencies = [ [[package]] name = "sp-chain-spec" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "serde", "serde_json", @@ -7967,7 +7968,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7993,7 +7994,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "merlin", "parity-scale-codec", @@ -8012,7 +8013,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -8021,7 +8022,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -8033,7 +8034,7 @@ dependencies = [ [[package]] name = "sp-core" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "base58", "blake2-rfc", @@ -8077,7 +8078,7 @@ dependencies = [ [[package]] name = "sp-database" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "kvdb", "parking_lot 0.10.2", @@ -8086,7 +8087,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "proc-macro2 1.0.18", "quote 1.0.7", @@ -8096,7 +8097,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "environmental", "parity-scale-codec", @@ -8107,7 +8108,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "finality-grandpa", "log 0.4.11", @@ -8123,7 +8124,7 @@ dependencies = [ [[package]] name = "sp-finality-tracker" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -8133,7 +8134,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "parity-scale-codec", @@ -8145,7 +8146,7 @@ dependencies = [ [[package]] name = "sp-io" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "futures 0.3.5", "hash-db", @@ -8166,7 +8167,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "lazy_static", "sp-core", @@ -8177,7 +8178,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "serde", @@ -8189,7 +8190,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.18", @@ -8200,7 +8201,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "sp-api", "sp-core", @@ -8210,7 +8211,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "backtrace", "log 0.4.11", @@ -8219,7 +8220,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "serde", "sp-core", @@ -8228,7 +8229,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "either", "hash256-std-hasher", @@ -8250,7 +8251,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "primitive-types", @@ -8266,7 +8267,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "Inflector", "proc-macro-crate", @@ -8278,7 +8279,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "serde", "serde_json", @@ -8287,7 +8288,7 @@ dependencies = [ [[package]] name = "sp-session" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "sp-api", @@ -8300,7 +8301,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -8310,10 +8311,9 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "hash-db", - "itertools 0.9.0", "log 0.4.11", "num-traits 0.2.12", "parity-scale-codec", @@ -8323,6 +8323,7 @@ dependencies = [ "sp-core", "sp-externalities", "sp-panic-handler", + "sp-std", "sp-trie", "trie-db", "trie-root", @@ -8331,12 +8332,12 @@ dependencies = [ [[package]] name = "sp-std" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" [[package]] name = "sp-storage" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "impl-serde", "parity-scale-codec", @@ -8349,7 +8350,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8363,7 +8364,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "log 0.4.11", "rental", @@ -8373,7 +8374,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -8388,7 +8389,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "hash-db", "memory-db", @@ -8402,7 +8403,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "futures 0.3.5", "futures-core", @@ -8414,7 +8415,7 @@ dependencies = [ [[package]] name = "sp-version" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "impl-serde", "parity-scale-codec", @@ -8426,7 +8427,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8567,7 +8568,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "chrono", "console_error_panic_hook", @@ -8593,7 +8594,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "platforms", ] @@ -8601,7 +8602,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.5", @@ -8624,7 +8625,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "async-std", "derive_more 0.99.9", @@ -8638,7 +8639,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "futures 0.1.29", "futures 0.3.5", @@ -8664,7 +8665,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "2.0.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "futures 0.3.5", "substrate-test-utils-derive", @@ -8674,7 +8675,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.8.0-rc6" -source = "git+https://github.com/paritytech/substrate#e473c5bb6525f0480f415bf58ed5a03f20367d6c" +source = "git+https://github.com/paritytech/substrate#55d55f5a7265dcab630f3bba3c707a5252dad6fc" dependencies = [ "proc-macro-crate", "quote 1.0.7",