From 354a686ef3da6eb162cfb2ac171fbb9d111c66e2 Mon Sep 17 00:00:00 2001 From: Seun Lanlege Date: Mon, 5 Jul 2021 18:31:16 +0100 Subject: [PATCH 1/3] companion for paritytech/substrate#9228 --- rpc/Cargo.toml | 2 +- utils/staking-miner/Cargo.toml | 2 +- utils/staking-miner/src/monitor.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index f160fd210c83..f69db1f375f3 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -23,7 +23,7 @@ sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master" } +txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "master" } frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" } pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index e8aae026bf72..0b7efe56b4af 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -26,7 +26,7 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index 502b5a0bc55e..11d4a1a62ef3 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -23,7 +23,7 @@ use codec::Encode; use jsonrpsee_ws_client::{ traits::SubscriptionClient, v2::params::JsonRpcParams, Subscription, WsClient, }; -use sp_transaction_pool::TransactionStatus; +use sc_transaction_pool::TransactionStatus; /// Ensure that now is the signed phase. async fn ensure_signed_phase( From 85f4ae7a2f92911c33970845d90396b6b904f14b Mon Sep 17 00:00:00 2001 From: Seun Lanlege Date: Tue, 6 Jul 2021 11:31:15 +0100 Subject: [PATCH 2/3] sc_transaction_pool_api --- utils/staking-miner/Cargo.toml | 2 +- utils/staking-miner/src/monitor.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index 0b7efe56b4af..6761e60e63f8 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -26,7 +26,7 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/utils/staking-miner/src/monitor.rs b/utils/staking-miner/src/monitor.rs index 11d4a1a62ef3..b5efabc137b6 100644 --- a/utils/staking-miner/src/monitor.rs +++ b/utils/staking-miner/src/monitor.rs @@ -23,7 +23,7 @@ use codec::Encode; use jsonrpsee_ws_client::{ traits::SubscriptionClient, v2::params::JsonRpcParams, Subscription, WsClient, }; -use sc_transaction_pool::TransactionStatus; +use sc_transaction_pool_api::TransactionStatus; /// Ensure that now is the signed phase. async fn ensure_signed_phase( From e993e4604044ede057d1cdc88863192f4c99b7d0 Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Thu, 8 Jul 2021 13:34:43 +0000 Subject: [PATCH 3/3] update Substrate --- Cargo.lock | 353 ++++++++++++++++++++++++++--------------------------- 1 file changed, 172 insertions(+), 181 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1ffa5a9744f5..4c61633547ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1970,7 +1970,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "parity-scale-codec", ] @@ -1988,7 +1988,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "3.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "frame-system", @@ -2007,7 +2007,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "Inflector", "chrono", @@ -2031,7 +2031,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "frame-system", @@ -2044,7 +2044,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "frame-system", @@ -2059,7 +2059,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "13.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "parity-scale-codec", "serde", @@ -2070,7 +2070,7 @@ dependencies = [ [[package]] name = "frame-support" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "bitflags", "frame-metadata", @@ -2096,7 +2096,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2108,7 +2108,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.0.0", @@ -2120,7 +2120,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "proc-macro2", "quote", @@ -2130,7 +2130,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-metadata", "frame-support", @@ -2150,7 +2150,7 @@ dependencies = [ [[package]] name = "frame-system" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -2167,7 +2167,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -2181,7 +2181,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "parity-scale-codec", "sp-api", @@ -2190,7 +2190,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "parity-scale-codec", @@ -4611,7 +4611,7 @@ checksum = "13370dae44474229701bb69b90b4f4dca6404cb0357a2d50d635f1171dc3aa7b" [[package]] name = "pallet-authority-discovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "frame-system", @@ -4626,7 +4626,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "frame-system", @@ -4640,7 +4640,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -4663,7 +4663,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -4692,7 +4692,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -4770,7 +4770,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -4786,7 +4786,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -4801,7 +4801,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4822,7 +4822,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -4839,7 +4839,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -4853,7 +4853,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "3.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -4875,7 +4875,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "enumflags2", "frame-benchmarking", @@ -4890,7 +4890,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -4909,7 +4909,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -4925,7 +4925,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -4940,7 +4940,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -4957,7 +4957,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "frame-system", @@ -4973,7 +4973,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -4991,7 +4991,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5006,7 +5006,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "frame-system", @@ -5019,7 +5019,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "frame-system", @@ -5035,7 +5035,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5057,7 +5057,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5072,7 +5072,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "enumflags2", "frame-support", @@ -5086,7 +5086,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5101,7 +5101,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "frame-system", @@ -5121,7 +5121,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5137,7 +5137,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "frame-system", @@ -5150,7 +5150,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5174,7 +5174,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -5185,7 +5185,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "log", "sp-arithmetic", @@ -5194,7 +5194,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "frame-system", @@ -5207,7 +5207,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5225,7 +5225,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5240,7 +5240,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-support", "frame-system", @@ -5256,7 +5256,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5273,7 +5273,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5284,7 +5284,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5300,7 +5300,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5315,7 +5315,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6562,6 +6562,7 @@ dependencies = [ "sc-keystore", "sc-rpc", "sc-sync-state-rpc", + "sc-transaction-pool-api", "sp-api", "sp-block-builder", "sp-blockchain", @@ -6569,7 +6570,6 @@ dependencies = [ "sp-consensus-babe", "sp-keystore", "sp-runtime", - "sp-transaction-pool", "substrate-frame-rpc-system", ] @@ -7634,7 +7634,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "env_logger 0.8.4", "hex", @@ -7932,7 +7932,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "log", "sp-core", @@ -7943,7 +7943,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "derive_more", @@ -7972,7 +7972,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "futures 0.3.15", "futures-timer 3.0.2", @@ -7982,20 +7982,20 @@ dependencies = [ "sc-client-api", "sc-proposer-metrics", "sc-telemetry", + "sc-transaction-pool-api", "sp-api", "sp-blockchain", "sp-consensus", "sp-core", "sp-inherents", "sp-runtime", - "sp-transaction-pool", "substrate-prometheus-endpoint", ] [[package]] name = "sc-block-builder" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8011,7 +8011,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8031,7 +8031,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -8042,7 +8042,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "chrono", "fdlimit", @@ -8080,7 +8080,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "derive_more", "fnv", @@ -8092,6 +8092,7 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.11.1", "sc-executor", + "sc-transaction-pool-api", "sp-api", "sp-blockchain", "sp-consensus", @@ -8104,7 +8105,6 @@ dependencies = [ "sp-state-machine", "sp-std", "sp-storage", - "sp-transaction-pool", "sp-trie", "sp-utils", "sp-version", @@ -8114,7 +8114,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "blake2-rfc", "hash-db", @@ -8144,7 +8144,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "parking_lot 0.11.1", @@ -8157,7 +8157,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "derive_more", @@ -8203,7 +8203,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "derive_more", "futures 0.3.15", @@ -8227,7 +8227,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8240,7 +8240,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "futures 0.3.15", @@ -8268,7 +8268,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "sc-client-api", "sp-authorship", @@ -8279,7 +8279,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "derive_more", "lazy_static", @@ -8308,7 +8308,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "derive_more", "parity-scale-codec", @@ -8325,7 +8325,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "log", "parity-scale-codec", @@ -8340,7 +8340,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8360,7 +8360,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "derive_more", @@ -8401,7 +8401,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "derive_more", "finality-grandpa", @@ -8425,7 +8425,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-warp-sync" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "derive_more", "futures 0.3.15", @@ -8446,7 +8446,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "ansi_term 0.12.1", "futures 0.3.15", @@ -8455,16 +8455,16 @@ dependencies = [ "parity-util-mem", "sc-client-api", "sc-network", + "sc-transaction-pool-api", "sp-blockchain", "sp-runtime", - "sp-transaction-pool", "wasm-timer", ] [[package]] name = "sc-keystore" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "derive_more", @@ -8484,7 +8484,7 @@ dependencies = [ [[package]] name = "sc-light" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "hash-db", "lazy_static", @@ -8503,7 +8503,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-std", "async-trait", @@ -8556,7 +8556,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "futures 0.3.15", "futures-timer 3.0.2", @@ -8573,7 +8573,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "bytes 0.5.6", "fnv", @@ -8601,7 +8601,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "futures 0.3.15", "libp2p", @@ -8614,7 +8614,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -8623,7 +8623,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "futures 0.3.15", "hash-db", @@ -8639,6 +8639,7 @@ dependencies = [ "sc-keystore", "sc-rpc-api", "sc-tracing", + "sc-transaction-pool-api", "serde_json", "sp-api", "sp-blockchain", @@ -8650,7 +8651,6 @@ dependencies = [ "sp-session", "sp-state-machine", "sp-tracing", - "sp-transaction-pool", "sp-utils", "sp-version", ] @@ -8658,7 +8658,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "derive_more", "futures 0.3.15", @@ -8670,20 +8670,20 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.11.1", "sc-chain-spec", + "sc-transaction-pool-api", "serde", "serde_json", "sp-core", "sp-rpc", "sp-runtime", "sp-tracing", - "sp-transaction-pool", "sp-version", ] [[package]] name = "sc-rpc-server" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "futures 0.1.29", "jsonrpc-core", @@ -8701,7 +8701,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "directories", @@ -8734,6 +8734,7 @@ dependencies = [ "sc-telemetry", "sc-tracing", "sc-transaction-pool", + "sc-transaction-pool-api", "serde", "serde_json", "sp-api", @@ -8767,7 +8768,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "log", "parity-scale-codec", @@ -8782,7 +8783,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -8802,7 +8803,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "chrono", "futures 0.3.15", @@ -8822,7 +8823,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "ansi_term 0.12.1", "atty", @@ -8859,7 +8860,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -8868,50 +8869,47 @@ dependencies = [ ] [[package]] -name = "sc-transaction-graph" +name = "sc-transaction-pool" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "derive_more", "futures 0.3.15", + "intervalier", "linked-hash-map", "log", + "parity-scale-codec", "parity-util-mem", "parking_lot 0.11.1", "retain_mut", + "sc-client-api", + "sc-transaction-pool-api", "serde", + "sp-api", "sp-blockchain", "sp-core", "sp-runtime", + "sp-tracing", "sp-transaction-pool", "sp-utils", + "substrate-prometheus-endpoint", "thiserror", "wasm-timer", ] [[package]] -name = "sc-transaction-pool" +name = "sc-transaction-pool-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ + "derive_more", "futures 0.3.15", - "intervalier", "log", "parity-scale-codec", - "parity-util-mem", - "parking_lot 0.11.1", - "sc-client-api", - "sc-transaction-graph", - "sp-api", + "serde", "sp-blockchain", - "sp-core", "sp-runtime", - "sp-tracing", - "sp-transaction-pool", - "sp-utils", - "substrate-prometheus-endpoint", "thiserror", - "wasm-timer", ] [[package]] @@ -9345,7 +9343,7 @@ dependencies = [ [[package]] name = "sp-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "hash-db", "log", @@ -9362,7 +9360,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "blake2-rfc", "proc-macro-crate 1.0.0", @@ -9374,7 +9372,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "parity-scale-codec", "serde", @@ -9386,7 +9384,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "integer-sqrt", "num-traits", @@ -9400,7 +9398,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "parity-scale-codec", "sp-api", @@ -9412,7 +9410,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "parity-scale-codec", @@ -9424,7 +9422,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "parity-scale-codec", "sp-api", @@ -9436,7 +9434,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "futures 0.3.15", "log", @@ -9454,7 +9452,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "futures 0.3.15", @@ -9481,7 +9479,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "merlin", @@ -9503,7 +9501,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "parity-scale-codec", "sp-arithmetic", @@ -9513,7 +9511,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -9525,7 +9523,7 @@ dependencies = [ [[package]] name = "sp-core" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "base58", "blake2-rfc", @@ -9569,7 +9567,7 @@ dependencies = [ [[package]] name = "sp-database" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "kvdb", "parking_lot 0.11.1", @@ -9578,7 +9576,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "proc-macro2", "quote", @@ -9588,7 +9586,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "environmental", "parity-scale-codec", @@ -9599,7 +9597,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "finality-grandpa", "log", @@ -9616,7 +9614,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -9630,7 +9628,7 @@ dependencies = [ [[package]] name = "sp-io" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "futures 0.3.15", "hash-db", @@ -9655,7 +9653,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "lazy_static", "sp-core", @@ -9666,7 +9664,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "derive_more", @@ -9683,7 +9681,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "ruzstd", "zstd", @@ -9692,7 +9690,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "parity-scale-codec", "serde", @@ -9705,7 +9703,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -9716,7 +9714,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "sp-api", "sp-core", @@ -9726,7 +9724,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "backtrace", ] @@ -9734,7 +9732,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "rustc-hash", "serde", @@ -9745,7 +9743,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "either", "hash256-std-hasher", @@ -9766,7 +9764,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -9783,7 +9781,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "Inflector", "proc-macro-crate 1.0.0", @@ -9795,7 +9793,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "serde", "serde_json", @@ -9804,7 +9802,7 @@ dependencies = [ [[package]] name = "sp-session" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "parity-scale-codec", "sp-api", @@ -9817,7 +9815,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -9827,7 +9825,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "hash-db", "log", @@ -9850,12 +9848,12 @@ dependencies = [ [[package]] name = "sp-std" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" [[package]] name = "sp-storage" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9868,7 +9866,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "log", "sp-core", @@ -9881,7 +9879,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "futures-timer 3.0.2", @@ -9898,7 +9896,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "erased-serde", "log", @@ -9916,23 +9914,16 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ - "derive_more", - "futures 0.3.15", - "log", - "parity-scale-codec", - "serde", "sp-api", - "sp-blockchain", "sp-runtime", - "thiserror", ] [[package]] name = "sp-transaction-storage-proof" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "log", @@ -9947,7 +9938,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "hash-db", "memory-db", @@ -9961,7 +9952,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "futures 0.3.15", "futures-core", @@ -9973,7 +9964,7 @@ dependencies = [ [[package]] name = "sp-version" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9988,7 +9979,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "parity-scale-codec", "proc-macro-crate 1.0.0", @@ -10000,7 +9991,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10044,13 +10035,13 @@ dependencies = [ "polkadot-runtime", "polkadot-runtime-common", "remote-externalities", + "sc-transaction-pool-api", "serde", "serde_json", "sp-core", "sp-io", "sp-npos-elections", "sp-runtime", - "sp-transaction-pool", "sp-version", "structopt", "thiserror", @@ -10187,7 +10178,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "chrono", "console_error_panic_hook", @@ -10213,7 +10204,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "platforms", ] @@ -10221,7 +10212,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.15", @@ -10232,19 +10223,19 @@ dependencies = [ "parity-scale-codec", "sc-client-api", "sc-rpc-api", + "sc-transaction-pool-api", "serde", "sp-api", "sp-block-builder", "sp-blockchain", "sp-core", "sp-runtime", - "sp-transaction-pool", ] [[package]] name = "substrate-prometheus-endpoint" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-std", "derive_more", @@ -10258,7 +10249,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "async-trait", "futures 0.1.29", @@ -10287,7 +10278,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "futures 0.3.15", "substrate-test-utils-derive", @@ -10297,7 +10288,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "proc-macro-crate 1.0.0", "quote", @@ -10307,7 +10298,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "ansi_term 0.12.1", "atty", @@ -11052,7 +11043,7 @@ checksum = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" [[package]] name = "try-runtime-cli" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65ac8a5a070e403b49d3cc3b8b621108f0590b97" +source = "git+https://github.com/paritytech/substrate?branch=master#d3db3c1d1011983ba7565e342910a6d2095625c8" dependencies = [ "frame-try-runtime", "log",