From cabc8515e7de6e5890cb67f68bf58e08d6bfce58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Fri, 3 Jul 2020 12:22:26 +0200 Subject: [PATCH 1/3] Companion PR for #5732 Add subscription RPC for listening on GRANDPA justifications. --- Cargo.lock | 1 + node/service/src/lib.rs | 5 ++++- rpc/Cargo.toml | 1 + rpc/src/lib.rs | 8 ++++++++ service/src/lib.rs | 5 ++++- 5 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e9756cfd539e..ce2c1fa28ca9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4495,6 +4495,7 @@ name = "polkadot-rpc" version = "0.8.13" 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 c798d3e9aa71..10866d8dfea2 100644 --- a/node/service/src/lib.rs +++ b/node/service/src/lib.rs @@ -225,6 +225,7 @@ macro_rules! new_full_start { let grandpa_link = import_setup.as_ref().map(|s| &s.1) .expect("GRANDPA LinkHalf is present for full services or set up failed; qed."); + let justification_receiver = grandpa_link.justification_receiver(); let shared_authority_set = grandpa_link.shared_authority_set().clone(); let shared_voter_state = grandpa::SharedVoterState::empty(); @@ -242,7 +243,7 @@ macro_rules! new_full_start { .expect("SelectChain is present for full services or set up failed; qed."); let keystore = builder.keystore().clone(); - Ok(move |deny_unsafe| -> polkadot_rpc::RpcExtension { + Ok(move |deny_unsafe, subscriptions| -> polkadot_rpc::RpcExtension { let deps = polkadot_rpc::FullDeps { client: client.clone(), pool: pool.clone(), @@ -256,6 +257,8 @@ macro_rules! new_full_start { grandpa: polkadot_rpc::GrandpaDeps { shared_voter_state: shared_voter_state.clone(), shared_authority_set: shared_authority_set.clone(), + justification_receiver: justification_receiver.clone(), + subscriptions, }, }; diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index ce2f6382b468..0623971528be 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -6,6 +6,7 @@ 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 6bddc8ad8daf..fa5883b58493 100644 --- a/rpc/src/lib.rs +++ b/rpc/src/lib.rs @@ -62,6 +62,10 @@ pub struct GrandpaDeps { pub shared_voter_state: sc_finality_grandpa::SharedVoterState, /// Authority set info. pub shared_authority_set: sc_finality_grandpa::SharedAuthoritySet, + /// Receives notifications about justification events from Grandpa. + pub justification_receiver: sc_finality_grandpa::GrandpaJustifications, + /// Subscription manager to keep track of pubsub subscribers. + pub subscriptions: jsonrpc_pubsub::manager::SubscriptionManager, } /// Full client dependencies @@ -115,6 +119,8 @@ pub fn create_full(deps: FullDeps) -> RpcExtension where let GrandpaDeps { shared_voter_state, shared_authority_set, + justification_receiver, + subscriptions, } = grandpa; io.extend_with( @@ -139,6 +145,8 @@ pub fn create_full(deps: FullDeps) -> RpcExtension where GrandpaApi::to_delegate(GrandpaRpcHandler::new( shared_authority_set, shared_voter_state, + justification_receiver, + subscriptions, )) ); io diff --git a/service/src/lib.rs b/service/src/lib.rs index 5cf371ebec84..cf1569cdcabb 100644 --- a/service/src/lib.rs +++ b/service/src/lib.rs @@ -221,6 +221,7 @@ macro_rules! new_full_start { let grandpa_link = import_setup.as_ref().map(|s| &s.1) .expect("GRANDPA LinkHalf is present for full services or set up failed; qed."); + let justification_receiver = grandpa_link.justification_receiver(); let shared_authority_set = grandpa_link.shared_authority_set().clone(); let shared_voter_state = grandpa::SharedVoterState::empty(); @@ -238,7 +239,7 @@ macro_rules! new_full_start { .expect("SelectChain is present for full services or set up failed; qed."); let keystore = builder.keystore().clone(); - Ok(move |deny_unsafe| -> polkadot_rpc::RpcExtension { + Ok(move |deny_unsafe, subscriptions| -> polkadot_rpc::RpcExtension { let deps = polkadot_rpc::FullDeps { client: client.clone(), pool: pool.clone(), @@ -252,6 +253,8 @@ macro_rules! new_full_start { grandpa: polkadot_rpc::GrandpaDeps { shared_voter_state: shared_voter_state.clone(), shared_authority_set: shared_authority_set.clone(), + justification_receiver: justification_receiver.clone(), + subscriptions, }, }; From 46a1d6a040983c3614e1b1c1dfadce0046170da2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Tue, 4 Aug 2020 13:35:04 +0200 Subject: [PATCH 2/3] grandpa-rpc: some merge fixes --- node/service/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node/service/src/lib.rs b/node/service/src/lib.rs index 0efed23bfe8c..be5b7e371572 100644 --- a/node/service/src/lib.rs +++ b/node/service/src/lib.rs @@ -157,7 +157,7 @@ fn new_partial(config: &mut Configuration) -> Result< consensus_common::DefaultImportQueue>, sc_transaction_pool::FullPool>, ( - impl Fn(polkadot_rpc::DenyUnsafe) -> polkadot_rpc::RpcExtension, + impl Fn(polkadot_rpc::DenyUnsafe, polkadot_rpc::SubscriptionManager) -> polkadot_rpc::RpcExtension, ( babe::BabeBlockImport< Block, FullClient, FullGrandpaBlockImport @@ -227,7 +227,7 @@ fn new_partial(config: &mut Configuration) -> Result< config.prometheus_registry(), )?; - let justification_receiver = grandpa_link.justification_receiver(); + let justification_stream = grandpa_link.justification_stream(); let shared_authority_set = grandpa_link.shared_authority_set().clone(); let shared_voter_state = grandpa::SharedVoterState::empty(); @@ -257,7 +257,7 @@ fn new_partial(config: &mut Configuration) -> Result< grandpa: polkadot_rpc::GrandpaDeps { shared_voter_state: shared_voter_state.clone(), shared_authority_set: shared_authority_set.clone(), - justification_receiver: justification_receiver.clone(), + justification_stream: justification_stream.clone(), subscriptions, }, }; From 0c0842a8a192268942fd3ea437f119c3c636490b Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Mon, 10 Aug 2020 10:32:24 +0000 Subject: [PATCH 3/3] "Update Substrate" --- Cargo.lock | 278 +++++++++++++++++++++++++++-------------------------- 1 file changed, 141 insertions(+), 137 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d2bce6661603..e0d38beae0d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1353,7 +1353,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", ] @@ -1361,7 +1361,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -1378,7 +1378,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "parity-scale-codec", @@ -1396,7 +1396,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -1411,7 +1411,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "11.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "serde", @@ -1422,7 +1422,7 @@ dependencies = [ [[package]] name = "frame-support" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "bitmask", "frame-metadata", @@ -1447,7 +1447,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support-procedural-tools", "proc-macro2 1.0.18", @@ -1458,7 +1458,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -1470,7 +1470,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "proc-macro2 1.0.18", "quote 1.0.7", @@ -1480,7 +1480,7 @@ dependencies = [ [[package]] name = "frame-system" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -1496,7 +1496,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -1510,7 +1510,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "sp-api", @@ -3483,7 +3483,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3499,7 +3499,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3514,7 +3514,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -3539,7 +3539,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -3553,7 +3553,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -3569,7 +3569,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -3584,7 +3584,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -3599,7 +3599,7 @@ dependencies = [ [[package]] name = "pallet-finality-tracker" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3615,7 +3615,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -3637,7 +3637,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "enumflags2", "frame-benchmarking", @@ -3653,7 +3653,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -3673,7 +3673,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3689,7 +3689,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3703,7 +3703,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3718,7 +3718,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3732,7 +3732,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3747,7 +3747,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -3768,7 +3768,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3783,7 +3783,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3796,7 +3796,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "enumflags2", "frame-support", @@ -3811,7 +3811,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -3826,7 +3826,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3846,7 +3846,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -3862,7 +3862,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3876,7 +3876,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -3898,7 +3898,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.18", @@ -3909,7 +3909,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3923,7 +3923,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -3941,7 +3941,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "frame-system", @@ -3958,7 +3958,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -3976,7 +3976,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-support", "parity-scale-codec", @@ -3989,7 +3989,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -4004,7 +4004,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-benchmarking", "frame-support", @@ -4020,7 +4020,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6156,7 +6156,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "bytes 0.5.5", "derive_more 0.99.9", @@ -6183,7 +6183,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -6207,7 +6207,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -6224,7 +6224,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "impl-trait-for-tuples", "sc-chain-spec-derive", @@ -6240,7 +6240,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.18", @@ -6251,7 +6251,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "ansi_term 0.12.1", "atty", @@ -6292,7 +6292,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "fnv", @@ -6328,7 +6328,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "blake2-rfc", "hash-db", @@ -6358,7 +6358,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "sc-client-api", "sp-blockchain", @@ -6369,7 +6369,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "fork-tree", @@ -6413,7 +6413,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -6437,7 +6437,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "fork-tree", "parity-scale-codec", @@ -6450,7 +6450,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -6473,7 +6473,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "log 0.4.8", "sc-client-api", @@ -6487,7 +6487,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "lazy_static", @@ -6515,7 +6515,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "log 0.4.8", @@ -6532,7 +6532,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -6547,7 +6547,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "cranelift-codegen", "cranelift-wasm", @@ -6568,7 +6568,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "finality-grandpa", @@ -6605,7 +6605,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "finality-grandpa", @@ -6613,16 +6613,20 @@ dependencies = [ "jsonrpc-core", "jsonrpc-core-client", "jsonrpc-derive", + "jsonrpc-pubsub", "log 0.4.8", + "parity-scale-codec", "sc-finality-grandpa", + "sc-rpc", "serde", "serde_json", + "sp-runtime", ] [[package]] name = "sc-informant" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "ansi_term 0.12.1", "futures 0.3.5", @@ -6640,7 +6644,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "hex", @@ -6656,7 +6660,7 @@ dependencies = [ [[package]] name = "sc-light" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "hash-db", "lazy_static", @@ -6675,7 +6679,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "bitflags", "bs58", @@ -6727,7 +6731,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -6742,7 +6746,7 @@ dependencies = [ [[package]] name = "sc-network-test" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "env_logger", "futures 0.3.5", @@ -6769,7 +6773,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "bytes 0.5.5", "fnv", @@ -6796,7 +6800,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "futures 0.3.5", "libp2p", @@ -6809,7 +6813,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "log 0.4.8", "substrate-prometheus-endpoint", @@ -6818,7 +6822,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "futures 0.3.5", "hash-db", @@ -6850,7 +6854,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -6874,7 +6878,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "jsonrpc-core", "jsonrpc-http-server", @@ -6890,7 +6894,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "directories", @@ -6950,7 +6954,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -6964,7 +6968,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -6985,7 +6989,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "erased-serde", "log 0.4.8", @@ -7002,7 +7006,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7023,7 +7027,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7478,7 +7482,7 @@ dependencies = [ [[package]] name = "sp-allocator" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "log 0.4.8", @@ -7490,7 +7494,7 @@ dependencies = [ [[package]] name = "sp-api" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "hash-db", "parity-scale-codec", @@ -7505,7 +7509,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "blake2-rfc", "proc-macro-crate", @@ -7517,7 +7521,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "serde", @@ -7529,7 +7533,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "integer-sqrt", "num-traits 0.2.12", @@ -7542,7 +7546,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "sp-api", @@ -7554,7 +7558,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -7565,7 +7569,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "sp-api", @@ -7577,7 +7581,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "log 0.4.8", @@ -7594,7 +7598,7 @@ dependencies = [ [[package]] name = "sp-chain-spec" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "serde", "serde_json", @@ -7603,7 +7607,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -7629,7 +7633,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "sp-api", @@ -7643,7 +7647,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "merlin", "parity-scale-codec", @@ -7662,7 +7666,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -7671,7 +7675,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -7683,7 +7687,7 @@ dependencies = [ [[package]] name = "sp-core" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "base58", "blake2-rfc", @@ -7727,7 +7731,7 @@ dependencies = [ [[package]] name = "sp-database" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "kvdb", "parking_lot 0.10.2", @@ -7736,7 +7740,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "proc-macro2 1.0.18", "quote 1.0.7", @@ -7746,7 +7750,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "environmental", "parity-scale-codec", @@ -7757,7 +7761,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "finality-grandpa", "log 0.4.8", @@ -7773,7 +7777,7 @@ dependencies = [ [[package]] name = "sp-finality-tracker" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -7783,7 +7787,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "parity-scale-codec", @@ -7795,7 +7799,7 @@ dependencies = [ [[package]] name = "sp-io" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "futures 0.3.5", "hash-db", @@ -7816,7 +7820,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "lazy_static", "sp-core", @@ -7827,7 +7831,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "serde", @@ -7839,7 +7843,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.18", @@ -7850,7 +7854,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "sp-api", "sp-core", @@ -7860,7 +7864,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "backtrace", "log 0.4.8", @@ -7869,7 +7873,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "serde", "sp-core", @@ -7878,7 +7882,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "either", "hash256-std-hasher", @@ -7900,7 +7904,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "primitive-types", @@ -7915,7 +7919,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "Inflector", "proc-macro-crate", @@ -7927,7 +7931,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "serde", "serde_json", @@ -7936,7 +7940,7 @@ dependencies = [ [[package]] name = "sp-session" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "sp-api", @@ -7949,7 +7953,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -7959,7 +7963,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "hash-db", "itertools 0.9.0", @@ -7980,12 +7984,12 @@ dependencies = [ [[package]] name = "sp-std" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" [[package]] name = "sp-storage" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "impl-serde 0.2.3", "ref-cast", @@ -7997,7 +8001,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8011,7 +8015,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "log 0.4.8", "rental", @@ -8021,7 +8025,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "derive_more 0.99.9", "futures 0.3.5", @@ -8036,7 +8040,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "hash-db", "memory-db", @@ -8050,7 +8054,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "futures 0.3.5", "futures-core", @@ -8062,7 +8066,7 @@ dependencies = [ [[package]] name = "sp-version" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "impl-serde 0.2.3", "parity-scale-codec", @@ -8074,7 +8078,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8205,7 +8209,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "chrono", "console_error_panic_hook", @@ -8231,7 +8235,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "platforms", ] @@ -8239,7 +8243,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.5", @@ -8262,7 +8266,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.8.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "async-std", "derive_more 0.99.9", @@ -8276,7 +8280,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "futures 0.1.29", "futures 0.3.5", @@ -8302,7 +8306,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "cfg-if", "frame-executive", @@ -8342,7 +8346,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0-rc5" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" dependencies = [ "futures 0.3.5", "parity-scale-codec", @@ -8363,7 +8367,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder-runner" version = "1.0.6" -source = "git+https://github.com/paritytech/substrate#52494a465ab68904343c0525e86261ebcb166808" +source = "git+https://github.com/paritytech/substrate#eb0e05e126a027499d0993c0df8833c55bc359e0" [[package]] name = "substrate-wasm-builder-runner"