From f44939fdde515bfb0c217f676aca7e84978496bd Mon Sep 17 00:00:00 2001 From: Jan Bujak Date: Fri, 25 Mar 2022 13:04:45 +0000 Subject: [PATCH 1/5] Align to changes in Substrate --- polkadot-parachains/src/command.rs | 4 ++++ test/service/src/lib.rs | 1 + 2 files changed, 5 insertions(+) diff --git a/polkadot-parachains/src/command.rs b/polkadot-parachains/src/command.rs index 967e37a9128..c026b7080b7 100644 --- a/polkadot-parachains/src/command.rs +++ b/polkadot-parachains/src/command.rs @@ -737,4 +737,8 @@ impl CliConfiguration for RelayChainCli { fn node_name(&self) -> Result { self.base.base.node_name() } + + fn disable_hardware_benchmarks(&self) -> Result { + self.base.base.disable_hardware_benchmarks() + } } diff --git a/test/service/src/lib.rs b/test/service/src/lib.rs index f70465fb900..2571eae5374 100644 --- a/test/service/src/lib.rs +++ b/test/service/src/lib.rs @@ -691,6 +691,7 @@ pub fn node_config( informant_output_format: Default::default(), wasm_runtime_overrides: None, runtime_cache_size: 2, + disable_hardware_benchmarks: true, }) } From 29a13e82e65157b679d222546b85fe3f4ca1dc59 Mon Sep 17 00:00:00 2001 From: Jan Bujak Date: Wed, 6 Apr 2022 11:22:10 +0000 Subject: [PATCH 2/5] Align to the newest changes in substrate --- Cargo.lock | 21 +++++++ .../Cargo.toml | 1 + .../src/lib.rs | 11 +++- polkadot-parachains/Cargo.toml | 1 + polkadot-parachains/src/cli.rs | 10 ++++ polkadot-parachains/src/command.rs | 21 +++++-- polkadot-parachains/src/service.rs | 55 +++++++++++++++++++ test/service/src/lib.rs | 1 - 8 files changed, 113 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 39c96d6396c..7b525076244 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2074,6 +2074,7 @@ dependencies = [ "sc-consensus-babe", "sc-network", "sc-service", + "sc-sysinfo", "sc-telemetry", "sc-tracing", "sp-api", @@ -7359,6 +7360,7 @@ dependencies = [ "polkadot-service", "sc-cli", "sc-service", + "sc-sysinfo", "sc-tracing", "sp-core", "sp-trie", @@ -7441,6 +7443,7 @@ dependencies = [ "sc-network", "sc-rpc", "sc-service", + "sc-sysinfo", "sc-telemetry", "sc-tracing", "sc-transaction-pool", @@ -8421,6 +8424,7 @@ dependencies = [ "sc-offchain", "sc-service", "sc-sync-state-rpc", + "sc-sysinfo", "sc-telemetry", "sc-transaction-pool", "serde", @@ -10252,6 +10256,7 @@ dependencies = [ "sc-offchain", "sc-rpc", "sc-rpc-server", + "sc-sysinfo", "sc-telemetry", "sc-tracing", "sc-transaction-pool", @@ -10320,6 +10325,22 @@ dependencies = [ "thiserror", ] +[[package]] +name = "sc-sysinfo" +version = "6.0.0-dev" +dependencies = [ + "futures 0.3.21", + "libc", + "log", + "rand 0.7.3", + "rand_pcg 0.2.1", + "regex", + "sc-telemetry", + "serde", + "serde_json", + "sp-core", +] + [[package]] name = "sc-telemetry" version = "4.0.0-dev" diff --git a/client/relay-chain-inprocess-interface/Cargo.toml b/client/relay-chain-inprocess-interface/Cargo.toml index 01916013066..089a79fa241 100644 --- a/client/relay-chain-inprocess-interface/Cargo.toml +++ b/client/relay-chain-inprocess-interface/Cargo.toml @@ -18,6 +18,7 @@ sc-network = { git = "https://github.com/paritytech/substrate", branch = "master sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/client/relay-chain-inprocess-interface/src/lib.rs b/client/relay-chain-inprocess-interface/src/lib.rs index e19f794fb38..c8ecb33a66d 100644 --- a/client/relay-chain-inprocess-interface/src/lib.rs +++ b/client/relay-chain-inprocess-interface/src/lib.rs @@ -329,6 +329,7 @@ fn build_polkadot_full_node( config: Configuration, parachain_config: &Configuration, telemetry_worker_handle: Option, + hwbench: Option, ) -> Result<(NewFull, Option), polkadot_service::Error> { let is_light = matches!(config.role, Role::Light); if is_light { @@ -350,6 +351,7 @@ fn build_polkadot_full_node( telemetry_worker_handle, true, polkadot_service::RealOverseerGen, + hwbench, )?; Ok((relay_chain_full_node, maybe_collator_key)) @@ -362,9 +364,14 @@ pub fn build_inprocess_relay_chain( parachain_config: &Configuration, telemetry_worker_handle: Option, task_manager: &mut TaskManager, + hwbench: Option, ) -> RelayChainResult<(Arc<(dyn RelayChainInterface + 'static)>, Option)> { - let (full_node, collator_key) = - build_polkadot_full_node(polkadot_config, parachain_config, telemetry_worker_handle)?; + let (full_node, collator_key) = build_polkadot_full_node( + polkadot_config, + parachain_config, + telemetry_worker_handle, + hwbench, + )?; let sync_oracle: Box = Box::new(full_node.network.clone()); let sync_oracle = Arc::new(Mutex::new(sync_oracle)); diff --git a/polkadot-parachains/Cargo.toml b/polkadot-parachains/Cargo.toml index 8d7175f3561..0220dc4043c 100644 --- a/polkadot-parachains/Cargo.toml +++ b/polkadot-parachains/Cargo.toml @@ -58,6 +58,7 @@ sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" } substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/polkadot-parachains/src/cli.rs b/polkadot-parachains/src/cli.rs index cceb34d927b..2b9ae37ccd2 100644 --- a/polkadot-parachains/src/cli.rs +++ b/polkadot-parachains/src/cli.rs @@ -108,6 +108,16 @@ pub struct Cli { #[clap(flatten)] pub run: cumulus_client_cli::RunCmd, + /// Disable automatic hardware benchmarks. + /// + /// By default these benchmarks are automatically ran at startup and measure + /// the CPU speed, the memory bandwidth and the disk speed. + /// + /// The results are then printed out in the logs, and also sent as part of + /// telemetry, if telemetry is enabled. + #[clap(long)] + pub no_hardware_benchmarks: bool, + /// Relay chain arguments #[clap(raw = true, conflicts_with = "relay-chain-rpc-url")] pub relaychain_args: Vec, diff --git a/polkadot-parachains/src/command.rs b/polkadot-parachains/src/command.rs index c026b7080b7..8964b4b1e2b 100644 --- a/polkadot-parachains/src/command.rs +++ b/polkadot-parachains/src/command.rs @@ -494,6 +494,15 @@ pub fn run() -> Result<()> { let collator_options = cli.run.collator_options(); runner.run_node_until_exit(|config| async move { + let hwbench = if !cli.no_hardware_benchmarks { + config.database.path().map(|database_path| { + let _ = std::fs::create_dir_all(&database_path); + sc_sysinfo::gather_hwbench(Some(database_path)) + }) + } else { + None + }; + let para_id = chain_spec::Extensions::try_get(&*config.chain_spec) .map(|e| e.para_id) .ok_or_else(|| "Could not find parachain extension in chain-spec.")?; @@ -532,7 +541,7 @@ pub fn run() -> Result<()> { crate::service::start_statemint_node::< statemint_runtime::RuntimeApi, StatemintAuraId, - >(config, polkadot_config, collator_options, id) + >(config, polkadot_config, collator_options, id, hwbench) .await .map(|r| r.0) .map_err(Into::into) @@ -542,6 +551,7 @@ pub fn run() -> Result<()> { polkadot_config, collator_options, id, + hwbench, ) .await .map(|r| r.0) @@ -552,6 +562,7 @@ pub fn run() -> Result<()> { polkadot_config, collator_options, id, + hwbench, ) .await .map(|r| r.0) @@ -562,6 +573,7 @@ pub fn run() -> Result<()> { polkadot_config, collator_options, id, + hwbench, ) .await .map(|r| r.0) @@ -572,6 +584,7 @@ pub fn run() -> Result<()> { polkadot_config, collator_options, id, + hwbench, ) .await .map(|r| r.0) @@ -582,6 +595,7 @@ pub fn run() -> Result<()> { polkadot_config, collator_options, id, + hwbench, ) .await .map(|r| r.0) @@ -592,6 +606,7 @@ pub fn run() -> Result<()> { polkadot_config, collator_options, id, + hwbench, ) .await .map(|r| r.0) @@ -737,8 +752,4 @@ impl CliConfiguration for RelayChainCli { fn node_name(&self) -> Result { self.base.base.node_name() } - - fn disable_hardware_benchmarks(&self) -> Result { - self.base.base.disable_hardware_benchmarks() - } } diff --git a/polkadot-parachains/src/service.rs b/polkadot-parachains/src/service.rs index 368b281cb03..ed84e02bc23 100644 --- a/polkadot-parachains/src/service.rs +++ b/polkadot-parachains/src/service.rs @@ -291,6 +291,7 @@ async fn build_relay_chain_interface( telemetry_worker_handle: Option, task_manager: &mut TaskManager, collator_options: CollatorOptions, + hwbench: Option, ) -> RelayChainResult<(Arc<(dyn RelayChainInterface + 'static)>, Option)> { match collator_options.relay_chain_rpc_url { Some(relay_chain_url) => @@ -300,6 +301,7 @@ async fn build_relay_chain_interface( parachain_config, telemetry_worker_handle, task_manager, + hwbench, ), } } @@ -316,6 +318,7 @@ async fn start_shell_node_impl( rpc_ext_builder: RB, build_import_queue: BIQ, build_consensus: BIC, + hwbench: Option, ) -> sc_service::error::Result<( TaskManager, Arc>>, @@ -389,6 +392,7 @@ where telemetry_worker_handle, &mut task_manager, collator_options.clone(), + hwbench.clone(), ) .await .map_err(|e| match e { @@ -432,6 +436,19 @@ where telemetry: telemetry.as_mut(), })?; + if let Some(hwbench) = hwbench { + sc_sysinfo::print_hwbench(&hwbench); + + if let Some(ref mut telemetry) = telemetry { + let telemetry_handle = telemetry.handle(); + task_manager.spawn_handle().spawn( + "telemetry_hwbench", + None, + sc_sysinfo::initialize_hwbench_telemetry(telemetry_handle, hwbench), + ); + } + } + let announce_block = { let network = network.clone(); Arc::new(move |hash, data| network.announce_block(hash, data)) @@ -501,6 +518,7 @@ async fn start_node_impl( _rpc_ext_builder: RB, build_import_queue: BIQ, build_consensus: BIC, + hwbench: Option, ) -> sc_service::error::Result<( TaskManager, Arc>>, @@ -575,6 +593,7 @@ where telemetry_worker_handle, &mut task_manager, collator_options.clone(), + hwbench.clone(), ) .await .map_err(|e| match e { @@ -630,6 +649,19 @@ where telemetry: telemetry.as_mut(), })?; + if let Some(hwbench) = hwbench { + sc_sysinfo::print_hwbench(&hwbench); + + if let Some(ref mut telemetry) = telemetry { + let telemetry_handle = telemetry.handle(); + task_manager.spawn_handle().spawn( + "telemetry_hwbench", + None, + sc_sysinfo::initialize_hwbench_telemetry(telemetry_handle, hwbench), + ); + } + } + let announce_block = { let network = network.clone(); Arc::new(move |hash, data| network.announce_block(hash, data)) @@ -740,6 +772,7 @@ pub async fn start_rococo_parachain_node( polkadot_config: Configuration, collator_options: CollatorOptions, id: ParaId, + hwbench: Option, ) -> sc_service::error::Result<( TaskManager, Arc>>, @@ -817,6 +850,7 @@ pub async fn start_rococo_parachain_node( }, )) }, + hwbench, ) .await } @@ -865,6 +899,7 @@ pub async fn start_shell_node( polkadot_config: Configuration, collator_options: CollatorOptions, id: ParaId, + hwbench: Option, ) -> sc_service::error::Result<( TaskManager, Arc>>, @@ -936,6 +971,7 @@ where }, )) }, + hwbench, ) .await } @@ -1133,6 +1169,7 @@ pub async fn start_statemint_node( polkadot_config: Configuration, collator_options: CollatorOptions, id: ParaId, + hwbench: Option, ) -> sc_service::error::Result<( TaskManager, Arc>>, @@ -1289,6 +1326,7 @@ where Ok(parachain_consensus) }, + hwbench, ) .await } @@ -1302,6 +1340,7 @@ async fn start_canvas_kusama_node_impl( _rpc_ext_builder: RB, build_import_queue: BIQ, build_consensus: BIC, + hwbench: Option, ) -> sc_service::error::Result<( TaskManager, Arc>>, @@ -1377,6 +1416,7 @@ where telemetry_worker_handle, &mut task_manager, collator_options.clone(), + hwbench.clone(), ) .await .map_err(|e| match e { @@ -1432,6 +1472,19 @@ where telemetry: telemetry.as_mut(), })?; + if let Some(hwbench) = hwbench { + sc_sysinfo::print_hwbench(&hwbench); + + if let Some(ref mut telemetry) = telemetry { + let telemetry_handle = telemetry.handle(); + task_manager.spawn_handle().spawn( + "telemetry_hwbench", + None, + sc_sysinfo::initialize_hwbench_telemetry(telemetry_handle, hwbench), + ); + } + } + let announce_block = { let network = network.clone(); Arc::new(move |hash, data| network.announce_block(hash, data)) @@ -1540,6 +1593,7 @@ pub async fn start_canvas_kusama_node( polkadot_config: Configuration, collator_options: CollatorOptions, id: ParaId, + hwbench: Option, ) -> sc_service::error::Result<( TaskManager, Arc>>, @@ -1616,6 +1670,7 @@ pub async fn start_canvas_kusama_node( }, )) }, + hwbench, ) .await } diff --git a/test/service/src/lib.rs b/test/service/src/lib.rs index 2571eae5374..f70465fb900 100644 --- a/test/service/src/lib.rs +++ b/test/service/src/lib.rs @@ -691,7 +691,6 @@ pub fn node_config( informant_output_format: Default::default(), wasm_runtime_overrides: None, runtime_cache_size: 2, - disable_hardware_benchmarks: true, }) } From 11a9fdb8ab5b78a2de1745314705e32c65b881f8 Mon Sep 17 00:00:00 2001 From: Jan Bujak Date: Wed, 20 Apr 2022 11:06:25 +0000 Subject: [PATCH 3/5] Update `Cargo.lock` --- Cargo.lock | 2 -- 1 file changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8dbbfedb8f0..ce79ae656a4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7230,7 +7230,6 @@ dependencies = [ "polkadot-service", "sc-cli", "sc-service", - "sc-sysinfo", "sc-tracing", "sp-core", "sp-trie", @@ -8306,7 +8305,6 @@ dependencies = [ "sc-offchain", "sc-service", "sc-sync-state-rpc", - "sc-sysinfo", "sc-telemetry", "sc-transaction-pool", "serde", From c2f8bf8beac106008deb1cf6df459d8c754cda5c Mon Sep 17 00:00:00 2001 From: Jan Bujak Date: Wed, 20 Apr 2022 12:41:04 +0000 Subject: [PATCH 4/5] Add hwbenches to `parachain-template` too --- Cargo.lock | 3 +++ parachain-template/node/Cargo.toml | 1 + parachain-template/node/src/cli.rs | 10 ++++++++++ parachain-template/node/src/command.rs | 23 +++++++++++++++++++---- parachain-template/node/src/service.rs | 19 +++++++++++++++++++ 5 files changed, 52 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ce79ae656a4..f2a238aa573 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6662,6 +6662,7 @@ dependencies = [ "sc-rpc", "sc-rpc-api", "sc-service", + "sc-sysinfo", "sc-telemetry", "sc-tracing", "sc-transaction-pool", @@ -7230,6 +7231,7 @@ dependencies = [ "polkadot-service", "sc-cli", "sc-service", + "sc-sysinfo", "sc-tracing", "sp-core", "sp-trie", @@ -8305,6 +8307,7 @@ dependencies = [ "sc-offchain", "sc-service", "sc-sync-state-rpc", + "sc-sysinfo", "sc-telemetry", "sc-transaction-pool", "serde", diff --git a/parachain-template/node/Cargo.toml b/parachain-template/node/Cargo.toml index 31e58aac354..2151bd8857a 100644 --- a/parachain-template/node/Cargo.toml +++ b/parachain-template/node/Cargo.toml @@ -40,6 +40,7 @@ sc-network = { git = "https://github.com/paritytech/substrate", branch = "master sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] } +sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/parachain-template/node/src/cli.rs b/parachain-template/node/src/cli.rs index b2e7019f690..0d36120a479 100644 --- a/parachain-template/node/src/cli.rs +++ b/parachain-template/node/src/cli.rs @@ -88,6 +88,16 @@ pub struct Cli { #[clap(flatten)] pub run: cumulus_client_cli::RunCmd, + /// Disable automatic hardware benchmarks. + /// + /// By default these benchmarks are automatically ran at startup and measure + /// the CPU speed, the memory bandwidth and the disk speed. + /// + /// The results are then printed out in the logs, and also sent as part of + /// telemetry, if telemetry is enabled. + #[clap(long)] + pub no_hardware_benchmarks: bool, + /// Relay chain arguments #[clap(raw = true)] pub relay_chain_args: Vec, diff --git a/parachain-template/node/src/command.rs b/parachain-template/node/src/command.rs index a721edb7e76..f1e5f174986 100644 --- a/parachain-template/node/src/command.rs +++ b/parachain-template/node/src/command.rs @@ -287,6 +287,15 @@ pub fn run() -> Result<()> { let collator_options = cli.run.collator_options(); runner.run_node_until_exit(|config| async move { + let hwbench = if !cli.no_hardware_benchmarks { + config.database.path().map(|database_path| { + let _ = std::fs::create_dir_all(&database_path); + sc_sysinfo::gather_hwbench(Some(database_path)) + }) + } else { + None + }; + let para_id = chain_spec::Extensions::try_get(&*config.chain_spec) .map(|e| e.para_id) .ok_or_else(|| "Could not find parachain ID in chain-spec.")?; @@ -317,10 +326,16 @@ pub fn run() -> Result<()> { info!("Parachain genesis state: {}", genesis_state); info!("Is collating: {}", if config.role.is_authority() { "yes" } else { "no" }); - crate::service::start_parachain_node(config, polkadot_config, collator_options, id) - .await - .map(|r| r.0) - .map_err(Into::into) + crate::service::start_parachain_node( + config, + polkadot_config, + collator_options, + id, + hwbench, + ) + .await + .map(|r| r.0) + .map_err(Into::into) }) }, } diff --git a/parachain-template/node/src/service.rs b/parachain-template/node/src/service.rs index 108d7c18511..3d1c65dd40a 100644 --- a/parachain-template/node/src/service.rs +++ b/parachain-template/node/src/service.rs @@ -170,6 +170,7 @@ async fn build_relay_chain_interface( telemetry_worker_handle: Option, task_manager: &mut TaskManager, collator_options: CollatorOptions, + hwbench: Option, ) -> RelayChainResult<(Arc<(dyn RelayChainInterface + 'static)>, Option)> { match collator_options.relay_chain_rpc_url { Some(relay_chain_url) => @@ -179,6 +180,7 @@ async fn build_relay_chain_interface( parachain_config, telemetry_worker_handle, task_manager, + hwbench, ), } } @@ -195,6 +197,7 @@ async fn start_node_impl( _rpc_ext_builder: RB, build_import_queue: BIQ, build_consensus: BIC, + hwbench: Option, ) -> sc_service::error::Result<( TaskManager, Arc>>, @@ -270,6 +273,7 @@ where telemetry_worker_handle, &mut task_manager, collator_options.clone(), + hwbench.clone(), ) .await .map_err(|e| match e { @@ -325,6 +329,19 @@ where telemetry: telemetry.as_mut(), })?; + if let Some(hwbench) = hwbench { + sc_sysinfo::print_hwbench(&hwbench); + + if let Some(ref mut telemetry) = telemetry { + let telemetry_handle = telemetry.handle(); + task_manager.spawn_handle().spawn( + "telemetry_hwbench", + None, + sc_sysinfo::initialize_hwbench_telemetry(telemetry_handle, hwbench), + ); + } + } + let announce_block = { let network = network.clone(); Arc::new(move |hash, data| network.announce_block(hash, data)) @@ -434,6 +451,7 @@ pub async fn start_parachain_node( polkadot_config: Configuration, collator_options: CollatorOptions, id: ParaId, + hwbench: Option, ) -> sc_service::error::Result<( TaskManager, Arc>>, @@ -508,6 +526,7 @@ pub async fn start_parachain_node( }, )) }, + hwbench, ) .await } From bc4fab53016e5242a8746cfa9fcf0b5c5b2125d4 Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Tue, 26 Apr 2022 09:16:55 +0000 Subject: [PATCH 5/5] update lockfile for {"polkadot"} --- Cargo.lock | 500 +++++++++++++++++++++++++++-------------------------- 1 file changed, 254 insertions(+), 246 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6b72659c501..ad2b8b3994c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -452,7 +452,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "beefy-primitives", "fnv", @@ -486,7 +486,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -509,12 +509,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", "scale-info", @@ -720,9 +720,9 @@ dependencies = [ [[package]] name = "bounded-vec" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b47cca82fca99417fe405f09d93bb8fff90bdd03d13c631f18096ee123b4281c" +checksum = "3372be4090bf9d4da36bd8ba7ce6ca1669503d0cf6e667236c6df7f053153eb6" dependencies = [ "thiserror", ] @@ -730,7 +730,7 @@ dependencies = [ [[package]] name = "bp-header-chain" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bp-runtime", "finality-grandpa", @@ -747,7 +747,7 @@ dependencies = [ [[package]] name = "bp-message-dispatch" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bp-runtime", "frame-support", @@ -759,7 +759,7 @@ dependencies = [ [[package]] name = "bp-messages" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bitvec", "bp-runtime", @@ -776,7 +776,7 @@ dependencies = [ [[package]] name = "bp-polkadot-core" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bp-messages", "bp-runtime", @@ -794,7 +794,7 @@ dependencies = [ [[package]] name = "bp-rococo" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bp-messages", "bp-polkadot-core", @@ -811,7 +811,7 @@ dependencies = [ [[package]] name = "bp-runtime" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "frame-support", "hash-db", @@ -829,7 +829,7 @@ dependencies = [ [[package]] name = "bp-test-utils" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bp-header-chain", "ed25519-dalek", @@ -844,7 +844,7 @@ dependencies = [ [[package]] name = "bp-wococo" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bp-messages", "bp-polkadot-core", @@ -859,7 +859,7 @@ dependencies = [ [[package]] name = "bridge-runtime-common" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bp-message-dispatch", "bp-messages", @@ -2842,7 +2842,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", ] @@ -2860,7 +2860,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support", "frame-system", @@ -2882,7 +2882,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "Inflector", "chrono", @@ -2930,7 +2930,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -2941,7 +2941,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2957,7 +2957,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support", "frame-system", @@ -2985,7 +2985,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "bitflags", "frame-metadata", @@ -3015,7 +3015,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -3027,7 +3027,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.1.3", @@ -3039,7 +3039,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "proc-macro2", "quote", @@ -3049,7 +3049,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support", "log", @@ -3066,7 +3066,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -3081,7 +3081,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", "sp-api", @@ -3090,7 +3090,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support", "sp-api", @@ -4209,7 +4209,7 @@ dependencies = [ [[package]] name = "kusama-runtime" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "beefy-primitives", "bitvec", @@ -4300,7 +4300,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "frame-support", "polkadot-primitives", @@ -5163,7 +5163,7 @@ dependencies = [ [[package]] name = "metered-channel" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "coarsetime", "crossbeam-queue", @@ -5689,7 +5689,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support", "frame-system", @@ -5705,7 +5705,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support", "frame-system", @@ -5720,7 +5720,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -5744,7 +5744,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5764,7 +5764,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -5779,7 +5779,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "beefy-primitives", "frame-support", @@ -5795,7 +5795,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5818,7 +5818,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -5836,7 +5836,7 @@ dependencies = [ [[package]] name = "pallet-bridge-dispatch" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bp-message-dispatch", "bp-runtime", @@ -5853,7 +5853,7 @@ dependencies = [ [[package]] name = "pallet-bridge-grandpa" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bp-header-chain", "bp-runtime", @@ -5875,7 +5875,7 @@ dependencies = [ [[package]] name = "pallet-bridge-messages" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bitvec", "bp-message-dispatch", @@ -5896,7 +5896,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -5941,7 +5941,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6042,7 +6042,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6058,7 +6058,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6081,7 +6081,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6094,7 +6094,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6112,7 +6112,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6127,7 +6127,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6150,7 +6150,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6166,7 +6166,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6186,7 +6186,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6203,7 +6203,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6220,7 +6220,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -6238,7 +6238,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -6255,7 +6255,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6270,7 +6270,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support", "frame-system", @@ -6284,7 +6284,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support", "frame-system", @@ -6301,7 +6301,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6324,7 +6324,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6340,7 +6340,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6369,7 +6369,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support", "frame-system", @@ -6383,7 +6383,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6399,7 +6399,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support", "frame-system", @@ -6420,7 +6420,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6436,7 +6436,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support", "frame-system", @@ -6450,7 +6450,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6473,7 +6473,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -6484,7 +6484,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "log", "sp-arithmetic", @@ -6493,7 +6493,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support", "frame-system", @@ -6522,7 +6522,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6540,7 +6540,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6559,7 +6559,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-support", "frame-system", @@ -6576,7 +6576,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -6593,7 +6593,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6604,7 +6604,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6636,7 +6636,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6652,7 +6652,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-benchmarking", "frame-support", @@ -6667,7 +6667,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "frame-support", "frame-system", @@ -6685,7 +6685,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "frame-benchmarking", "frame-support", @@ -7236,7 +7236,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "futures 0.3.21", "polkadot-node-network-protocol", @@ -7251,7 +7251,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "futures 0.3.21", "polkadot-node-network-protocol", @@ -7264,7 +7264,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "derive_more", "fatality", @@ -7287,7 +7287,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "fatality", "futures 0.3.21", @@ -7308,7 +7308,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "clap 3.1.12", "frame-benchmarking-cli", @@ -7333,7 +7333,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7450,7 +7450,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "always-assert", "fatality", @@ -7471,7 +7471,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7484,7 +7484,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "derive_more", "fatality", @@ -7507,7 +7507,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7521,7 +7521,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "futures 0.3.21", "futures-timer", @@ -7541,9 +7541,11 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ + "always-assert", "async-trait", + "bytes 1.1.0", "futures 0.3.21", "parity-scale-codec", "parking_lot 0.12.0", @@ -7560,7 +7562,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "futures 0.3.21", "parity-scale-codec", @@ -7578,7 +7580,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bitvec", "derive_more", @@ -7607,7 +7609,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bitvec", "futures 0.3.21", @@ -7627,7 +7629,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bitvec", "futures 0.3.21", @@ -7645,7 +7647,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "futures 0.3.21", "polkadot-node-subsystem", @@ -7660,7 +7662,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "async-trait", "futures 0.3.21", @@ -7678,7 +7680,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "futures 0.3.21", "polkadot-node-subsystem", @@ -7693,7 +7695,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "futures 0.3.21", "futures-timer", @@ -7710,7 +7712,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "fatality", "futures 0.3.21", @@ -7729,7 +7731,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "async-trait", "futures 0.3.21", @@ -7746,7 +7748,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bitvec", "futures 0.3.21", @@ -7763,7 +7765,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "always-assert", "assert_matches", @@ -7793,7 +7795,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "futures 0.3.21", "polkadot-node-primitives", @@ -7809,7 +7811,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "futures 0.3.21", "memory-lru", @@ -7827,7 +7829,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "async-std", "lazy_static", @@ -7845,7 +7847,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bs58", "futures 0.3.21", @@ -7864,15 +7866,17 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "async-trait", + "derive_more", "fatality", "futures 0.3.21", "parity-scale-codec", "polkadot-node-jaeger", "polkadot-node-primitives", "polkadot-primitives", + "rand 0.8.5", "sc-authority-discovery", "sc-network", "strum 0.24.0", @@ -7882,7 +7886,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bounded-vec", "futures 0.3.21", @@ -7904,7 +7908,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7914,7 +7918,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "async-trait", "futures 0.3.21", @@ -7932,7 +7936,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "derive_more", "futures 0.3.21", @@ -7951,7 +7955,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "async-trait", "derive_more", @@ -7984,7 +7988,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8005,7 +8009,7 @@ dependencies = [ [[package]] name = "polkadot-overseer-gen" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "async-trait", "futures 0.3.21", @@ -8022,7 +8026,7 @@ dependencies = [ [[package]] name = "polkadot-overseer-gen-proc-macro" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "expander 0.0.6", "proc-macro-crate 1.1.3", @@ -8034,7 +8038,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "derive_more", "frame-support", @@ -8051,7 +8055,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -8066,7 +8070,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bitvec", "frame-system", @@ -8096,7 +8100,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -8128,7 +8132,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "beefy-primitives", "bitvec", @@ -8214,7 +8218,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "beefy-primitives", "bitvec", @@ -8261,7 +8265,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "frame-support", "polkadot-primitives", @@ -8273,7 +8277,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bs58", "parity-scale-codec", @@ -8285,7 +8289,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "bitflags", "bitvec", @@ -8328,7 +8332,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "async-trait", "beefy-gadget", @@ -8401,6 +8405,7 @@ dependencies = [ "sc-telemetry", "sc-transaction-pool", "serde", + "serde_json", "sp-api", "sp-authority-discovery", "sp-block-builder", @@ -8429,7 +8434,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8450,7 +8455,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8460,7 +8465,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8485,7 +8490,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "beefy-primitives", "bitvec", @@ -8547,7 +8552,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "frame-benchmarking", "frame-system", @@ -9121,7 +9126,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "env_logger 0.9.0", "jsonrpsee 0.10.1", @@ -9249,7 +9254,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9326,7 +9331,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "frame-support", "polkadot-primitives", @@ -9527,7 +9532,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "log", "sp-core", @@ -9538,7 +9543,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "futures 0.3.21", @@ -9565,7 +9570,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9588,7 +9593,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9604,7 +9609,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9621,7 +9626,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -9632,7 +9637,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "chrono", "clap 3.1.12", @@ -9647,6 +9652,7 @@ dependencies = [ "regex", "rpassword", "sc-client-api", + "sc-client-db", "sc-keystore", "sc-network", "sc-service", @@ -9670,7 +9676,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "fnv", "futures 0.3.21", @@ -9698,7 +9704,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "hash-db", "kvdb", @@ -9723,7 +9729,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "futures 0.3.21", @@ -9776,7 +9782,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "fork-tree", @@ -9819,7 +9825,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9843,7 +9849,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9856,7 +9862,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "futures 0.3.21", @@ -9881,7 +9887,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "sc-client-api", "sp-authorship", @@ -9892,7 +9898,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "lazy_static", "lru 0.7.5", @@ -9919,7 +9925,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "environmental", "parity-scale-codec", @@ -9936,7 +9942,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "log", "parity-scale-codec", @@ -9952,7 +9958,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9970,7 +9976,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "ahash", "async-trait", @@ -10010,7 +10016,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "finality-grandpa", "futures 0.3.21", @@ -10034,7 +10040,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "ansi_term", "futures 0.3.21", @@ -10051,7 +10057,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "hex", @@ -10066,7 +10072,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "asynchronous-codec 0.5.0", @@ -10115,7 +10121,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "ahash", "futures 0.3.21", @@ -10132,7 +10138,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "bytes 1.1.0", "fnv", @@ -10160,7 +10166,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "futures 0.3.21", "libp2p", @@ -10173,7 +10179,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10182,7 +10188,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "futures 0.3.21", "hash-db", @@ -10213,7 +10219,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -10239,7 +10245,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -10256,7 +10262,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "directories", @@ -10321,7 +10327,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "log", "parity-scale-codec", @@ -10335,7 +10341,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -10356,7 +10362,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "futures 0.3.21", "libc", @@ -10375,7 +10381,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "chrono", "futures 0.3.21", @@ -10393,7 +10399,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "ansi_term", "atty", @@ -10424,7 +10430,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -10435,7 +10441,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "futures 0.3.21", "futures-timer", @@ -10462,7 +10468,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "futures 0.3.21", "log", @@ -10475,7 +10481,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "futures 0.3.21", "futures-timer", @@ -10948,7 +10954,7 @@ checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5" [[package]] name = "slot-range-helper" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "enumn", "parity-scale-codec", @@ -11036,7 +11042,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "hash-db", "log", @@ -11053,7 +11059,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "blake2 0.10.2", "proc-macro-crate 1.1.3", @@ -11065,7 +11071,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", "scale-info", @@ -11078,7 +11084,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "integer-sqrt", "num-traits", @@ -11093,7 +11099,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", "scale-info", @@ -11106,7 +11112,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "parity-scale-codec", @@ -11118,7 +11124,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", "sp-api", @@ -11130,7 +11136,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "futures 0.3.21", "log", @@ -11148,7 +11154,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "futures 0.3.21", @@ -11185,7 +11191,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "merlin", @@ -11208,7 +11214,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", "scale-info", @@ -11222,7 +11228,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -11234,7 +11240,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "base58", "bitflags", @@ -11280,7 +11286,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "blake2 0.10.2", "byteorder", @@ -11294,7 +11300,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "proc-macro2", "quote", @@ -11305,7 +11311,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -11314,7 +11320,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "proc-macro2", "quote", @@ -11324,7 +11330,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "environmental", "parity-scale-codec", @@ -11335,7 +11341,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "finality-grandpa", "log", @@ -11353,7 +11359,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11367,7 +11373,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "futures 0.3.21", "hash-db", @@ -11392,7 +11398,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "lazy_static", "sp-core", @@ -11403,7 +11409,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "futures 0.3.21", @@ -11420,7 +11426,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "thiserror", "zstd", @@ -11429,7 +11435,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "log", "parity-scale-codec", @@ -11444,7 +11450,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", "scale-info", @@ -11458,7 +11464,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "sp-api", "sp-core", @@ -11468,7 +11474,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "backtrace", "lazy_static", @@ -11478,7 +11484,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "rustc-hash", "serde", @@ -11488,7 +11494,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "either", "hash256-std-hasher", @@ -11510,7 +11516,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11527,7 +11533,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "Inflector", "proc-macro-crate 1.1.3", @@ -11553,7 +11559,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "serde", "serde_json", @@ -11562,7 +11568,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", "scale-info", @@ -11576,7 +11582,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", "scale-info", @@ -11587,7 +11593,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "hash-db", "log", @@ -11609,12 +11615,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11627,7 +11633,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "log", "sp-core", @@ -11640,7 +11646,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "futures-timer", @@ -11656,7 +11662,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", "sp-std", @@ -11668,7 +11674,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "sp-api", "sp-runtime", @@ -11677,7 +11683,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "log", @@ -11693,7 +11699,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "hash-db", "memory-db", @@ -11709,7 +11715,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11726,7 +11732,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11737,7 +11743,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "impl-trait-for-tuples", "log", @@ -12018,7 +12024,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "platforms", ] @@ -12026,7 +12032,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", @@ -12048,7 +12054,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "futures-util", "hyper", @@ -12061,7 +12067,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -12084,7 +12090,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "async-trait", "futures 0.3.21", @@ -12131,7 +12137,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "ansi_term", "build-helper", @@ -12228,7 +12234,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "frame-support", "polkadot-primitives", @@ -12507,9 +12513,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.22" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03cfcb51380632a72d3111cb8d3447a8d908e577d31beeac006f836383d29a23" +checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f" dependencies = [ "lazy_static", "valuable", @@ -12528,7 +12534,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12539,7 +12545,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "expander 0.0.6", "proc-macro-crate 1.1.3", @@ -12550,12 +12556,14 @@ dependencies = [ [[package]] name = "tracing-log" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6923477a48e41c1951f1999ef8bb5a3023eb723ceadafe78ffb65dc366761e3" +checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" dependencies = [ + "ahash", "lazy_static", "log", + "lru 0.7.5", "tracing-core", ] @@ -12666,7 +12674,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6091c6ba54516b65071095b146beee796372c59f" +source = "git+https://github.com/paritytech/substrate?branch=master#6f11d9281c06c6dd980e1c2ee2d7d680cb7682bb" dependencies = [ "clap 3.1.12", "jsonrpsee 0.10.1", @@ -13288,7 +13296,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "beefy-primitives", "bitvec", @@ -13375,7 +13383,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "frame-support", "polkadot-primitives", @@ -13595,7 +13603,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13608,7 +13616,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "frame-support", "frame-system", @@ -13628,7 +13636,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.19" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "frame-benchmarking", "frame-support", @@ -13646,7 +13654,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#394446bb37e2ab53582cc92fbdecf1f254c1073d" +source = "git+https://github.com/paritytech/polkadot?branch=master#15444a6e77c784abb8f2635ec4fd0c9f7a29e138" dependencies = [ "Inflector", "proc-macro2",