From 59d7608dcc2b98f628536df448173e8c300cddbf Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Fri, 11 Aug 2023 12:23:04 +0700 Subject: [PATCH 1/9] remove try-runtime-cli --- cli/src/cli.rs | 9 +++---- cli/src/command.rs | 63 +++------------------------------------------- 2 files changed, 6 insertions(+), 66 deletions(-) diff --git a/cli/src/cli.rs b/cli/src/cli.rs index b7d884750762..78715a189217 100644 --- a/cli/src/cli.rs +++ b/cli/src/cli.rs @@ -55,12 +55,9 @@ pub enum Subcommand { /// capabilities of running a validator. HostPerfCheck, - /// Try some command against runtime state. - #[cfg(feature = "try-runtime")] - TryRuntime(try_runtime_cli::TryRuntimeCmd), - - /// Try some command against runtime state. Note: `try-runtime` feature must be enabled. - #[cfg(not(feature = "try-runtime"))] + /// Try-runtime has migrated to a standalone CLI + /// (https://github.com/paritytech/try-runtime-cli). The subcommand exists as a stub and + /// deprecation notice. It will be removed entirely some time after Janurary 2024. TryRuntime, /// Key management CLI utilities diff --git a/cli/src/command.rs b/cli/src/command.rs index ee71bb0840dc..561f9c142b99 100644 --- a/cli/src/command.rs +++ b/cli/src/command.rs @@ -532,68 +532,11 @@ pub fn run() -> Result<()> { }, Some(Subcommand::Key(cmd)) => Ok(cmd.run(&cli)?), #[cfg(feature = "try-runtime")] - Some(Subcommand::TryRuntime(cmd)) => { - use sc_service::TaskManager; - use try_runtime_cli::block_building_info::timestamp_with_babe_info; - - let runner = cli.create_runner(cmd)?; - let chain_spec = &runner.config().chain_spec; - set_default_ss58_version(chain_spec); - - let registry = &runner.config().prometheus_config.as_ref().map(|cfg| &cfg.registry); - let task_manager = TaskManager::new(runner.config().tokio_handle.clone(), *registry) - .map_err(|e| Error::SubstrateService(sc_service::Error::Prometheus(e)))?; - - ensure_dev(chain_spec).map_err(Error::Other)?; - - #[cfg(feature = "kusama-native")] - if chain_spec.is_kusama() { - return runner.async_run(|_| { - Ok(( - cmd.run::( - Some(timestamp_with_babe_info(service::kusama_runtime_constants::time::MILLISECS_PER_BLOCK)) - ) - .map_err(Error::SubstrateCli), - task_manager, - )) - }) - } - - #[cfg(feature = "westend-native")] - if chain_spec.is_westend() { - return runner.async_run(|_| { - Ok(( - cmd.run::( - Some(timestamp_with_babe_info(service::westend_runtime_constants::time::MILLISECS_PER_BLOCK)) - ) - .map_err(Error::SubstrateCli), - task_manager, - )) - }) - } - // else we assume it is polkadot. - #[cfg(feature = "polkadot-native")] - { - return runner.async_run(|_| { - Ok(( - cmd.run::( - Some(timestamp_with_babe_info(service::polkadot_runtime_constants::time::MILLISECS_PER_BLOCK)) - ) - .map_err(Error::SubstrateCli), - task_manager, - )) - }) - } - #[cfg(not(feature = "polkadot-native"))] - panic!("No runtime feature (polkadot, kusama, westend, rococo) is enabled") - }, + Some(Subcommand::TryRuntime) => Err(try_runtime_cli::DEPRECATION_NOTICE.to_owned().into()), #[cfg(not(feature = "try-runtime"))] - Some(Subcommand::TryRuntime) => Err(Error::Other( - "TryRuntime wasn't enabled when building the node. \ + Some(Subcommand::TryRuntime) => Err("TryRuntime wasn't enabled when building the node. \ You can enable it with `--features try-runtime`." - .into(), - ) - .into()), + .into()), Some(Subcommand::ChainInfo(cmd)) => { let runner = cli.create_runner(cmd)?; Ok(runner.sync_run(|config| cmd.run::(&config))?) From 4ae070e696595aa687b5e6081a39e08a64b29883 Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Fri, 11 Aug 2023 12:33:27 +0700 Subject: [PATCH 2/9] fix ci pipeline --- scripts/ci/gitlab/pipeline/check.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ci/gitlab/pipeline/check.yml b/scripts/ci/gitlab/pipeline/check.yml index a9076c9318cd..b544aaf280f0 100644 --- a/scripts/ci/gitlab/pipeline/check.yml +++ b/scripts/ci/gitlab/pipeline/check.yml @@ -62,8 +62,9 @@ check-try-runtime: - | export RUST_LOG=remote-ext=debug,runtime=debug echo "---------- Running try-runtime for ${NETWORK} ----------" + time cargo install --git https://github.com/paritytech/try-runtime-cli --branch liam-v0.1.0 time cargo build --release --locked -p "$NETWORK"-runtime - time cargo run --locked --release --features try-runtime try-runtime \ + time try-runtime \ --runtime ./target/release/wbuild/"$NETWORK"-runtime/target/wasm32-unknown-unknown/release/"$NETWORK"_runtime.wasm \ --chain=${NETWORK}-dev \ on-runtime-upgrade --checks=pre-and-post live --uri wss://${NETWORK}-try-runtime-node.parity-chains.parity.io:443 From a90003745e6a6feab2043486c47b37a282a496ac Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Fri, 11 Aug 2023 12:38:57 +0700 Subject: [PATCH 3/9] fix link --- cli/src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/cli.rs b/cli/src/cli.rs index 78715a189217..151be2448c60 100644 --- a/cli/src/cli.rs +++ b/cli/src/cli.rs @@ -56,7 +56,7 @@ pub enum Subcommand { HostPerfCheck, /// Try-runtime has migrated to a standalone CLI - /// (https://github.com/paritytech/try-runtime-cli). The subcommand exists as a stub and + /// (). The subcommand exists as a stub and /// deprecation notice. It will be removed entirely some time after Janurary 2024. TryRuntime, From f85450c0959766f7f6162ea8afd726925e772c45 Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Fri, 11 Aug 2023 17:01:54 +0700 Subject: [PATCH 4/9] remove chain var --- scripts/ci/gitlab/pipeline/check.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/ci/gitlab/pipeline/check.yml b/scripts/ci/gitlab/pipeline/check.yml index b544aaf280f0..bbda73c3e602 100644 --- a/scripts/ci/gitlab/pipeline/check.yml +++ b/scripts/ci/gitlab/pipeline/check.yml @@ -66,7 +66,6 @@ check-try-runtime: time cargo build --release --locked -p "$NETWORK"-runtime time try-runtime \ --runtime ./target/release/wbuild/"$NETWORK"-runtime/target/wasm32-unknown-unknown/release/"$NETWORK"_runtime.wasm \ - --chain=${NETWORK}-dev \ on-runtime-upgrade --checks=pre-and-post live --uri wss://${NETWORK}-try-runtime-node.parity-chains.parity.io:443 check-runtime-migration-polkadot: From 765e4e553a504f5ce119afaa0f75511f3a522ae0 Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Fri, 11 Aug 2023 17:22:44 +0700 Subject: [PATCH 5/9] build runtime with try-runtime feature --- scripts/ci/gitlab/pipeline/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/gitlab/pipeline/check.yml b/scripts/ci/gitlab/pipeline/check.yml index bbda73c3e602..82a63a898668 100644 --- a/scripts/ci/gitlab/pipeline/check.yml +++ b/scripts/ci/gitlab/pipeline/check.yml @@ -63,7 +63,7 @@ check-try-runtime: export RUST_LOG=remote-ext=debug,runtime=debug echo "---------- Running try-runtime for ${NETWORK} ----------" time cargo install --git https://github.com/paritytech/try-runtime-cli --branch liam-v0.1.0 - time cargo build --release --locked -p "$NETWORK"-runtime + time cargo build --release --locked -p "$NETWORK"-runtime --features try-runtime time try-runtime \ --runtime ./target/release/wbuild/"$NETWORK"-runtime/target/wasm32-unknown-unknown/release/"$NETWORK"_runtime.wasm \ on-runtime-upgrade --checks=pre-and-post live --uri wss://${NETWORK}-try-runtime-node.parity-chains.parity.io:443 From 4477a04d82a678ea6c2b643a985e96074b0aac75 Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Wed, 16 Aug 2023 14:56:55 +0700 Subject: [PATCH 6/9] use main branch --- scripts/ci/gitlab/pipeline/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/gitlab/pipeline/check.yml b/scripts/ci/gitlab/pipeline/check.yml index 82a63a898668..eed7d1e55374 100644 --- a/scripts/ci/gitlab/pipeline/check.yml +++ b/scripts/ci/gitlab/pipeline/check.yml @@ -62,7 +62,7 @@ check-try-runtime: - | export RUST_LOG=remote-ext=debug,runtime=debug echo "---------- Running try-runtime for ${NETWORK} ----------" - time cargo install --git https://github.com/paritytech/try-runtime-cli --branch liam-v0.1.0 + time cargo install --git https://github.com/paritytech/try-runtime-cli time cargo build --release --locked -p "$NETWORK"-runtime --features try-runtime time try-runtime \ --runtime ./target/release/wbuild/"$NETWORK"-runtime/target/wasm32-unknown-unknown/release/"$NETWORK"_runtime.wasm \ From a8cb89886e8e420c45ea15dc80dd1b3fcbc5642e Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Wed, 16 Aug 2023 16:10:52 +0700 Subject: [PATCH 7/9] pin to commit --- scripts/ci/gitlab/pipeline/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/gitlab/pipeline/check.yml b/scripts/ci/gitlab/pipeline/check.yml index eed7d1e55374..9b2ad5e73833 100644 --- a/scripts/ci/gitlab/pipeline/check.yml +++ b/scripts/ci/gitlab/pipeline/check.yml @@ -62,7 +62,7 @@ check-try-runtime: - | export RUST_LOG=remote-ext=debug,runtime=debug echo "---------- Running try-runtime for ${NETWORK} ----------" - time cargo install --git https://github.com/paritytech/try-runtime-cli + time cargo install --locked --git https://github.com/paritytech/try-runtime-cli --rev a93c9b5abe5d31a4cf1936204f7e5c489184b521 time cargo build --release --locked -p "$NETWORK"-runtime --features try-runtime time try-runtime \ --runtime ./target/release/wbuild/"$NETWORK"-runtime/target/wasm32-unknown-unknown/release/"$NETWORK"_runtime.wasm \ From 19049cec808e78b17ca4985deed08bce8bcf864f Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Wed, 16 Aug 2023 17:08:04 +0700 Subject: [PATCH 8/9] fix build --- cli/src/command.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/src/command.rs b/cli/src/command.rs index 71ca0764d830..0fbeafb99a07 100644 --- a/cli/src/command.rs +++ b/cli/src/command.rs @@ -535,6 +535,7 @@ pub fn run() -> Result<()> { #[cfg(not(feature = "try-runtime"))] Some(Subcommand::TryRuntime) => Err("TryRuntime wasn't enabled when building the node. \ You can enable it with `--features try-runtime`." + .to_owned() .into()), Some(Subcommand::ChainInfo(cmd)) => { let runner = cli.create_runner(cmd)?; From 81d637207853cac37d65221cf9569a81f9348074 Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Thu, 17 Aug 2023 05:23:54 +0000 Subject: [PATCH 9/9] update lockfile for {"substrate"} --- Cargo.lock | 368 ++++++++++++++++++++++++++--------------------------- 1 file changed, 184 insertions(+), 184 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 50e6128a7f0a..9073a8fb6297 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -778,7 +778,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "hash-db", "log", @@ -2831,7 +2831,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", ] @@ -2854,7 +2854,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-support", "frame-support-procedural", @@ -2879,7 +2879,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "Inflector", "array-bytes", @@ -2927,7 +2927,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2938,7 +2938,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2955,7 +2955,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-support", "frame-system", @@ -2984,7 +2984,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-recursion", "futures", @@ -3005,7 +3005,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "aquamarine", "bitflags 1.3.2", @@ -3043,7 +3043,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "Inflector", "cfg-expr", @@ -3061,7 +3061,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3073,7 +3073,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "proc-macro2", "quote", @@ -3083,7 +3083,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-executive", @@ -3110,7 +3110,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-support", "frame-system", @@ -3123,7 +3123,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "cfg-if", "frame-support", @@ -3142,7 +3142,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -3157,7 +3157,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", "sp-api", @@ -3166,7 +3166,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-support", "parity-scale-codec", @@ -3341,7 +3341,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "chrono", "frame-election-provider-support", @@ -5345,7 +5345,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "futures", "log", @@ -5364,7 +5364,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "anyhow", "jsonrpsee", @@ -5901,7 +5901,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -5916,7 +5916,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-support", "frame-system", @@ -5932,7 +5932,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-support", "frame-system", @@ -5946,7 +5946,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -5970,7 +5970,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "aquamarine", "docify", @@ -5992,7 +5992,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-election-provider-support", "frame-remote-externalities", @@ -6011,7 +6011,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6026,7 +6026,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-support", "frame-system", @@ -6045,7 +6045,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -6069,7 +6069,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6087,7 +6087,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6106,7 +6106,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6123,7 +6123,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6140,7 +6140,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6158,7 +6158,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6181,7 +6181,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6194,7 +6194,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6213,7 +6213,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "docify", "frame-benchmarking", @@ -6232,7 +6232,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6255,7 +6255,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6271,7 +6271,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6291,7 +6291,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6308,7 +6308,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6325,7 +6325,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6344,7 +6344,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6361,7 +6361,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6377,7 +6377,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6393,7 +6393,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-support", "frame-system", @@ -6412,7 +6412,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6432,7 +6432,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -6443,7 +6443,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-support", "frame-system", @@ -6460,7 +6460,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6484,7 +6484,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6501,7 +6501,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6516,7 +6516,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6534,7 +6534,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6549,7 +6549,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6568,7 +6568,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "docify", "frame-benchmarking", @@ -6586,7 +6586,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-support", "frame-system", @@ -6607,7 +6607,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6623,7 +6623,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6641,7 +6641,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6664,7 +6664,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6675,7 +6675,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "log", "sp-arithmetic", @@ -6684,7 +6684,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", "sp-api", @@ -6693,7 +6693,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6710,7 +6710,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6725,7 +6725,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6743,7 +6743,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6762,7 +6762,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-support", "frame-system", @@ -6778,7 +6778,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6794,7 +6794,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6806,7 +6806,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6823,7 +6823,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6838,7 +6838,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6854,7 +6854,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -6869,7 +6869,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-benchmarking", "frame-support", @@ -10031,7 +10031,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "log", "sp-core", @@ -10042,7 +10042,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "futures", @@ -10070,7 +10070,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "futures", "futures-timer", @@ -10093,7 +10093,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -10108,7 +10108,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -10127,7 +10127,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10138,7 +10138,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "array-bytes", "chrono", @@ -10177,7 +10177,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "fnv", "futures", @@ -10203,7 +10203,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "hash-db", "kvdb", @@ -10229,7 +10229,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "futures", @@ -10254,7 +10254,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "fork-tree", @@ -10290,7 +10290,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "futures", "jsonrpsee", @@ -10312,7 +10312,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "array-bytes", "async-channel", @@ -10346,7 +10346,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "futures", "jsonrpsee", @@ -10365,7 +10365,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "fork-tree", "parity-scale-codec", @@ -10378,7 +10378,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "ahash 0.8.3", "array-bytes", @@ -10419,7 +10419,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "finality-grandpa", "futures", @@ -10439,7 +10439,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "futures", @@ -10462,7 +10462,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -10484,7 +10484,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -10496,7 +10496,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "anyhow", "cfg-if", @@ -10513,7 +10513,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "ansi_term", "futures", @@ -10529,7 +10529,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -10543,7 +10543,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "array-bytes", "async-channel", @@ -10584,7 +10584,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-channel", "cid", @@ -10604,7 +10604,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -10621,7 +10621,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "ahash 0.8.3", "futures", @@ -10639,7 +10639,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "array-bytes", "async-channel", @@ -10660,7 +10660,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "array-bytes", "async-channel", @@ -10694,7 +10694,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "array-bytes", "futures", @@ -10712,7 +10712,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "array-bytes", "bytes", @@ -10746,7 +10746,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10755,7 +10755,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "futures", "jsonrpsee", @@ -10786,7 +10786,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10805,7 +10805,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "http", "jsonrpsee", @@ -10820,7 +10820,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "array-bytes", "futures", @@ -10848,7 +10848,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "directories", @@ -10912,7 +10912,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "log", "parity-scale-codec", @@ -10923,7 +10923,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "clap 4.3.19", "fs4", @@ -10937,7 +10937,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10956,7 +10956,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "futures", "libc", @@ -10975,7 +10975,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "chrono", "futures", @@ -10994,7 +10994,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "ansi_term", "atty", @@ -11023,7 +11023,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11034,7 +11034,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "futures", @@ -11060,7 +11060,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "futures", @@ -11076,7 +11076,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-channel", "futures", @@ -11660,7 +11660,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "hash-db", "log", @@ -11681,7 +11681,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "Inflector", "blake2", @@ -11695,7 +11695,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -11708,7 +11708,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "integer-sqrt", "num-traits", @@ -11722,7 +11722,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -11735,7 +11735,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "sp-api", "sp-inherents", @@ -11746,7 +11746,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "futures", "log", @@ -11764,7 +11764,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "futures", @@ -11779,7 +11779,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "parity-scale-codec", @@ -11796,7 +11796,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "parity-scale-codec", @@ -11815,7 +11815,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "lazy_static", "parity-scale-codec", @@ -11834,7 +11834,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "finality-grandpa", "log", @@ -11852,7 +11852,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -11864,7 +11864,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "array-bytes", "arrayvec 0.7.4", @@ -11911,7 +11911,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "blake2b_simd", "byteorder", @@ -11924,7 +11924,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "quote", "sp-core-hashing", @@ -11934,7 +11934,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11943,7 +11943,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "proc-macro2", "quote", @@ -11953,7 +11953,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "environmental", "parity-scale-codec", @@ -11964,7 +11964,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "serde_json", "sp-api", @@ -11975,7 +11975,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11989,7 +11989,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "bytes", "ed25519", @@ -12014,7 +12014,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "lazy_static", "sp-core", @@ -12025,7 +12025,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -12037,7 +12037,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "thiserror", "zstd 0.12.4", @@ -12046,7 +12046,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -12057,7 +12057,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -12075,7 +12075,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -12089,7 +12089,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "sp-api", "sp-core", @@ -12099,7 +12099,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "backtrace", "lazy_static", @@ -12109,7 +12109,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "rustc-hash", "serde", @@ -12119,7 +12119,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "either", "hash256-std-hasher", @@ -12141,7 +12141,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -12159,7 +12159,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "Inflector", "proc-macro-crate", @@ -12171,7 +12171,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -12186,7 +12186,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -12200,7 +12200,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "hash-db", "log", @@ -12221,7 +12221,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "aes-gcm 0.10.2", "curve25519-dalek 3.2.0", @@ -12245,12 +12245,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "impl-serde", "parity-scale-codec", @@ -12263,7 +12263,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "parity-scale-codec", @@ -12276,7 +12276,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", "sp-std", @@ -12288,7 +12288,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "sp-api", "sp-runtime", @@ -12297,7 +12297,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "parity-scale-codec", @@ -12312,7 +12312,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "ahash 0.8.3", "hash-db", @@ -12335,7 +12335,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "impl-serde", "parity-scale-codec", @@ -12352,7 +12352,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -12363,7 +12363,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -12376,7 +12376,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "parity-scale-codec", "scale-info", @@ -12617,12 +12617,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -12641,7 +12641,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "hyper", "log", @@ -12653,7 +12653,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "jsonrpsee", @@ -12666,7 +12666,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12683,7 +12683,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "array-bytes", "async-trait", @@ -12709,7 +12709,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12719,7 +12719,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12730,7 +12730,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "ansi_term", "build-helper", @@ -13638,7 +13638,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e53cf32cce1f1f9416e09183b2b0dbdb0a50367d" +source = "git+https://github.com/paritytech/substrate?branch=master#aa70241b841b96a3cfd3580a3d378a6d3d01b1ec" dependencies = [ "async-trait", "clap 4.3.19",