From f52815c20bbde88dbb89565815edb5d701aa7290 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Thu, 6 Jul 2023 11:05:16 +0200 Subject: [PATCH 1/7] Companion for removal of execution strategies https://github.com/paritytech/substrate/pull/14387 --- Cargo.lock | 990 +++++++++++++----- Cargo.toml | 354 +++++++ client/consensus/aura/src/unstable_reimpl.rs | 7 +- .../src/lib.rs | 22 +- .../src/validate_block/tests.rs | 5 +- parachain-template/node/Cargo.toml | 2 + parachain-template/node/src/service.rs | 26 +- test/service/benches/validate_block.rs | 3 +- .../service/benches/validate_block_glutton.rs | 3 +- test/service/src/lib.rs | 8 - 10 files changed, 1114 insertions(+), 306 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 095a39a4216..be4790f4797 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -871,7 +871,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "hash-db", "log", @@ -4179,7 +4179,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", ] @@ -4202,7 +4202,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "frame-support-procedural", @@ -4227,7 +4227,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "Inflector", "array-bytes 4.2.0", @@ -4275,7 +4275,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -4286,7 +4286,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -4303,7 +4303,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "frame-system", @@ -4332,7 +4332,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-recursion", "futures", @@ -4353,7 +4353,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "bitflags", "environmental", @@ -4387,7 +4387,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "Inflector", "cfg-expr", @@ -4405,7 +4405,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -4417,7 +4417,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "proc-macro2", "quote", @@ -4427,7 +4427,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "cfg-if", "frame-support", @@ -4446,7 +4446,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4461,7 +4461,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "sp-api", @@ -4470,7 +4470,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "parity-scale-codec", @@ -5618,7 +5618,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bitvec", "frame-benchmarking", @@ -5718,7 +5718,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "frame-support", "polkadot-primitives", @@ -5762,6 +5762,17 @@ dependencies = [ "smallvec", ] +[[package]] +name = "landlock" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520baa32708c4e957d2fc3a186bc5bd8d26637c33137f399ddfc202adb240068" +dependencies = [ + "enumflags2", + "libc", + "thiserror", +] + [[package]] name = "lazy_static" version = "1.4.0" @@ -6646,7 +6657,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "futures", "log", @@ -6665,7 +6676,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "anyhow", "jsonrpsee", @@ -7169,7 +7180,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "array-bytes 4.2.0", "frame-benchmarking", @@ -7190,7 +7201,7 @@ dependencies = [ [[package]] name = "pallet-asset-conversion" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7208,7 +7219,7 @@ dependencies = [ [[package]] name = "pallet-asset-conversion-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "frame-system", @@ -7222,7 +7233,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7240,7 +7251,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7255,7 +7266,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "frame-system", @@ -7271,7 +7282,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "frame-system", @@ -7287,7 +7298,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "frame-system", @@ -7301,7 +7312,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7325,7 +7336,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7345,7 +7356,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7360,7 +7371,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "frame-system", @@ -7379,7 +7390,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "array-bytes 4.2.0", "binary-merkle-tree", @@ -7403,7 +7414,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7509,7 +7520,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7553,7 +7564,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7570,7 +7581,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "bitflags", "environmental", @@ -7599,7 +7610,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "24.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "bitflags", "parity-scale-codec", @@ -7612,7 +7623,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "proc-macro2", "quote", @@ -7622,7 +7633,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7639,7 +7650,7 @@ dependencies = [ [[package]] name = "pallet-core-fellowship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7657,7 +7668,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7675,7 +7686,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7698,7 +7709,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7711,7 +7722,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7729,7 +7740,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "docify", "frame-benchmarking", @@ -7748,7 +7759,7 @@ dependencies = [ [[package]] name = "pallet-glutton" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "blake2", "frame-benchmarking", @@ -7766,7 +7777,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7789,7 +7800,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7805,7 +7816,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7825,7 +7836,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7842,7 +7853,7 @@ dependencies = [ [[package]] name = "pallet-insecure-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "frame-system", @@ -7856,7 +7867,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7873,7 +7884,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7892,7 +7903,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7909,7 +7920,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7925,7 +7936,7 @@ dependencies = [ [[package]] name = "pallet-nft-fractionalization" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7942,7 +7953,7 @@ dependencies = [ [[package]] name = "pallet-nfts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7960,7 +7971,7 @@ dependencies = [ [[package]] name = "pallet-nfts-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "pallet-nfts", @@ -7971,7 +7982,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7987,7 +7998,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "frame-system", @@ -8004,7 +8015,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8024,7 +8035,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -8035,7 +8046,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "frame-system", @@ -8052,7 +8063,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8091,7 +8102,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8108,7 +8119,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8123,7 +8134,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8141,7 +8152,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8156,7 +8167,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "assert_matches", "frame-benchmarking", @@ -8175,7 +8186,7 @@ dependencies = [ [[package]] name = "pallet-salary" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8193,7 +8204,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8210,7 +8221,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "frame-system", @@ -8231,7 +8242,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8247,7 +8258,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8266,7 +8277,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8289,7 +8300,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8300,7 +8311,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "log", "sp-arithmetic", @@ -8309,7 +8320,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "sp-api", @@ -8318,7 +8329,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8335,7 +8346,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8350,7 +8361,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8368,7 +8379,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8387,7 +8398,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-support", "frame-system", @@ -8403,7 +8414,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8419,7 +8430,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8431,7 +8442,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8448,7 +8459,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8463,7 +8474,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8479,7 +8490,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8494,7 +8505,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-benchmarking", "frame-support", @@ -8509,7 +8520,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8530,7 +8541,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "frame-benchmarking", "frame-support", @@ -8572,6 +8583,7 @@ dependencies = [ "cumulus-relay-chain-interface", "frame-benchmarking", "frame-benchmarking-cli", + "futures", "jsonrpsee", "log", "pallet-transaction-payment-rpc", @@ -8587,6 +8599,7 @@ dependencies = [ "sc-executor", "sc-network", "sc-network-sync", + "sc-offchain", "sc-rpc", "sc-service", "sc-sysinfo", @@ -9143,7 +9156,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "futures", "futures-timer", @@ -9161,7 +9174,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "futures", "futures-timer", @@ -9176,7 +9189,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "derive_more", "fatality", @@ -9199,7 +9212,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "fatality", "futures", @@ -9220,7 +9233,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "clap", "frame-benchmarking-cli", @@ -9249,7 +9262,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "always-assert", "bitvec", @@ -9271,7 +9284,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "parity-scale-codec", "scale-info", @@ -9283,7 +9296,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "derive_more", "fatality", @@ -9308,7 +9321,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -9322,7 +9335,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "futures", "futures-timer", @@ -9342,7 +9355,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "always-assert", "async-trait", @@ -9365,7 +9378,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "futures", "parity-scale-codec", @@ -9383,7 +9396,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bitvec", "derive_more", @@ -9412,7 +9425,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bitvec", "futures", @@ -9433,7 +9446,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bitvec", "fatality", @@ -9452,7 +9465,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9467,7 +9480,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "async-trait", "futures", @@ -9487,7 +9500,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "futures", "polkadot-node-metrics", @@ -9502,7 +9515,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "futures", "futures-timer", @@ -9519,7 +9532,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "fatality", "futures", @@ -9538,7 +9551,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "async-trait", "futures", @@ -9555,7 +9568,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bitvec", "fatality", @@ -9573,7 +9586,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "always-assert", "futures", @@ -9604,7 +9617,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "futures", "polkadot-node-primitives", @@ -9620,10 +9633,11 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "cpu-time", "futures", + "landlock", "libc", "parity-scale-codec", "polkadot-parachain", @@ -9643,7 +9657,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-execute-worker" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "cpu-time", "futures", @@ -9663,7 +9677,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "futures", "libc", @@ -9686,7 +9700,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "futures", "lru 0.9.0", @@ -9701,7 +9715,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "lazy_static", "log", @@ -9719,7 +9733,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bs58", "futures", @@ -9738,7 +9752,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "async-channel", "async-trait", @@ -9761,7 +9775,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bounded-vec", "futures", @@ -9783,7 +9797,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9793,7 +9807,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "async-trait", "futures", @@ -9811,7 +9825,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "async-trait", "derive_more", @@ -9823,6 +9837,7 @@ dependencies = [ "polkadot-primitives", "polkadot-statement-table", "sc-network", + "sc-transaction-pool-api", "smallvec", "sp-api", "sp-authority-discovery", @@ -9834,7 +9849,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "async-trait", "derive_more", @@ -9867,7 +9882,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "async-trait", "futures", @@ -9890,7 +9905,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bounded-collections", "derive_more", @@ -9989,7 +10004,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -10007,7 +10022,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -10033,7 +10048,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -10065,7 +10080,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bitvec", "frame-benchmarking", @@ -10160,7 +10175,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bitvec", "frame-benchmarking", @@ -10206,7 +10221,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "frame-support", "polkadot-primitives", @@ -10220,7 +10235,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bs58", "parity-scale-codec", @@ -10232,7 +10247,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bitflags", "bitvec", @@ -10277,7 +10292,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "async-trait", "frame-benchmarking", @@ -10359,6 +10374,7 @@ dependencies = [ "sc-sysinfo", "sc-telemetry", "sc-transaction-pool", + "sc-transaction-pool-api", "serde", "serde_json", "sp-api", @@ -10394,7 +10410,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -10416,7 +10432,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10426,7 +10442,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "frame-benchmarking", "parity-scale-codec", @@ -10454,7 +10470,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bitvec", "frame-election-provider-support", @@ -10515,7 +10531,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "frame-system", "futures", @@ -11294,7 +11310,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -11381,7 +11397,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "frame-support", "polkadot-primitives", @@ -11650,7 +11666,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "log", "sp-core", @@ -11661,7 +11677,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "futures", @@ -11689,7 +11705,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "futures", "futures-timer", @@ -11712,7 +11728,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11727,7 +11743,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11746,7 +11762,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11757,7 +11773,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "array-bytes 4.2.0", "chrono", @@ -11796,7 +11812,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "fnv", "futures", @@ -11812,7 +11828,6 @@ dependencies = [ "sp-core", "sp-database", "sp-externalities", - "sp-keystore", "sp-runtime", "sp-state-machine", "sp-statement-store", @@ -11823,7 +11838,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "hash-db", "kvdb", @@ -11849,7 +11864,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "futures", @@ -11874,7 +11889,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "futures", @@ -11903,7 +11918,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "fork-tree", @@ -11919,6 +11934,7 @@ dependencies = [ "sc-consensus-epochs", "sc-consensus-slots", "sc-telemetry", + "sc-transaction-pool-api", "scale-info", "sp-api", "sp-application-crypto", @@ -11938,13 +11954,14 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "futures", "jsonrpsee", "sc-consensus-babe", "sc-consensus-epochs", "sc-rpc-api", + "sc-transaction-pool-api", "serde", "sp-api", "sp-application-crypto", @@ -11960,7 +11977,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "array-bytes 4.2.0", "async-channel", @@ -11994,7 +12011,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "futures", "jsonrpsee", @@ -12013,7 +12030,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "fork-tree", "parity-scale-codec", @@ -12026,7 +12043,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "ahash 0.8.2", "array-bytes 4.2.0", @@ -12048,6 +12065,7 @@ dependencies = [ "sc-network-common", "sc-network-gossip", "sc-telemetry", + "sc-transaction-pool-api", "sc-utils", "serde_json", "sp-api", @@ -12066,7 +12084,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "finality-grandpa", "futures", @@ -12086,7 +12104,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "futures", @@ -12109,7 +12127,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "lru 0.10.0", "parity-scale-codec", @@ -12131,7 +12149,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -12143,7 +12161,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "anyhow", "cfg-if", @@ -12160,7 +12178,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "ansi_term", "futures", @@ -12176,7 +12194,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "array-bytes 4.2.0", "parking_lot 0.12.1", @@ -12190,7 +12208,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "array-bytes 4.2.0", "async-channel", @@ -12231,7 +12249,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-channel", "cid", @@ -12251,7 +12269,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "bitflags", @@ -12268,7 +12286,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "ahash 0.8.2", "futures", @@ -12286,7 +12304,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "array-bytes 4.2.0", "async-channel", @@ -12307,7 +12325,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "array-bytes 4.2.0", "async-channel", @@ -12341,7 +12359,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "array-bytes 4.2.0", "futures", @@ -12359,7 +12377,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "array-bytes 4.2.0", "bytes", @@ -12369,6 +12387,7 @@ dependencies = [ "hyper", "hyper-rustls 0.24.0", "libp2p", + "log", "num_cpus", "once_cell", "parity-scale-codec", @@ -12376,9 +12395,13 @@ dependencies = [ "rand 0.8.5", "sc-client-api", "sc-network", + "sc-network-common", + "sc-transaction-pool-api", "sc-utils", "sp-api", "sp-core", + "sp-externalities", + "sp-keystore", "sp-offchain", "sp-runtime", "threadpool", @@ -12388,7 +12411,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -12397,7 +12420,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "futures", "jsonrpsee", @@ -12428,7 +12451,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12447,7 +12470,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "http", "jsonrpsee", @@ -12462,7 +12485,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "array-bytes 4.2.0", "futures", @@ -12488,7 +12511,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "directories", @@ -12515,7 +12538,6 @@ dependencies = [ "sc-network-light", "sc-network-sync", "sc-network-transactions", - "sc-offchain", "sc-rpc", "sc-rpc-server", "sc-rpc-spec-v2", @@ -12553,7 +12575,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "log", "parity-scale-codec", @@ -12564,7 +12586,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "clap", "fs4", @@ -12578,7 +12600,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12597,7 +12619,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "futures", "libc", @@ -12616,7 +12638,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "chrono", "futures", @@ -12635,7 +12657,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "ansi_term", "atty", @@ -12664,7 +12686,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12675,7 +12697,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "futures", @@ -12701,7 +12723,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "futures", @@ -12717,7 +12739,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-channel", "futures", @@ -13198,7 +13220,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "enumn", "parity-scale-codec", @@ -13275,7 +13297,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "hash-db", "log", @@ -13283,6 +13305,7 @@ dependencies = [ "scale-info", "sp-api-proc-macro", "sp-core", + "sp-externalities", "sp-metadata-ir", "sp-runtime", "sp-state-machine", @@ -13295,7 +13318,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "Inflector", "blake2", @@ -13309,7 +13332,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "scale-info", @@ -13322,7 +13345,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "integer-sqrt", "num-traits", @@ -13336,7 +13359,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "scale-info", @@ -13349,7 +13372,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "sp-api", "sp-inherents", @@ -13360,7 +13383,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "futures", "log", @@ -13378,7 +13401,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "futures", @@ -13393,7 +13416,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "parity-scale-codec", @@ -13410,7 +13433,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "parity-scale-codec", @@ -13429,7 +13452,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13448,7 +13471,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "finality-grandpa", "log", @@ -13466,7 +13489,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "scale-info", @@ -13478,7 +13501,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "array-bytes 4.2.0", "bitflags", @@ -13516,13 +13539,14 @@ dependencies = [ "substrate-bip39", "thiserror", "tiny-bip39", + "tracing", "zeroize", ] [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "blake2b_simd", "byteorder", @@ -13535,7 +13559,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "quote", "sp-core-hashing", @@ -13545,7 +13569,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13554,7 +13578,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "proc-macro2", "quote", @@ -13564,7 +13588,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "environmental", "parity-scale-codec", @@ -13575,7 +13599,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13589,7 +13613,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "bytes", "ed25519", @@ -13614,7 +13638,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "lazy_static", "sp-core", @@ -13625,7 +13649,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13637,7 +13661,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "thiserror", "zstd 0.12.3+zstd.1.5.2", @@ -13646,7 +13670,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13657,7 +13681,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13675,7 +13699,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "scale-info", @@ -13689,7 +13713,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "sp-api", "sp-core", @@ -13699,7 +13723,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "backtrace", "lazy_static", @@ -13709,7 +13733,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "rustc-hash", "serde", @@ -13719,7 +13743,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "either", "hash256-std-hasher", @@ -13741,7 +13765,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13759,7 +13783,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "Inflector", "proc-macro-crate", @@ -13771,12 +13795,13 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "scale-info", "sp-api", "sp-core", + "sp-keystore", "sp-runtime", "sp-staking", "sp-std", @@ -13785,7 +13810,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "scale-info", @@ -13798,7 +13823,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "hash-db", "log", @@ -13819,7 +13844,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "scale-info", @@ -13836,12 +13861,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13854,7 +13879,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "parity-scale-codec", @@ -13867,7 +13892,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "sp-std", @@ -13879,7 +13904,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "sp-api", "sp-runtime", @@ -13888,7 +13913,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "parity-scale-codec", @@ -13903,7 +13928,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "ahash 0.8.2", "hash-db", @@ -13926,7 +13951,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13943,7 +13968,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13954,7 +13979,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -13967,7 +13992,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "parity-scale-codec", "scale-info", @@ -14165,12 +14190,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14189,7 +14214,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "hyper", "log", @@ -14201,7 +14226,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "jsonrpsee", @@ -14214,7 +14239,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14231,7 +14256,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -14257,7 +14282,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "futures", "substrate-test-utils-derive", @@ -14267,7 +14292,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -14278,7 +14303,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "ansi_term", "build-helper", @@ -14407,7 +14432,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "frame-support", "polkadot-primitives", @@ -14809,7 +14834,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -14820,7 +14845,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -14950,7 +14975,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#29ef4775d673178d6674864299a5341abb78be75" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" dependencies = [ "async-trait", "clap", @@ -15866,7 +15891,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bitvec", "frame-benchmarking", @@ -15959,7 +15984,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "frame-support", "polkadot-primitives", @@ -16350,7 +16375,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "bounded-collections", "derivative", @@ -16366,7 +16391,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "frame-support", "frame-system", @@ -16420,7 +16445,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "environmental", "frame-benchmarking", @@ -16440,7 +16465,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#d124d9932302fd003668ce02feff75e1de7768d9" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" dependencies = [ "Inflector", "proc-macro2", @@ -16540,3 +16565,438 @@ dependencies = [ "libc", "pkg-config", ] + +[[patch.unused]] +name = "erasure_coding_fuzzer" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "polkadot" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "polkadot-primitives-test-helpers" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "polkadot-test-malus" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "polkadot-voter-bags" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "remote-ext-tests-bags-list" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "staking-miner" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "test-parachain-adder" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "test-parachain-adder-collator" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "test-parachain-halt" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "test-parachain-undying" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "test-parachain-undying-collator" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "test-parachains" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "xcm-executor-integration-tests" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "xcm-simulator" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "xcm-simulator-example" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "xcm-simulator-fuzzer" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "zombienet-backchannel" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "chain-spec-builder" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "frame-benchmarking-pallet-pov" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "frame-election-solution-type-fuzzer" +version = "2.0.0-alpha.5" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "frame-support-test" +version = "3.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "frame-support-test-compile-pass" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "frame-support-test-pallet" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "generate-bags" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "kitchensink-runtime" +version = "3.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "node-bench" +version = "0.9.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "node-cli" +version = "3.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "node-executor" +version = "3.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "node-inspect" +version = "0.9.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "node-primitives" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "node-rpc" +version = "3.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "node-runtime-generate-bags" +version = "3.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "node-template" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "node-template-release" +version = "3.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "node-template-runtime" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "node-testing" +version = "3.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-asset-rate" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-atomic-swap" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-bags-list-fuzzer" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-bags-list-remote-tests" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-default-config-example" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-dev-mode" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-election-provider-e2e-test" +version = "1.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-example-basic" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-example-kitchensink" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-example-offchain-worker" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-example-split" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-examples" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-lottery" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-nicks" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-node-authorization" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-nomination-pools-fuzzer" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-nomination-pools-test-staking" +version = "1.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-remark" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-root-offences" +version = "1.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-root-testing" +version = "1.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-scored-pool" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-statement" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-template" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "pallet-transaction-storage" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sc-consensus-manual-seal" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sc-consensus-pow" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sc-network-statement" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sc-network-test" +version = "0.8.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sc-runtime-test" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sc-service-test" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sc-statement-store" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sp-api-test" +version = "2.0.1" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sp-application-crypto-test" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sp-arithmetic-fuzzer" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sp-consensus-pow" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sp-crypto-ec-utils" +version = "0.4.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sp-genesis-builder" +version = "0.1.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sp-npos-elections-fuzzer" +version = "2.0.0-alpha.5" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sp-runtime-interface-test" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sp-runtime-interface-test-wasm" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sp-runtime-interface-test-wasm-deprecated" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "sp-test-primitives" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "subkey" +version = "3.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "substrate-cli-test-utils" +version = "0.1.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "substrate-frame-cli" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "substrate-frame-rpc-support" +version = "3.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "substrate-test-runtime" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "substrate-test-runtime-client" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "substrate-test-runtime-transaction-pool" +version = "2.0.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "substrate-test-utils-test-crate" +version = "0.1.0" +source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" diff --git a/Cargo.toml b/Cargo.toml index a376d06f806..3d24152dc17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -74,3 +74,357 @@ opt-level = 3 inherits = "release" lto = true codegen-units = 1 + +[patch."https://github.com/paritytech/substrate"] +node-template = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-benchmarking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-support = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-support-procedural = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-support-procedural-tools = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-support-procedural-tools-derive = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-api-proc-macro = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-core = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-core-hashing = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-debug-derive = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-externalities = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-std = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-storage = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-runtime-interface = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-runtime-interface-proc-macro = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-tracing = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-wasm-interface = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-io = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-keystore = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-state-machine = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-panic-handler = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-trie = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-runtime = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-application-crypto = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-arithmetic = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-weights = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-test-runtime-client = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-block-builder = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-client-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-executor = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-executor-common = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-allocator = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-executor-wasmtime = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-runtime-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-wasm-builder = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-version = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-core-hashing-proc-macro = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-version-proc-macro = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-tracing = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-tracing-proc-macro = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-blockchain = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-consensus = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-inherents = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-test-primitives = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-database = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-test-runtime = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-executive = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-system = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-try-runtime = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-balances = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-transaction-payment = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-babe = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-authorship = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-session = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-timestamp = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-timestamp = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-session = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-staking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-consensus-babe = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-consensus-slots = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-election-provider-support = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-election-provider-solution-type = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-npos-elections = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-test-utils = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-test-utils-derive = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-service = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-chain-spec = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-chain-spec-derive = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-network = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-network-common = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-consensus = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-utils = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-consensus-grandpa = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-network-light = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-network-sync = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +fork-tree = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-telemetry = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-client-db = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-state-db = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +kitchensink-runtime = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-benchmarking-pallet-pov = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-system-benchmarking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +node-primitives = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-alliance = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-collective = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-identity = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-asset-conversion = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-assets = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-asset-conversion-tx-payment = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-asset-rate = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-asset-tx-payment = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-authority-discovery = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-authority-discovery = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-bags-list = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-bounties = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-treasury = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-utility = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-root-testing = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-child-bounties = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-contracts = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-contracts-primitives = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-contracts-proc-macro = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-insecure-randomness-collective-flip = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-proxy = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-conviction-voting = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-scheduler = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-preimage = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-core-fellowship = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-democracy = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-elections-phragmen = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-fast-unstake = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-staking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-staking-reward-curve = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-glutton = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-grandpa = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-offences = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-keyring = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-im-online = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-indices = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-lottery = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-support-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-support-test-pallet = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-membership = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-message-queue = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-mmr = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-mmr-primitives = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-multisig = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-nft-fractionalization = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-nfts = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-nfts-runtime-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-nis = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-nomination-pools = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-nomination-pools-runtime-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-ranked-collective = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-recovery = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-referenda = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-remark = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-salary = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-session-benchmarking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-society = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-staking-runtime-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-state-trie-migration = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-remote-externalities = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-rpc-client = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-rpc-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-transaction-pool-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-statement = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-statement-store = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-sudo = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-tips = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-transaction-storage = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-transaction-storage-proof = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-uniques = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-vesting = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-whitelist = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-block-builder = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-offchain = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-transaction-pool = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-informant = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-keystore = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-network-bitswap = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-network-transactions = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-transaction-pool = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-test-runtime-transaction-pool = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-rpc-server = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-rpc-spec-v2 = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-sysinfo = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-consensus-aura = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-test-client = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-offchain = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-runtime-interface-test-wasm = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-metadata-ir = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-benchmarking-cli = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-cli = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +node-template-runtime = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-aura = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-template = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-basic-authorship = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-proposer-metrics = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-consensus-aura = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-consensus-slots = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-network-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-consensus-grandpa = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-network-gossip = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-statement-store = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +try-runtime-cli = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-cli-test-utils = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-build-script-utils = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +node-bench = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +node-testing = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +node-executor = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +node-cli = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +node-inspect = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +node-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +mmr-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-consensus-babe = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-consensus-epochs = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-consensus-babe-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-consensus-grandpa-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-sync-state-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-authority-discovery = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-network-statement = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-storage-monitor = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-service-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-frame-cli = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +chain-spec-builder = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +subkey = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-consensus-beefy = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-consensus-beefy = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-consensus-beefy-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-consensus-manual-seal = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sc-consensus-pow = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-consensus-pow = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +mmr-gadget = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-atomic-swap = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-bags-list-fuzzer = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-bags-list-remote-tests = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-beefy = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-beefy-mmr = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +binary-merkle-tree = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-election-provider-e2e-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-election-solution-type-fuzzer = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-examples = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-default-config-example = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-dev-mode = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-example-basic = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-example-kitchensink = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-example-offchain-worker = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-example-split = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-nicks = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-node-authorization = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-nomination-pools-fuzzer = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-nomination-pools-test-staking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-scored-pool = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-staking-reward-fn = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +pallet-root-offences = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +frame-support-test-compile-pass = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-api-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-application-crypto-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-arithmetic-fuzzer = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-crypto-ec-utils = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-genesis-builder = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-npos-elections-fuzzer = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-runtime-interface-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +sp-runtime-interface-test-wasm-deprecated = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +node-template-release = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-test-utils-test-crate = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +substrate-frame-rpc-support = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +generate-bags = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } +node-runtime-generate-bags = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } + +[patch."https://github.com/paritytech/polkadot"] +polkadot-cli = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-pvf-execute-worker = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +tracing-gum = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +tracing-gum-proc-macro = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-jaeger = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-primitives = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-parachain = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-core-primitives = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-primitives = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-erasure-coding = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-pvf-common = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-pvf-prepare-worker = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-metrics = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-test-service = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-subsystem = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-subsystem-types = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-network-protocol = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-statement-table = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-overseer = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-primitives-test-helpers = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-rpc = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-runtime-common = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-runtime-parachains = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-runtime-metrics = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +xcm = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +xcm-procedural = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +xcm-executor = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +slot-range-helper = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-service = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +kusama-runtime = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +kusama-runtime-constants = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +pallet-xcm = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +xcm-builder = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-test-runtime = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +test-runtime-constants = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +pallet-xcm-benchmarks = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-approval-distribution = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-subsystem-util = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-availability-bitfield-distribution = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-availability-distribution = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-availability-recovery = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-collator-protocol = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-dispute-distribution = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-gossip-support = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-network-bridge = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-collation-generation = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-approval-voting = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-av-store = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-backing = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-bitfield-signing = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-candidate-validation = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-pvf = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +test-parachain-adder = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +test-parachain-halt = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-chain-api = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-chain-selection = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-dispute-coordinator = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-parachains-inherent = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-provisioner = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-pvf-checker = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-node-core-runtime-api = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-runtime = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-runtime-constants = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-statement-distribution = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +rococo-runtime = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +rococo-runtime-constants = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +westend-runtime = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +westend-runtime-constants = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-test-client = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-performance-test = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +erasure_coding_fuzzer = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +xcm-executor-integration-tests = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +xcm-simulator = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +xcm-simulator-example = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +xcm-simulator-fuzzer = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-test-malus = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +zombienet-backchannel = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +test-parachains = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +test-parachain-adder-collator = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +test-parachain-undying = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +test-parachain-undying-collator = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +staking-miner = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +remote-ext-tests-bags-list = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot-voter-bags = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } +polkadot = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } diff --git a/client/consensus/aura/src/unstable_reimpl.rs b/client/consensus/aura/src/unstable_reimpl.rs index f9602a363bf..6da62cffa79 100644 --- a/client/consensus/aura/src/unstable_reimpl.rs +++ b/client/consensus/aura/src/unstable_reimpl.rs @@ -459,12 +459,7 @@ where let inherent_res = self .client .runtime_api() - .check_inherents_with_context( - parent_hash, - block_params.origin.into(), - block, - inherent_data, - ) + .check_inherents(parent_hash, block, inherent_data) .map_err(|e| format!("Unable to check block inherents {:?}", e))?; if !inherent_res.ok() { diff --git a/client/relay-chain-inprocess-interface/src/lib.rs b/client/relay-chain-inprocess-interface/src/lib.rs index cc522ba4d3a..4597852cc23 100644 --- a/client/relay-chain-inprocess-interface/src/lib.rs +++ b/client/relay-chain-inprocess-interface/src/lib.rs @@ -72,11 +72,7 @@ impl RelayChainInterface for RelayChainInProcessInterface { para_id: ParaId, relay_parent: PHash, ) -> RelayChainResult> { - Ok(self.full_client.runtime_api().dmq_contents_with_context( - relay_parent, - sp_core::ExecutionContext::Importing, - para_id, - )?) + Ok(self.full_client.runtime_api().dmq_contents(relay_parent, para_id)?) } async fn retrieve_all_inbound_hrmp_channel_contents( @@ -84,11 +80,10 @@ impl RelayChainInterface for RelayChainInProcessInterface { para_id: ParaId, relay_parent: PHash, ) -> RelayChainResult>> { - Ok(self.full_client.runtime_api().inbound_hrmp_channels_contents_with_context( - relay_parent, - sp_core::ExecutionContext::Importing, - para_id, - )?) + Ok(self + .full_client + .runtime_api() + .inbound_hrmp_channels_contents(relay_parent, para_id)?) } async fn header(&self, block_id: BlockId) -> RelayChainResult> { @@ -339,8 +334,8 @@ mod tests { use polkadot_primitives::Block as PBlock; use polkadot_test_client::{ construct_transfer_extrinsic, BlockBuilderExt, Client, ClientBlockImportExt, - DefaultTestClientBuilderExt, ExecutionStrategy, InitPolkadotBlockBuilder, - TestClientBuilder, TestClientBuilderExt, + DefaultTestClientBuilderExt, InitPolkadotBlockBuilder, TestClientBuilder, + TestClientBuilderExt, }; use sp_consensus::{BlockOrigin, SyncOracle}; use sp_runtime::traits::Block as BlockT; @@ -361,8 +356,7 @@ mod tests { } fn build_client_backend_and_block() -> (Arc, PBlock, RelayChainInProcessInterface) { - let builder = - TestClientBuilder::new().set_execution_strategy(ExecutionStrategy::NativeWhenPossible); + let builder = TestClientBuilder::new(); let backend = builder.backend(); let client = Arc::new(builder.build()); diff --git a/pallets/parachain-system/src/validate_block/tests.rs b/pallets/parachain-system/src/validate_block/tests.rs index 4801b62e7b5..eab3ed6d213 100644 --- a/pallets/parachain-system/src/validate_block/tests.rs +++ b/pallets/parachain-system/src/validate_block/tests.rs @@ -56,10 +56,7 @@ fn call_validate_block( } fn create_test_client() -> (Client, Header) { - let client = TestClientBuilder::new() - // NOTE: this allows easier debugging - .set_execution_strategy(sc_client_api::ExecutionStrategy::NativeWhenPossible) - .build(); + let client = TestClientBuilder::new().build(); let genesis_header = client .header(client.chain_info().genesis_hash) diff --git a/parachain-template/node/Cargo.toml b/parachain-template/node/Cargo.toml index c590faacf60..db1d3fd8224 100644 --- a/parachain-template/node/Cargo.toml +++ b/parachain-template/node/Cargo.toml @@ -15,6 +15,7 @@ log = "0.4.19" codec = { package = "parity-scale-codec", version = "3.0.0" } serde = { version = "1.0.166", features = ["derive"] } jsonrpsee = { version = "0.16.2", features = ["server"] } +futures = "0.3.28" # Local parachain-template-runtime = { path = "../runtime" } @@ -27,6 +28,7 @@ sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/parachain-template/node/src/service.rs b/parachain-template/node/src/service.rs index fb311a48b48..9ad3c1ad3cc 100644 --- a/parachain-template/node/src/service.rs +++ b/parachain-template/node/src/service.rs @@ -21,6 +21,7 @@ use cumulus_relay_chain_interface::RelayChainInterface; // Substrate Imports use frame_benchmarking_cli::SUBSTRATE_REFERENCE_HARDWARE; +use sc_client_api::Backend; use sc_consensus::ImportQueue; use sc_executor::{ HeapAllocStrategy, NativeElseWasmExecutor, WasmExecutor, DEFAULT_HEAP_ALLOC_STRATEGY, @@ -29,6 +30,7 @@ use sc_network::NetworkBlock; use sc_network_sync::SyncingService; use sc_service::{Configuration, PartialComponents, TFullBackend, TFullClient, TaskManager}; use sc_telemetry::{Telemetry, TelemetryHandle, TelemetryWorker, TelemetryWorkerHandle}; +use sc_transaction_pool_api::OffchainTransactionPoolFactory; use sp_keystore::KeystorePtr; use substrate_prometheus_endpoint::Registry; @@ -194,11 +196,25 @@ async fn start_node_impl( .await?; if parachain_config.offchain_worker.enabled { - sc_service::build_offchain_workers( - ¶chain_config, - task_manager.spawn_handle(), - client.clone(), - network.clone(), + use futures::FutureExt; + + task_manager.spawn_handle().spawn( + "offchain-workers-runner", + "offchain-work", + sc_offchain::OffchainWorkers::new(sc_offchain::OffchainWorkerOptions { + runtime_api_provider: client.clone(), + keystore: Some(params.keystore_container.keystore()), + offchain_db: backend.offchain_storage(), + transaction_pool: Some(OffchainTransactionPoolFactory::new( + transaction_pool.clone(), + )), + network_provider: network.clone(), + is_validator: parachain_config.role.is_authority(), + enable_http_requests: false, + custom_extensions: move |_| vec![], + }) + .run(client.clone(), task_manager.spawn_handle()) + .boxed(), ); } diff --git a/test/service/benches/validate_block.rs b/test/service/benches/validate_block.rs index 3f4c39e5aa9..f3b4d0b1214 100644 --- a/test/service/benches/validate_block.rs +++ b/test/service/benches/validate_block.rs @@ -79,8 +79,7 @@ fn benchmark_block_validation(c: &mut Criterion) { // Each account should only be included in one transfer. let (src_accounts, dst_accounts, account_ids) = utils::create_benchmark_accounts(); - let mut test_client_builder = TestClientBuilder::with_default_backend() - .set_execution_strategy(sc_client_api::ExecutionStrategy::AlwaysWasm); + let mut test_client_builder = TestClientBuilder::with_default_backend(); let genesis_init = test_client_builder.genesis_init_mut(); *genesis_init = cumulus_test_client::GenesisParameters { endowed_accounts: account_ids }; let client = test_client_builder.build_with_native_executor(None).0; diff --git a/test/service/benches/validate_block_glutton.rs b/test/service/benches/validate_block_glutton.rs index 5f5fda07168..0e049d8665d 100644 --- a/test/service/benches/validate_block_glutton.rs +++ b/test/service/benches/validate_block_glutton.rs @@ -61,8 +61,7 @@ fn benchmark_block_validation(c: &mut Criterion) { let runtime = tokio::runtime::Runtime::new().expect("creating tokio runtime doesn't fail; qed"); let endowed_accounts = vec![AccountId::from(Alice.public())]; - let mut test_client_builder = TestClientBuilder::with_default_backend() - .set_execution_strategy(sc_client_api::ExecutionStrategy::NativeElseWasm); + let mut test_client_builder = TestClientBuilder::with_default_backend(); let genesis_init = test_client_builder.genesis_init_mut(); *genesis_init = cumulus_test_client::GenesisParameters { endowed_accounts }; diff --git a/test/service/src/lib.rs b/test/service/src/lib.rs index e45ba47f6eb..d597997c276 100644 --- a/test/service/src/lib.rs +++ b/test/service/src/lib.rs @@ -55,7 +55,6 @@ use polkadot_node_subsystem::{errors::RecoveryError, messages::AvailabilityRecov use polkadot_overseer::Handle as OverseerHandle; use polkadot_primitives::{CollatorPair, Hash as PHash, PersistedValidationData}; use polkadot_service::ProvideRuntimeApi; -use sc_client_api::execution_extensions::ExecutionStrategies; use sc_consensus::ImportQueue; use sc_network::{ config::{FullNetworkConfiguration, TransportConfig}, @@ -758,13 +757,6 @@ pub fn node_config( wasm_method: WasmExecutionMethod::Compiled { instantiation_strategy: sc_executor_wasmtime::InstantiationStrategy::PoolingCopyOnWrite, }, - execution_strategies: ExecutionStrategies { - syncing: sc_client_api::ExecutionStrategy::AlwaysWasm, - importing: sc_client_api::ExecutionStrategy::AlwaysWasm, - block_construction: sc_client_api::ExecutionStrategy::AlwaysWasm, - offchain_worker: sc_client_api::ExecutionStrategy::AlwaysWasm, - other: sc_client_api::ExecutionStrategy::AlwaysWasm, - }, rpc_addr: None, rpc_max_connections: Default::default(), rpc_cors: None, From 165f15f6581627234f6efdf0f22cb5e681b36d99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Fri, 7 Jul 2023 12:31:40 +0200 Subject: [PATCH 2/7] Update Cargo.lock --- Cargo.lock | 180 ++++++++++++++++++++++++++--------------------------- 1 file changed, 90 insertions(+), 90 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be4790f4797..b3d99cf42b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16566,96 +16566,6 @@ dependencies = [ "pkg-config", ] -[[patch.unused]] -name = "erasure_coding_fuzzer" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "polkadot" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "polkadot-primitives-test-helpers" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "polkadot-test-malus" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "polkadot-voter-bags" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "remote-ext-tests-bags-list" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "staking-miner" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "test-parachain-adder" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "test-parachain-adder-collator" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "test-parachain-halt" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "test-parachain-undying" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "test-parachain-undying-collator" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "test-parachains" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "xcm-executor-integration-tests" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "xcm-simulator" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "xcm-simulator-example" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "xcm-simulator-fuzzer" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "zombienet-backchannel" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - [[patch.unused]] name = "chain-spec-builder" version = "2.0.0" @@ -17000,3 +16910,93 @@ source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-executio name = "substrate-test-utils-test-crate" version = "0.1.0" source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" + +[[patch.unused]] +name = "erasure_coding_fuzzer" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "polkadot" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "polkadot-primitives-test-helpers" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "polkadot-test-malus" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "polkadot-voter-bags" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "remote-ext-tests-bags-list" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "staking-miner" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "test-parachain-adder" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "test-parachain-adder-collator" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "test-parachain-halt" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "test-parachain-undying" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "test-parachain-undying-collator" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "test-parachains" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "xcm-executor-integration-tests" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "xcm-simulator" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "xcm-simulator-example" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "xcm-simulator-fuzzer" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" + +[[patch.unused]] +name = "zombienet-backchannel" +version = "0.9.43" +source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" From 3e4e3ddb74388414ac7dabb9666882573c91940b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Mon, 10 Jul 2023 23:25:32 +0200 Subject: [PATCH 3/7] Remove patches --- Cargo.lock | 1058 +++++++++++++++------------------------------------- Cargo.toml | 353 ------------------ 2 files changed, 298 insertions(+), 1113 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b3d99cf42b8..43cecb59dad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -246,12 +246,6 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" -[[package]] -name = "array-bytes" -version = "4.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f52f63c5c1316a16a4b35eaac8b76a98248961a533f061684cb2a7cb0eafb6c6" - [[package]] name = "array-bytes" version = "6.1.0" @@ -871,7 +865,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "hash-db", "log", @@ -1799,13 +1793,13 @@ dependencies = [ [[package]] name = "cid" -version = "0.8.6" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6ed9c8b2d17acb8110c46f1da5bf4a696d745e1474a16db0cd2b49cd0249bf2" +checksum = "b9b68e3193982cd54187d71afdb2a271ad4cf8af157858e9cb911b91321de143" dependencies = [ "core2", "multibase", - "multihash 0.16.2", + "multihash", "serde", "unsigned-varint", ] @@ -3054,7 +3048,7 @@ dependencies = [ name = "cumulus-relay-chain-minimal-node" version = "0.1.0" dependencies = [ - "array-bytes 6.1.0", + "array-bytes", "async-trait", "cumulus-primitives-core", "cumulus-relay-chain-interface", @@ -4179,7 +4173,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", ] @@ -4202,7 +4196,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "frame-support-procedural", @@ -4227,10 +4221,10 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "Inflector", - "array-bytes 4.2.0", + "array-bytes", "chrono", "clap", "comfy-table", @@ -4275,7 +4269,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -4286,7 +4280,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -4303,7 +4297,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "frame-system", @@ -4332,7 +4326,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-recursion", "futures", @@ -4353,7 +4347,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "bitflags", "environmental", @@ -4387,7 +4381,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "Inflector", "cfg-expr", @@ -4405,7 +4399,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -4417,7 +4411,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "proc-macro2", "quote", @@ -4427,7 +4421,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "cfg-if", "frame-support", @@ -4446,7 +4440,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -4461,7 +4455,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", "sp-api", @@ -4470,7 +4464,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "parity-scale-codec", @@ -5618,7 +5612,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bitvec", "frame-benchmarking", @@ -5718,7 +5712,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "frame-support", "polkadot-primitives", @@ -5885,7 +5879,7 @@ dependencies = [ "libp2p-identity", "log", "multiaddr", - "multihash 0.17.0", + "multihash", "multistream-select", "once_cell", "parking_lot 0.12.1", @@ -5945,7 +5939,7 @@ dependencies = [ "ed25519-dalek", "log", "multiaddr", - "multihash 0.17.0", + "multihash", "quick-protobuf", "rand 0.8.5", "sha2 0.10.2", @@ -6192,7 +6186,7 @@ dependencies = [ "libp2p-identity", "libp2p-noise", "log", - "multihash 0.17.0", + "multihash", "quick-protobuf", "quick-protobuf-codec", "rand 0.8.5", @@ -6657,7 +6651,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "futures", "log", @@ -6676,7 +6670,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "anyhow", "jsonrpsee", @@ -6727,7 +6721,7 @@ dependencies = [ "data-encoding", "log", "multibase", - "multihash 0.17.0", + "multihash", "percent-encoding", "serde", "static_assertions", @@ -6748,9 +6742,9 @@ dependencies = [ [[package]] name = "multihash" -version = "0.16.2" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3db354f401db558759dfc1e568d010a5d4146f4d3f637be1275ec4a3cf09689" +checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40" dependencies = [ "blake2b_simd", "blake2s_simd", @@ -6763,19 +6757,6 @@ dependencies = [ "unsigned-varint", ] -[[package]] -name = "multihash" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40" -dependencies = [ - "core2", - "digest 0.10.6", - "multihash-derive", - "sha2 0.10.2", - "unsigned-varint", -] - [[package]] name = "multihash-derive" version = "0.8.0" @@ -7180,9 +7161,9 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "array-bytes 4.2.0", + "array-bytes", "frame-benchmarking", "frame-support", "frame-system", @@ -7201,7 +7182,7 @@ dependencies = [ [[package]] name = "pallet-asset-conversion" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7219,7 +7200,7 @@ dependencies = [ [[package]] name = "pallet-asset-conversion-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "frame-system", @@ -7233,7 +7214,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7251,7 +7232,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7266,7 +7247,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "frame-system", @@ -7282,7 +7263,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "frame-system", @@ -7298,7 +7279,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "frame-system", @@ -7312,7 +7293,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7336,7 +7317,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7356,7 +7337,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7371,7 +7352,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "frame-system", @@ -7390,9 +7371,9 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "array-bytes 4.2.0", + "array-bytes", "binary-merkle-tree", "frame-support", "frame-system", @@ -7414,7 +7395,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7520,7 +7501,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7564,7 +7545,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7581,7 +7562,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "bitflags", "environmental", @@ -7610,7 +7591,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "24.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "bitflags", "parity-scale-codec", @@ -7623,7 +7604,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "proc-macro2", "quote", @@ -7633,7 +7614,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7650,7 +7631,7 @@ dependencies = [ [[package]] name = "pallet-core-fellowship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7668,7 +7649,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7686,7 +7667,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7709,7 +7690,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7722,7 +7703,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7734,13 +7715,14 @@ dependencies = [ "sp-io", "sp-npos-elections", "sp-runtime", + "sp-staking", "sp-std", ] [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "docify", "frame-benchmarking", @@ -7759,7 +7741,7 @@ dependencies = [ [[package]] name = "pallet-glutton" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "blake2", "frame-benchmarking", @@ -7777,7 +7759,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7800,7 +7782,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7816,7 +7798,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7836,7 +7818,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7853,7 +7835,7 @@ dependencies = [ [[package]] name = "pallet-insecure-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "frame-system", @@ -7867,7 +7849,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7884,7 +7866,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7903,7 +7885,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7920,7 +7902,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7936,7 +7918,7 @@ dependencies = [ [[package]] name = "pallet-nft-fractionalization" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7953,7 +7935,7 @@ dependencies = [ [[package]] name = "pallet-nfts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7971,7 +7953,7 @@ dependencies = [ [[package]] name = "pallet-nfts-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "pallet-nfts", @@ -7982,7 +7964,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7998,7 +7980,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "frame-system", @@ -8015,7 +7997,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8035,7 +8017,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -8046,7 +8028,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "frame-system", @@ -8063,7 +8045,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8102,7 +8084,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8119,7 +8101,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8134,7 +8116,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8152,7 +8134,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8167,7 +8149,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "assert_matches", "frame-benchmarking", @@ -8186,7 +8168,7 @@ dependencies = [ [[package]] name = "pallet-salary" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8204,7 +8186,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8221,7 +8203,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "frame-system", @@ -8242,7 +8224,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8258,7 +8240,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8277,7 +8259,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8300,7 +8282,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8311,7 +8293,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "log", "sp-arithmetic", @@ -8320,7 +8302,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", "sp-api", @@ -8329,7 +8311,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8346,7 +8328,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8361,7 +8343,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8379,7 +8361,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8398,7 +8380,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-support", "frame-system", @@ -8414,7 +8396,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8430,7 +8412,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8442,7 +8424,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8459,7 +8441,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8474,7 +8456,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8490,7 +8472,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8505,7 +8487,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8520,7 +8502,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8541,7 +8523,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "frame-benchmarking", "frame-support", @@ -9156,7 +9138,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "futures", "futures-timer", @@ -9174,7 +9156,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "futures", "futures-timer", @@ -9189,7 +9171,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "derive_more", "fatality", @@ -9212,7 +9194,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "fatality", "futures", @@ -9233,7 +9215,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "clap", "frame-benchmarking-cli", @@ -9262,7 +9244,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "always-assert", "bitvec", @@ -9284,7 +9266,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "parity-scale-codec", "scale-info", @@ -9296,7 +9278,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "derive_more", "fatality", @@ -9321,7 +9303,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -9335,7 +9317,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "futures", "futures-timer", @@ -9355,7 +9337,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "always-assert", "async-trait", @@ -9378,7 +9360,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "futures", "parity-scale-codec", @@ -9396,7 +9378,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bitvec", "derive_more", @@ -9425,7 +9407,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bitvec", "futures", @@ -9433,6 +9415,7 @@ dependencies = [ "kvdb", "parity-scale-codec", "polkadot-erasure-coding", + "polkadot-node-jaeger", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", @@ -9446,7 +9429,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bitvec", "fatality", @@ -9465,7 +9448,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9480,7 +9463,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "async-trait", "futures", @@ -9500,7 +9483,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "futures", "polkadot-node-metrics", @@ -9515,7 +9498,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "futures", "futures-timer", @@ -9532,7 +9515,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "fatality", "futures", @@ -9551,7 +9534,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "async-trait", "futures", @@ -9568,7 +9551,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bitvec", "fatality", @@ -9586,7 +9569,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "always-assert", "futures", @@ -9617,7 +9600,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "futures", "polkadot-node-primitives", @@ -9633,7 +9616,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "cpu-time", "futures", @@ -9657,7 +9640,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-execute-worker" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "cpu-time", "futures", @@ -9677,7 +9660,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "futures", "libc", @@ -9700,7 +9683,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "futures", "lru 0.9.0", @@ -9715,7 +9698,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "lazy_static", "log", @@ -9733,7 +9716,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bs58", "futures", @@ -9752,7 +9735,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "async-channel", "async-trait", @@ -9775,7 +9758,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bounded-vec", "futures", @@ -9797,7 +9780,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9807,7 +9790,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "async-trait", "futures", @@ -9825,7 +9808,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "async-trait", "derive_more", @@ -9837,7 +9820,6 @@ dependencies = [ "polkadot-primitives", "polkadot-statement-table", "sc-network", - "sc-transaction-pool-api", "smallvec", "sp-api", "sp-authority-discovery", @@ -9849,7 +9831,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "async-trait", "derive_more", @@ -9882,7 +9864,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "async-trait", "futures", @@ -9905,7 +9887,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bounded-collections", "derive_more", @@ -10004,7 +9986,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -10022,7 +10004,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -10048,7 +10030,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -10080,7 +10062,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bitvec", "frame-benchmarking", @@ -10175,7 +10157,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bitvec", "frame-benchmarking", @@ -10221,7 +10203,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "frame-support", "polkadot-primitives", @@ -10235,7 +10217,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bs58", "parity-scale-codec", @@ -10247,7 +10229,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bitflags", "bitvec", @@ -10292,7 +10274,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "async-trait", "frame-benchmarking", @@ -10374,7 +10356,6 @@ dependencies = [ "sc-sysinfo", "sc-telemetry", "sc-transaction-pool", - "sc-transaction-pool-api", "serde", "serde_json", "sp-api", @@ -10410,7 +10391,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -10432,7 +10413,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10442,7 +10423,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "frame-benchmarking", "parity-scale-codec", @@ -10470,7 +10451,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bitvec", "frame-election-provider-support", @@ -10531,7 +10512,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "frame-system", "futures", @@ -11310,7 +11291,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -11397,7 +11378,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "frame-support", "polkadot-primitives", @@ -11666,7 +11647,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "log", "sp-core", @@ -11677,7 +11658,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "futures", @@ -11685,7 +11666,7 @@ dependencies = [ "ip_network", "libp2p", "log", - "multihash 0.17.0", + "multihash", "parity-scale-codec", "prost", "prost-build", @@ -11705,7 +11686,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "futures", "futures-timer", @@ -11728,7 +11709,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11743,7 +11724,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11762,7 +11743,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11773,9 +11754,9 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "array-bytes 4.2.0", + "array-bytes", "chrono", "clap", "fdlimit", @@ -11812,7 +11793,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "fnv", "futures", @@ -11828,6 +11809,7 @@ dependencies = [ "sp-core", "sp-database", "sp-externalities", + "sp-keystore", "sp-runtime", "sp-state-machine", "sp-statement-store", @@ -11838,7 +11820,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "hash-db", "kvdb", @@ -11864,7 +11846,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "futures", @@ -11889,7 +11871,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "futures", @@ -11918,7 +11900,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "fork-tree", @@ -11934,7 +11916,6 @@ dependencies = [ "sc-consensus-epochs", "sc-consensus-slots", "sc-telemetry", - "sc-transaction-pool-api", "scale-info", "sp-api", "sp-application-crypto", @@ -11954,14 +11935,13 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "futures", "jsonrpsee", "sc-consensus-babe", "sc-consensus-epochs", "sc-rpc-api", - "sc-transaction-pool-api", "serde", "sp-api", "sp-application-crypto", @@ -11977,9 +11957,9 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "array-bytes 4.2.0", + "array-bytes", "async-channel", "async-trait", "fnv", @@ -12011,7 +11991,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "futures", "jsonrpsee", @@ -12030,7 +12010,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "fork-tree", "parity-scale-codec", @@ -12043,10 +12023,10 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "ahash 0.8.2", - "array-bytes 4.2.0", + "array-bytes", "async-trait", "dyn-clone", "finality-grandpa", @@ -12065,7 +12045,6 @@ dependencies = [ "sc-network-common", "sc-network-gossip", "sc-telemetry", - "sc-transaction-pool-api", "sc-utils", "serde_json", "sp-api", @@ -12084,7 +12063,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "finality-grandpa", "futures", @@ -12104,7 +12083,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "futures", @@ -12127,13 +12106,13 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "lru 0.10.0", "parity-scale-codec", "parking_lot 0.12.1", "sc-executor-common", "sc-executor-wasmtime", + "schnellru", "sp-api", "sp-core", "sp-externalities", @@ -12149,7 +12128,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -12161,7 +12140,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "anyhow", "cfg-if", @@ -12178,7 +12157,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "ansi_term", "futures", @@ -12194,9 +12173,9 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "array-bytes 4.2.0", + "array-bytes", "parking_lot 0.12.1", "serde_json", "sp-application-crypto", @@ -12208,9 +12187,9 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "array-bytes 4.2.0", + "array-bytes", "async-channel", "async-trait", "asynchronous-codec", @@ -12249,7 +12228,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-channel", "cid", @@ -12269,7 +12248,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "bitflags", @@ -12286,16 +12265,16 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "ahash 0.8.2", "futures", "futures-timer", "libp2p", "log", - "lru 0.10.0", "sc-network", "sc-network-common", + "schnellru", "sp-runtime", "substrate-prometheus-endpoint", "tracing", @@ -12304,9 +12283,9 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "array-bytes 4.2.0", + "array-bytes", "async-channel", "futures", "libp2p-identity", @@ -12325,9 +12304,9 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "array-bytes 4.2.0", + "array-bytes", "async-channel", "async-trait", "fork-tree", @@ -12335,7 +12314,6 @@ dependencies = [ "futures-timer", "libp2p", "log", - "lru 0.10.0", "mockall", "parity-scale-codec", "prost", @@ -12345,6 +12323,7 @@ dependencies = [ "sc-network", "sc-network-common", "sc-utils", + "schnellru", "smallvec", "sp-arithmetic", "sp-blockchain", @@ -12359,9 +12338,9 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "array-bytes 4.2.0", + "array-bytes", "futures", "libp2p", "log", @@ -12377,9 +12356,9 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "array-bytes 4.2.0", + "array-bytes", "bytes", "fnv", "futures", @@ -12387,7 +12366,6 @@ dependencies = [ "hyper", "hyper-rustls 0.24.0", "libp2p", - "log", "num_cpus", "once_cell", "parity-scale-codec", @@ -12395,13 +12373,9 @@ dependencies = [ "rand 0.8.5", "sc-client-api", "sc-network", - "sc-network-common", - "sc-transaction-pool-api", "sc-utils", "sp-api", "sp-core", - "sp-externalities", - "sp-keystore", "sp-offchain", "sp-runtime", "threadpool", @@ -12411,7 +12385,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -12420,7 +12394,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "futures", "jsonrpsee", @@ -12451,7 +12425,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12470,7 +12444,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "http", "jsonrpsee", @@ -12485,9 +12459,9 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "array-bytes 4.2.0", + "array-bytes", "futures", "futures-util", "hex", @@ -12511,7 +12485,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "directories", @@ -12538,6 +12512,7 @@ dependencies = [ "sc-network-light", "sc-network-sync", "sc-network-transactions", + "sc-offchain", "sc-rpc", "sc-rpc-server", "sc-rpc-spec-v2", @@ -12575,7 +12550,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "log", "parity-scale-codec", @@ -12586,7 +12561,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "clap", "fs4", @@ -12600,7 +12575,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12619,7 +12594,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "futures", "libc", @@ -12638,7 +12613,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "chrono", "futures", @@ -12657,7 +12632,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "ansi_term", "atty", @@ -12686,7 +12661,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12697,7 +12672,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "futures", @@ -12723,7 +12698,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "futures", @@ -12739,7 +12714,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-channel", "futures", @@ -13220,7 +13195,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "enumn", "parity-scale-codec", @@ -13297,7 +13272,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "hash-db", "log", @@ -13305,7 +13280,6 @@ dependencies = [ "scale-info", "sp-api-proc-macro", "sp-core", - "sp-externalities", "sp-metadata-ir", "sp-runtime", "sp-state-machine", @@ -13318,7 +13292,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "Inflector", "blake2", @@ -13332,7 +13306,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", "scale-info", @@ -13345,7 +13319,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "integer-sqrt", "num-traits", @@ -13359,7 +13333,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", "scale-info", @@ -13372,7 +13346,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "sp-api", "sp-inherents", @@ -13383,13 +13357,13 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "futures", "log", - "lru 0.10.0", "parity-scale-codec", "parking_lot 0.12.1", + "schnellru", "sp-api", "sp-consensus", "sp-database", @@ -13401,7 +13375,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "futures", @@ -13416,7 +13390,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "parity-scale-codec", @@ -13433,7 +13407,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "parity-scale-codec", @@ -13452,7 +13426,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13471,7 +13445,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "finality-grandpa", "log", @@ -13489,7 +13463,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", "scale-info", @@ -13501,9 +13475,9 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "array-bytes 4.2.0", + "array-bytes", "bitflags", "blake2", "bounded-collections", @@ -13539,14 +13513,13 @@ dependencies = [ "substrate-bip39", "thiserror", "tiny-bip39", - "tracing", "zeroize", ] [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "blake2b_simd", "byteorder", @@ -13559,7 +13532,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "quote", "sp-core-hashing", @@ -13569,7 +13542,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13578,7 +13551,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "proc-macro2", "quote", @@ -13588,7 +13561,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "environmental", "parity-scale-codec", @@ -13599,7 +13572,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13613,7 +13586,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "bytes", "ed25519", @@ -13638,7 +13611,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "lazy_static", "sp-core", @@ -13649,7 +13622,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13661,7 +13634,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "thiserror", "zstd 0.12.3+zstd.1.5.2", @@ -13670,7 +13643,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13681,7 +13654,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13699,7 +13672,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", "scale-info", @@ -13713,7 +13686,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "sp-api", "sp-core", @@ -13723,7 +13696,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "backtrace", "lazy_static", @@ -13733,7 +13706,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "rustc-hash", "serde", @@ -13743,7 +13716,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "either", "hash256-std-hasher", @@ -13765,7 +13738,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13783,7 +13756,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "Inflector", "proc-macro-crate", @@ -13795,13 +13768,12 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", "scale-info", "sp-api", "sp-core", - "sp-keystore", "sp-runtime", "sp-staking", "sp-std", @@ -13810,8 +13782,9 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ + "impl-trait-for-tuples", "parity-scale-codec", "scale-info", "serde", @@ -13823,7 +13796,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "hash-db", "log", @@ -13844,7 +13817,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", "scale-info", @@ -13861,12 +13834,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13879,7 +13852,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "parity-scale-codec", @@ -13892,7 +13865,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", "sp-std", @@ -13904,7 +13877,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "sp-api", "sp-runtime", @@ -13913,7 +13886,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "parity-scale-codec", @@ -13928,7 +13901,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "ahash 0.8.2", "hash-db", @@ -13951,7 +13924,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13968,7 +13941,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13979,7 +13952,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -13992,7 +13965,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "parity-scale-codec", "scale-info", @@ -14190,12 +14163,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14214,7 +14187,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "hyper", "log", @@ -14226,7 +14199,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "jsonrpsee", @@ -14239,7 +14212,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14256,9 +14229,9 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ - "array-bytes 4.2.0", + "array-bytes", "async-trait", "futures", "parity-scale-codec", @@ -14282,7 +14255,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "futures", "substrate-test-utils-derive", @@ -14292,7 +14265,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -14303,7 +14276,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "ansi_term", "build-helper", @@ -14432,7 +14405,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "frame-support", "polkadot-primitives", @@ -14834,7 +14807,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -14845,7 +14818,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -14975,7 +14948,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" +source = "git+https://github.com/paritytech/substrate?branch=master#2b76b44e6f7e948c8dffb7ff72d349f0702f5acf" dependencies = [ "async-trait", "clap", @@ -15891,7 +15864,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bitvec", "frame-benchmarking", @@ -15984,7 +15957,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "frame-support", "polkadot-primitives", @@ -16375,7 +16348,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "bounded-collections", "derivative", @@ -16391,7 +16364,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "frame-support", "frame-system", @@ -16445,7 +16418,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "environmental", "frame-benchmarking", @@ -16465,7 +16438,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" +source = "git+https://github.com/paritytech/polkadot?branch=master#596d9232d5591462bc34845eb919be2dfd1d0f8d" dependencies = [ "Inflector", "proc-macro2", @@ -16565,438 +16538,3 @@ dependencies = [ "libc", "pkg-config", ] - -[[patch.unused]] -name = "chain-spec-builder" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "frame-benchmarking-pallet-pov" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "frame-election-solution-type-fuzzer" -version = "2.0.0-alpha.5" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "frame-support-test" -version = "3.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "frame-support-test-compile-pass" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "frame-support-test-pallet" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "generate-bags" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "kitchensink-runtime" -version = "3.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "node-bench" -version = "0.9.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "node-cli" -version = "3.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "node-executor" -version = "3.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "node-inspect" -version = "0.9.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "node-primitives" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "node-rpc" -version = "3.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "node-runtime-generate-bags" -version = "3.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "node-template" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "node-template-release" -version = "3.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "node-template-runtime" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "node-testing" -version = "3.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-asset-rate" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-atomic-swap" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-bags-list-fuzzer" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-bags-list-remote-tests" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-default-config-example" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-dev-mode" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-election-provider-e2e-test" -version = "1.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-example-basic" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-example-kitchensink" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-example-offchain-worker" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-example-split" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-examples" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-lottery" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-nicks" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-node-authorization" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-nomination-pools-fuzzer" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-nomination-pools-test-staking" -version = "1.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-remark" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-root-offences" -version = "1.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-root-testing" -version = "1.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-scored-pool" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-statement" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-template" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "pallet-transaction-storage" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sc-consensus-manual-seal" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sc-consensus-pow" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sc-network-statement" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sc-network-test" -version = "0.8.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sc-runtime-test" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sc-service-test" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sc-statement-store" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sp-api-test" -version = "2.0.1" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sp-application-crypto-test" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sp-arithmetic-fuzzer" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sp-consensus-pow" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sp-crypto-ec-utils" -version = "0.4.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sp-genesis-builder" -version = "0.1.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sp-npos-elections-fuzzer" -version = "2.0.0-alpha.5" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sp-runtime-interface-test" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sp-runtime-interface-test-wasm" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sp-runtime-interface-test-wasm-deprecated" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "sp-test-primitives" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "subkey" -version = "3.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "substrate-cli-test-utils" -version = "0.1.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "substrate-frame-cli" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "substrate-frame-rpc-support" -version = "3.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "substrate-test-runtime" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "substrate-test-runtime-client" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "substrate-test-runtime-transaction-pool" -version = "2.0.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "substrate-test-utils-test-crate" -version = "0.1.0" -source = "git+https://github.com/paritytech//substrate.git?branch=bkchr-execution-strategies-remove#0c5c43dfc4c016b3083d244fe73d1e05c2f0a74a" - -[[patch.unused]] -name = "erasure_coding_fuzzer" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "polkadot" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "polkadot-primitives-test-helpers" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "polkadot-test-malus" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "polkadot-voter-bags" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "remote-ext-tests-bags-list" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "staking-miner" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "test-parachain-adder" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "test-parachain-adder-collator" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "test-parachain-halt" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "test-parachain-undying" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "test-parachain-undying-collator" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "test-parachains" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "xcm-executor-integration-tests" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "xcm-simulator" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "xcm-simulator-example" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "xcm-simulator-fuzzer" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" - -[[patch.unused]] -name = "zombienet-backchannel" -version = "0.9.43" -source = "git+https://github.com/paritytech//polkadot.git?branch=bkchr-remote-execution-strategies#f023522abe8114dc9c6a4af99df5ee61733b8c57" diff --git a/Cargo.toml b/Cargo.toml index 3d24152dc17..b0899a03bc2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,356 +75,3 @@ inherits = "release" lto = true codegen-units = 1 -[patch."https://github.com/paritytech/substrate"] -node-template = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-benchmarking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-support = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-support-procedural = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-support-procedural-tools = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-support-procedural-tools-derive = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-api-proc-macro = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-core = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-core-hashing = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-debug-derive = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-externalities = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-std = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-storage = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-runtime-interface = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-runtime-interface-proc-macro = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-tracing = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-wasm-interface = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-io = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-keystore = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-state-machine = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-panic-handler = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-trie = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-runtime = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-application-crypto = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-arithmetic = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-weights = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-test-runtime-client = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-block-builder = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-client-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-executor = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-executor-common = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-allocator = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-executor-wasmtime = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-runtime-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-wasm-builder = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-version = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-core-hashing-proc-macro = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-version-proc-macro = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-tracing = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-tracing-proc-macro = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-blockchain = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-consensus = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-inherents = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-test-primitives = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-database = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-test-runtime = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-executive = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-system = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-try-runtime = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-balances = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-transaction-payment = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-babe = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-authorship = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-session = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-timestamp = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-timestamp = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-session = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-staking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-consensus-babe = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-consensus-slots = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-election-provider-support = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-election-provider-solution-type = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-npos-elections = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-test-utils = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-test-utils-derive = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-service = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-chain-spec = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-chain-spec-derive = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-network = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-network-common = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-consensus = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-utils = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-consensus-grandpa = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-network-light = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-network-sync = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -fork-tree = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-telemetry = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-client-db = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-state-db = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -kitchensink-runtime = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-benchmarking-pallet-pov = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-system-benchmarking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -node-primitives = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-alliance = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-collective = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-identity = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-asset-conversion = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-assets = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-asset-conversion-tx-payment = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-asset-rate = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-asset-tx-payment = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-authority-discovery = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-authority-discovery = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-bags-list = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-bounties = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-treasury = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-utility = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-root-testing = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-child-bounties = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-contracts = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-contracts-primitives = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-contracts-proc-macro = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-insecure-randomness-collective-flip = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-proxy = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-conviction-voting = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-scheduler = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-preimage = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-core-fellowship = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-democracy = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-elections-phragmen = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-fast-unstake = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-staking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-staking-reward-curve = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-glutton = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-grandpa = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-offences = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-keyring = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-im-online = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-indices = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-lottery = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-support-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-support-test-pallet = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-membership = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-message-queue = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-mmr = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-mmr-primitives = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-multisig = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-nft-fractionalization = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-nfts = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-nfts-runtime-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-nis = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-nomination-pools = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-nomination-pools-runtime-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-offences-benchmarking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-ranked-collective = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-recovery = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-referenda = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-remark = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-salary = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-session-benchmarking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-society = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-staking-runtime-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-state-trie-migration = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-remote-externalities = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-rpc-client = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-rpc-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-transaction-pool-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-statement = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-statement-store = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-sudo = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-tips = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-transaction-storage = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-transaction-storage-proof = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-uniques = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-vesting = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-whitelist = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-block-builder = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-offchain = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-transaction-pool = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-informant = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-keystore = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-network-bitswap = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-network-transactions = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-transaction-pool = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-test-runtime-transaction-pool = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-rpc-server = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-rpc-spec-v2 = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-sysinfo = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-consensus-aura = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-test-client = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-offchain = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-runtime-interface-test-wasm = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-metadata-ir = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-benchmarking-cli = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-cli = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -node-template-runtime = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-aura = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-template = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-basic-authorship = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-proposer-metrics = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-consensus-aura = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-consensus-slots = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-network-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-consensus-grandpa = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-network-gossip = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-statement-store = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -try-runtime-cli = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-cli-test-utils = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-build-script-utils = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -node-bench = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -node-testing = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -node-executor = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -node-cli = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -node-inspect = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -node-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -mmr-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-consensus-babe = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-consensus-epochs = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-consensus-babe-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-consensus-grandpa-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-sync-state-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-authority-discovery = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-network-statement = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-storage-monitor = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-service-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-frame-cli = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -chain-spec-builder = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -subkey = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-consensus-beefy = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-consensus-beefy = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-consensus-beefy-rpc = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-consensus-manual-seal = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sc-consensus-pow = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-consensus-pow = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -mmr-gadget = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-atomic-swap = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-bags-list-fuzzer = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-bags-list-remote-tests = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-beefy = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-beefy-mmr = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -binary-merkle-tree = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-election-provider-e2e-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-election-solution-type-fuzzer = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-examples = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-default-config-example = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-dev-mode = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-example-basic = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-example-kitchensink = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-example-offchain-worker = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-example-split = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-nicks = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-node-authorization = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-nomination-pools-fuzzer = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-nomination-pools-test-staking = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-scored-pool = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-staking-reward-fn = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -pallet-root-offences = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -frame-support-test-compile-pass = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-api-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-application-crypto-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-arithmetic-fuzzer = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-crypto-ec-utils = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-genesis-builder = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-npos-elections-fuzzer = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-runtime-interface-test = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -sp-runtime-interface-test-wasm-deprecated = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -node-template-release = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-test-utils-test-crate = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -substrate-frame-rpc-support = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -generate-bags = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } -node-runtime-generate-bags = { git = "https://github.com/paritytech//substrate.git" , branch = "bkchr-execution-strategies-remove" } - -[patch."https://github.com/paritytech/polkadot"] -polkadot-cli = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-pvf-execute-worker = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -tracing-gum = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -tracing-gum-proc-macro = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-jaeger = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-primitives = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-parachain = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-core-primitives = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-primitives = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-erasure-coding = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-pvf-common = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-pvf-prepare-worker = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-metrics = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-test-service = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-subsystem = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-subsystem-types = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-network-protocol = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-statement-table = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-overseer = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-primitives-test-helpers = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-rpc = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-runtime-common = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-runtime-parachains = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-runtime-metrics = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -xcm = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -xcm-procedural = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -xcm-executor = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -slot-range-helper = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-service = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -kusama-runtime = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -kusama-runtime-constants = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -pallet-xcm = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -xcm-builder = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-test-runtime = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -test-runtime-constants = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -pallet-xcm-benchmarks = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-approval-distribution = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-subsystem-util = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-availability-bitfield-distribution = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-availability-distribution = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-availability-recovery = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-collator-protocol = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-dispute-distribution = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-gossip-support = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-network-bridge = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-collation-generation = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-approval-voting = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-av-store = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-backing = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-bitfield-signing = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-candidate-validation = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-pvf = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -test-parachain-adder = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -test-parachain-halt = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-chain-api = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-chain-selection = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-dispute-coordinator = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-parachains-inherent = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-provisioner = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-pvf-checker = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-node-core-runtime-api = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-runtime = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-runtime-constants = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-statement-distribution = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -rococo-runtime = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -rococo-runtime-constants = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -westend-runtime = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -westend-runtime-constants = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-test-client = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-performance-test = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -erasure_coding_fuzzer = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -xcm-executor-integration-tests = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -xcm-simulator = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -xcm-simulator-example = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -xcm-simulator-fuzzer = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-test-malus = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -zombienet-backchannel = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -test-parachains = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -test-parachain-adder-collator = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -test-parachain-undying = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -test-parachain-undying-collator = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -staking-miner = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -remote-ext-tests-bags-list = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot-voter-bags = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } -polkadot = { git = "https://github.com/paritytech//polkadot.git" , branch = "bkchr-remote-execution-strategies" } From 60450a581c73ce37d6473e0dfb1c98e3ffc71c7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Tue, 11 Jul 2023 16:20:28 +0200 Subject: [PATCH 4/7] Delete file again --- client/consensus/aura/src/unstable_reimpl.rs | 524 ------------------- 1 file changed, 524 deletions(-) delete mode 100644 client/consensus/aura/src/unstable_reimpl.rs diff --git a/client/consensus/aura/src/unstable_reimpl.rs b/client/consensus/aura/src/unstable_reimpl.rs deleted file mode 100644 index 6da62cffa79..00000000000 --- a/client/consensus/aura/src/unstable_reimpl.rs +++ /dev/null @@ -1,524 +0,0 @@ -// Copyright 2023 Parity Technologies (UK) Ltd. -// This file is part of Cumulus. - -// Cumulus is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. - -// Cumulus is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. - -// You should have received a copy of the GNU General Public License -// along with Cumulus. If not, see . - -//! The AuRa consensus algorithm for parachains. -//! -//! This extends the Substrate provided AuRa consensus implementation to make it compatible for -//! parachains. This provides the option to run a "bare" relay-chain driven Aura implementation, -//! but also exposes the core functionalities separately to be composed into more complex implementations. -//! -//! For more information about AuRa, the Substrate crate should be checked. - -use codec::{Decode, Encode}; -use cumulus_client_collator::service::ServiceInterface as CollatorServiceInterface; -use cumulus_client_consensus_common::{ParachainBlockImportMarker, ParachainCandidate}; -use cumulus_client_consensus_proposer::ProposerInterface; -use cumulus_primitives_core::{ - relay_chain::Hash as PHash, CollectCollationInfo, PersistedValidationData, -}; -use cumulus_primitives_parachain_inherent::ParachainInherentData; -use cumulus_relay_chain_interface::RelayChainInterface; - -use polkadot_node_primitives::{CollationResult, MaybeCompressedPoV}; -use polkadot_overseer::Handle as OverseerHandle; -use polkadot_primitives::{CollatorPair, Id as ParaId}; - -use futures::prelude::*; -use sc_client_api::{backend::AuxStore, BlockBackend, BlockOf}; -use sc_consensus::{ - import_queue::{BasicQueue, Verifier as VerifierT}, - BlockImport, BlockImportParams, ForkChoiceStrategy, StateAction, -}; -use sc_consensus_aura::standalone as aura_internal; -use sc_telemetry::{telemetry, TelemetryHandle, CONSENSUS_DEBUG, CONSENSUS_TRACE}; -use sp_api::ProvideRuntimeApi; -use sp_application_crypto::AppPublic; -use sp_block_builder::BlockBuilder as BlockBuilderApi; -use sp_blockchain::HeaderBackend; -use sp_consensus::{error::Error as ConsensusError, BlockOrigin, SyncOracle}; -use sp_consensus_aura::{AuraApi, Slot, SlotDuration}; -use sp_core::crypto::Pair; -use sp_inherents::{CreateInherentDataProviders, InherentData, InherentDataProvider}; -use sp_keystore::KeystorePtr; -use sp_runtime::{ - generic::Digest, - traits::{Block as BlockT, HashFor, Header as HeaderT, Member}, -}; -use sp_state_machine::StorageChanges; -use std::{convert::TryFrom, error::Error, fmt::Debug, hash::Hash, sync::Arc, time::Duration}; - -/// Parameters for [`run_bare_relay_driven`]. -pub struct Params { - pub create_inherent_data_providers: CIDP, - pub block_import: BI, - pub para_client: Arc, - pub relay_client: Arc, - pub sync_oracle: SO, - pub keystore: KeystorePtr, - pub key: CollatorPair, - pub para_id: ParaId, - pub overseer_handle: OverseerHandle, - pub slot_duration: SlotDuration, - pub proposer: Proposer, - pub collator_service: CS, -} - -/// Run bare Aura consensus as a relay-chain-driven collator. -pub async fn run_bare_relay_driven( - params: Params, -) where - Block: BlockT, - Client: ProvideRuntimeApi - + BlockOf - + AuxStore - + HeaderBackend - + BlockBackend - + Send - + Sync - + 'static, - Client::Api: AuraApi + CollectCollationInfo, - RClient: RelayChainInterface, - CIDP: CreateInherentDataProviders + 'static, - BI: BlockImport + ParachainBlockImportMarker + Send + Sync + 'static, - SO: SyncOracle + Send + Sync + Clone + 'static, - Proposer: ProposerInterface, - Proposer::Transaction: Sync, - CS: CollatorServiceInterface, - P: Pair + Send + Sync, - P::Public: AppPublic + Hash + Member + Encode + Decode, - P::Signature: TryFrom> + Hash + Member + Encode + Decode, -{ - let mut proposer = params.proposer; - let mut block_import = params.block_import; - - let mut collation_requests = cumulus_client_collator::relay_chain_driven::init( - params.key, - params.para_id, - params.overseer_handle, - ) - .await; - - while let Some(request) = collation_requests.next().await { - macro_rules! reject_with_error { - ($err:expr) => {{ - request.complete(None); - tracing::error!(target: crate::LOG_TARGET, err = ?{ $err }); - continue; - }}; - } - - let validation_data = request.persisted_validation_data(); - - let parent_header = match Block::Header::decode(&mut &validation_data.parent_head.0[..]) { - Ok(x) => x, - Err(e) => reject_with_error!(e), - }; - - let parent_hash = parent_header.hash(); - - if !params.collator_service.check_block_status(parent_hash, &parent_header) { - continue - } - - let claim = match claim_slot::<_, _, P>( - &*params.para_client, - parent_hash, - params.slot_duration, - ¶ms.keystore, - ) - .await - { - Ok(None) => continue, - Ok(Some(c)) => c, - Err(e) => reject_with_error!(e), - }; - - let (parachain_inherent_data, other_inherent_data) = match create_inherent_data( - *request.relay_parent(), - &validation_data, - parent_hash, - params.para_id, - ¶ms.relay_client, - ¶ms.create_inherent_data_providers, - ) - .await - { - Ok(x) => x, - Err(e) => reject_with_error!(e), - }; - - let proposal = match proposer - .propose( - &parent_header, - ¶chain_inherent_data, - other_inherent_data, - Digest { logs: vec![claim.pre_digest] }, - // TODO [https://github.com/paritytech/cumulus/issues/2439] - // We should call out to a pluggable interface that provides - // the proposal duration. - Duration::from_millis(500), - // Set the block limit to 50% of the maximum PoV size. - // - // TODO: If we got benchmarking that includes the proof size, - // we should be able to use the maximum pov size. - Some((validation_data.max_pov_size / 2) as usize), - ) - .await - { - Ok(p) => p, - Err(e) => reject_with_error!(e), - }; - - let sealed_importable = match seal::<_, _, P>( - proposal.block, - proposal.storage_changes, - &claim.author_pub, - ¶ms.keystore, - ) { - Ok(s) => s, - Err(e) => reject_with_error!(e), - }; - - let post_hash = sealed_importable.post_hash(); - let block = Block::new( - sealed_importable.post_header(), - sealed_importable - .body - .as_ref() - .expect("body always created with this `propose` fn; qed") - .clone(), - ); - - if let Err(e) = block_import.import_block(sealed_importable).await { - reject_with_error!(e); - } - - let response = if let Some((collation, b)) = params.collator_service.build_collation( - &parent_header, - post_hash, - ParachainCandidate { block, proof: proposal.proof }, - ) { - tracing::info!( - target: crate::LOG_TARGET, - "PoV size {{ header: {}kb, extrinsics: {}kb, storage_proof: {}kb }}", - b.header().encode().len() as f64 / 1024f64, - b.extrinsics().encode().len() as f64 / 1024f64, - b.storage_proof().encode().len() as f64 / 1024f64, - ); - - if let MaybeCompressedPoV::Compressed(ref pov) = collation.proof_of_validity { - tracing::info!( - target: crate::LOG_TARGET, - "Compressed PoV size: {}kb", - pov.block_data.0.len() as f64 / 1024f64, - ); - } - - let result_sender = params.collator_service.announce_with_barrier(post_hash); - Some(CollationResult { collation, result_sender: Some(result_sender) }) - } else { - None - }; - - request.complete(response); - } -} - -fn slot_now(slot_duration: SlotDuration) -> Slot { - let timestamp = sp_timestamp::InherentDataProvider::from_system_time().timestamp(); - Slot::from_timestamp(timestamp, slot_duration) -} - -/// A claim on an Aura slot. -struct SlotClaim { - author_pub: Pub, - pre_digest: sp_runtime::DigestItem, -} - -async fn claim_slot( - client: &C, - parent_hash: B::Hash, - slot_duration: SlotDuration, - keystore: &KeystorePtr, -) -> Result>, Box> -where - B: BlockT, - C: ProvideRuntimeApi + Send + Sync + 'static, - C::Api: AuraApi, - P: Pair, - P::Public: Encode + Decode, - P::Signature: Encode + Decode, -{ - // load authorities - let authorities = client.runtime_api().authorities(parent_hash).map_err(Box::new)?; - - // Determine the current slot. - let slot_now = slot_now(slot_duration); - - // Try to claim the slot locally. - let author_pub = { - let res = aura_internal::claim_slot::

(slot_now, &authorities, keystore).await; - match res { - Some(p) => p, - None => return Ok(None), - } - }; - - // Produce the pre-digest. - let pre_digest = aura_internal::pre_digest::

(slot_now); - - Ok(Some(SlotClaim { author_pub, pre_digest })) -} - -async fn create_inherent_data( - relay_parent: PHash, - validation_data: &PersistedValidationData, - parent_hash: B::Hash, - para_id: ParaId, - relay_chain_interface: &impl RelayChainInterface, - create_inherent_data_providers: &impl CreateInherentDataProviders, -) -> Result<(ParachainInherentData, InherentData), Box> { - let paras_inherent_data = ParachainInherentData::create_at( - relay_parent, - relay_chain_interface, - validation_data, - para_id, - ) - .await; - - let paras_inherent_data = match paras_inherent_data { - Some(p) => p, - None => - return Err(format!("Could not create paras inherent data at {:?}", relay_parent).into()), - }; - - let other_inherent_data = create_inherent_data_providers - .create_inherent_data_providers(parent_hash, ()) - .map_err(|e| e as Box) - .await? - .create_inherent_data() - .await - .map_err(Box::new)?; - - Ok((paras_inherent_data, other_inherent_data)) -} - -fn seal( - pre_sealed: B, - storage_changes: StorageChanges>, - author_pub: &P::Public, - keystore: &KeystorePtr, -) -> Result, Box> -where - P: Pair, - P::Signature: Encode + Decode + TryFrom>, - P::Public: AppPublic, -{ - let (pre_header, body) = pre_sealed.deconstruct(); - let pre_hash = pre_header.hash(); - let block_number = *pre_header.number(); - - // seal the block. - let block_import_params = { - let seal_digest = - aura_internal::seal::<_, P>(&pre_hash, &author_pub, keystore).map_err(Box::new)?; - let mut block_import_params = BlockImportParams::new(BlockOrigin::Own, pre_header); - block_import_params.post_digests.push(seal_digest); - block_import_params.body = Some(body.clone()); - block_import_params.state_action = - StateAction::ApplyChanges(sc_consensus::StorageChanges::Changes(storage_changes)); - block_import_params.fork_choice = Some(ForkChoiceStrategy::LongestChain); - block_import_params - }; - let post_hash = block_import_params.post_hash(); - - tracing::info!( - target: crate::LOG_TARGET, - "🔖 Pre-sealed block for proposal at {}. Hash now {:?}, previously {:?}.", - block_number, - post_hash, - pre_hash, - ); - - Ok(block_import_params) -} - -struct Verifier { - client: Arc, - create_inherent_data_providers: CIDP, - slot_duration: SlotDuration, - telemetry: Option, - _marker: std::marker::PhantomData<(Block, P)>, -} - -#[async_trait::async_trait] -impl VerifierT for Verifier -where - P: Pair, - P::Signature: Encode + Decode, - P::Public: Encode + Decode + PartialEq + Clone + Debug, - Block: BlockT, - Client: ProvideRuntimeApi + Send + Sync, - >::Api: BlockBuilderApi + AuraApi, - - CIDP: CreateInherentDataProviders, -{ - async fn verify( - &mut self, - mut block_params: BlockImportParams, - ) -> Result, String> { - // Skip checks that include execution, if being told so, or when importing only state. - // - // This is done for example when gap syncing and it is expected that the block after the gap - // was checked/chosen properly, e.g. by warp syncing to this block using a finality proof. - if block_params.state_action.skip_execution_checks() || block_params.with_state() { - return Ok(block_params) - } - - let post_hash = block_params.header.hash(); - let parent_hash = *block_params.header.parent_hash(); - - // check seal and update pre-hash/post-hash - { - let authorities = aura_internal::fetch_authorities(self.client.as_ref(), parent_hash) - .map_err(|e| { - format!("Could not fetch authorities at {:?}: {}", parent_hash, e) - })?; - - let slot_now = slot_now(self.slot_duration); - let res = aura_internal::check_header_slot_and_seal::( - slot_now, - block_params.header, - &authorities, - ); - - match res { - Ok((pre_header, _slot, seal_digest)) => { - telemetry!( - self.telemetry; - CONSENSUS_TRACE; - "aura.checked_and_importing"; - "pre_header" => ?pre_header, - ); - - block_params.header = pre_header; - block_params.post_digests.push(seal_digest); - block_params.fork_choice = Some(ForkChoiceStrategy::LongestChain); - block_params.post_hash = Some(post_hash); - }, - Err(aura_internal::SealVerificationError::Deferred(hdr, slot)) => { - telemetry!( - self.telemetry; - CONSENSUS_DEBUG; - "aura.header_too_far_in_future"; - "hash" => ?post_hash, - "a" => ?hdr, - "b" => ?slot, - ); - - return Err(format!( - "Rejecting block ({:?}) from future slot {:?}", - post_hash, slot - )) - }, - Err(e) => - return Err(format!( - "Rejecting block ({:?}) with invalid seal ({:?})", - post_hash, e - )), - } - } - - // check inherents. - if let Some(body) = block_params.body.clone() { - let block = Block::new(block_params.header.clone(), body); - let create_inherent_data_providers = self - .create_inherent_data_providers - .create_inherent_data_providers(parent_hash, ()) - .await - .map_err(|e| format!("Could not create inherent data {:?}", e))?; - - let inherent_data = create_inherent_data_providers - .create_inherent_data() - .await - .map_err(|e| format!("Could not create inherent data {:?}", e))?; - - let inherent_res = self - .client - .runtime_api() - .check_inherents(parent_hash, block, inherent_data) - .map_err(|e| format!("Unable to check block inherents {:?}", e))?; - - if !inherent_res.ok() { - for (i, e) in inherent_res.into_errors() { - match create_inherent_data_providers.try_handle_error(&i, &e).await { - Some(res) => res.map_err(|e| format!("Inherent Error {:?}", e))?, - None => - return Err(format!( - "Unknown inherent error, source {:?}", - String::from_utf8_lossy(&i[..]) - )), - } - } - } - } - - Ok(block_params) - } -} - -/// Start an import queue for a Cumulus node which checks blocks' seals and inherent data. -/// -/// Pass in only inherent data providers which don't include aura or parachain consensus inherents, -/// e.g. things like timestamp and custom inherents for the runtime. -/// -/// The others are generated explicitly internally. -/// -/// This should only be used for runtimes where the runtime does not check all inherents and -/// seals in `execute_block` (see ) -pub fn fully_verifying_import_queue( - client: Arc, - block_import: I, - create_inherent_data_providers: CIDP, - slot_duration: SlotDuration, - spawner: &impl sp_core::traits::SpawnEssentialNamed, - registry: Option<&substrate_prometheus_endpoint::Registry>, - telemetry: Option, -) -> BasicQueue -where - P: Pair, - P::Signature: Encode + Decode, - P::Public: Encode + Decode + PartialEq + Clone + Debug, - I: BlockImport - + ParachainBlockImportMarker - + Send - + Sync - + 'static, - I::Transaction: Send, - Client: ProvideRuntimeApi + Send + Sync + 'static, - >::Api: BlockBuilderApi + AuraApi, - CIDP: CreateInherentDataProviders + 'static, -{ - let verifier = Verifier:: { - client, - create_inherent_data_providers, - slot_duration, - telemetry, - _marker: std::marker::PhantomData, - }; - - BasicQueue::new(verifier, Box::new(block_import), None, spawner, registry) -} From 7715b6e386ded5e49e5009e4ffd9dcbe9c031c44 Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Tue, 11 Jul 2023 21:56:19 +0000 Subject: [PATCH 5/7] update lockfile for {"polkadot", "substrate"} --- Cargo.lock | 540 +++++++++++++++++++++++++++-------------------------- 1 file changed, 275 insertions(+), 265 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8dd2a44eff3..412340cdf5e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -865,7 +865,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "hash-db", "log", @@ -4192,7 +4192,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", ] @@ -4215,7 +4215,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "frame-support-procedural", @@ -4240,7 +4240,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "Inflector", "array-bytes", @@ -4288,7 +4288,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -4299,7 +4299,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -4316,7 +4316,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "frame-system", @@ -4345,7 +4345,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-recursion", "futures", @@ -4366,7 +4366,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "bitflags", "environmental", @@ -4400,7 +4400,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "Inflector", "cfg-expr", @@ -4418,7 +4418,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -4430,7 +4430,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "proc-macro2", "quote", @@ -4440,7 +4440,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "cfg-if", "frame-support", @@ -4459,7 +4459,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -4474,7 +4474,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "sp-api", @@ -4483,7 +4483,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "parity-scale-codec", @@ -5631,7 +5631,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bitvec", "frame-benchmarking", @@ -5731,7 +5731,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "frame-support", "polkadot-primitives", @@ -6670,7 +6670,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "futures", "log", @@ -6689,7 +6689,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "anyhow", "jsonrpsee", @@ -7180,7 +7180,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "array-bytes", "frame-benchmarking", @@ -7201,7 +7201,7 @@ dependencies = [ [[package]] name = "pallet-asset-conversion" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7219,7 +7219,7 @@ dependencies = [ [[package]] name = "pallet-asset-conversion-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "frame-system", @@ -7233,7 +7233,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7251,7 +7251,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7266,7 +7266,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "frame-system", @@ -7282,7 +7282,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "frame-system", @@ -7298,7 +7298,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "frame-system", @@ -7312,7 +7312,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7336,7 +7336,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7356,7 +7356,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7371,7 +7371,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "frame-system", @@ -7390,7 +7390,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -7414,7 +7414,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7520,7 +7520,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7564,7 +7564,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7581,7 +7581,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "bitflags", "environmental", @@ -7610,7 +7610,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "24.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "bitflags", "parity-scale-codec", @@ -7623,7 +7623,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "proc-macro2", "quote", @@ -7633,7 +7633,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7650,7 +7650,7 @@ dependencies = [ [[package]] name = "pallet-core-fellowship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7668,7 +7668,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7686,7 +7686,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7709,7 +7709,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7722,7 +7722,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7741,7 +7741,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "docify", "frame-benchmarking", @@ -7760,7 +7760,7 @@ dependencies = [ [[package]] name = "pallet-glutton" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "blake2", "frame-benchmarking", @@ -7778,7 +7778,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7801,7 +7801,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7817,7 +7817,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7837,7 +7837,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7854,7 +7854,7 @@ dependencies = [ [[package]] name = "pallet-insecure-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "frame-system", @@ -7868,7 +7868,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7885,7 +7885,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7904,7 +7904,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7921,7 +7921,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7937,7 +7937,7 @@ dependencies = [ [[package]] name = "pallet-nft-fractionalization" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7954,7 +7954,7 @@ dependencies = [ [[package]] name = "pallet-nfts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7972,7 +7972,7 @@ dependencies = [ [[package]] name = "pallet-nfts-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "pallet-nfts", @@ -7983,7 +7983,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7999,7 +7999,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "frame-system", @@ -8016,7 +8016,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8036,7 +8036,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -8047,7 +8047,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "frame-system", @@ -8064,7 +8064,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8103,7 +8103,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8120,7 +8120,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8135,7 +8135,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8153,7 +8153,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8168,7 +8168,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "assert_matches", "frame-benchmarking", @@ -8187,7 +8187,7 @@ dependencies = [ [[package]] name = "pallet-salary" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8205,7 +8205,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8222,7 +8222,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "frame-system", @@ -8243,7 +8243,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8259,7 +8259,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8278,7 +8278,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8301,7 +8301,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8312,7 +8312,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "log", "sp-arithmetic", @@ -8321,7 +8321,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "sp-api", @@ -8330,7 +8330,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8347,7 +8347,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8362,7 +8362,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8380,7 +8380,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8399,7 +8399,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-support", "frame-system", @@ -8415,7 +8415,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8431,7 +8431,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8443,7 +8443,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8460,7 +8460,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8475,7 +8475,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8491,7 +8491,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8506,7 +8506,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8521,7 +8521,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8542,7 +8542,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "frame-benchmarking", "frame-support", @@ -9157,7 +9157,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "futures", "futures-timer", @@ -9175,7 +9175,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "futures", "futures-timer", @@ -9190,7 +9190,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "derive_more", "fatality", @@ -9213,7 +9213,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "fatality", "futures", @@ -9234,7 +9234,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "clap", "frame-benchmarking-cli", @@ -9263,7 +9263,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "always-assert", "bitvec", @@ -9285,7 +9285,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "parity-scale-codec", "scale-info", @@ -9297,7 +9297,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "derive_more", "fatality", @@ -9322,7 +9322,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -9336,7 +9336,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "futures", "futures-timer", @@ -9356,7 +9356,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "always-assert", "async-trait", @@ -9379,7 +9379,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "futures", "parity-scale-codec", @@ -9397,7 +9397,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bitvec", "derive_more", @@ -9426,7 +9426,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bitvec", "futures", @@ -9448,7 +9448,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bitvec", "fatality", @@ -9467,7 +9467,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9482,7 +9482,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "async-trait", "futures", @@ -9502,7 +9502,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "futures", "polkadot-node-metrics", @@ -9517,7 +9517,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "futures", "futures-timer", @@ -9534,7 +9534,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "fatality", "futures", @@ -9553,7 +9553,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "async-trait", "futures", @@ -9570,7 +9570,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bitvec", "fatality", @@ -9588,7 +9588,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "always-assert", "futures", @@ -9619,7 +9619,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "futures", "polkadot-node-primitives", @@ -9635,7 +9635,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "cpu-time", "futures", @@ -9659,7 +9659,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-execute-worker" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "cpu-time", "futures", @@ -9679,7 +9679,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "futures", "libc", @@ -9702,7 +9702,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "futures", "lru 0.9.0", @@ -9717,7 +9717,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "lazy_static", "log", @@ -9735,7 +9735,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bs58", "futures", @@ -9754,7 +9754,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "async-channel", "async-trait", @@ -9777,7 +9777,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bounded-vec", "futures", @@ -9799,7 +9799,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9809,7 +9809,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "async-trait", "futures", @@ -9827,7 +9827,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "async-trait", "derive_more", @@ -9839,6 +9839,7 @@ dependencies = [ "polkadot-primitives", "polkadot-statement-table", "sc-network", + "sc-transaction-pool-api", "smallvec", "sp-api", "sp-authority-discovery", @@ -9850,7 +9851,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "async-trait", "derive_more", @@ -9883,7 +9884,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "async-trait", "futures", @@ -9906,7 +9907,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bounded-collections", "derive_more", @@ -10005,7 +10006,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -10023,7 +10024,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -10049,7 +10050,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -10081,7 +10082,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bitvec", "frame-benchmarking", @@ -10176,7 +10177,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bitvec", "frame-benchmarking", @@ -10222,7 +10223,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "frame-support", "polkadot-primitives", @@ -10236,7 +10237,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bs58", "parity-scale-codec", @@ -10248,7 +10249,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bitflags", "bitvec", @@ -10293,7 +10294,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "async-trait", "frame-benchmarking", @@ -10375,6 +10376,7 @@ dependencies = [ "sc-sysinfo", "sc-telemetry", "sc-transaction-pool", + "sc-transaction-pool-api", "serde", "serde_json", "sp-api", @@ -10410,7 +10412,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -10432,7 +10434,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10442,7 +10444,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "frame-benchmarking", "parity-scale-codec", @@ -10470,7 +10472,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bitvec", "frame-election-provider-support", @@ -10531,7 +10533,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "frame-system", "futures", @@ -11310,7 +11312,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -11397,7 +11399,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "frame-support", "polkadot-primitives", @@ -11666,7 +11668,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "log", "sp-core", @@ -11677,7 +11679,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "futures", @@ -11705,7 +11707,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "futures", "futures-timer", @@ -11728,7 +11730,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11743,7 +11745,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11762,7 +11764,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11773,7 +11775,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "array-bytes", "chrono", @@ -11812,7 +11814,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "fnv", "futures", @@ -11828,7 +11830,6 @@ dependencies = [ "sp-core", "sp-database", "sp-externalities", - "sp-keystore", "sp-runtime", "sp-state-machine", "sp-statement-store", @@ -11839,7 +11840,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "hash-db", "kvdb", @@ -11865,7 +11866,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "futures", @@ -11890,7 +11891,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "futures", @@ -11919,7 +11920,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "fork-tree", @@ -11935,6 +11936,7 @@ dependencies = [ "sc-consensus-epochs", "sc-consensus-slots", "sc-telemetry", + "sc-transaction-pool-api", "scale-info", "sp-api", "sp-application-crypto", @@ -11954,7 +11956,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "futures", "jsonrpsee", @@ -11976,7 +11978,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "array-bytes", "async-channel", @@ -12010,7 +12012,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "futures", "jsonrpsee", @@ -12029,7 +12031,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "fork-tree", "parity-scale-codec", @@ -12042,7 +12044,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "ahash 0.8.2", "array-bytes", @@ -12064,6 +12066,7 @@ dependencies = [ "sc-network-common", "sc-network-gossip", "sc-telemetry", + "sc-transaction-pool-api", "sc-utils", "serde_json", "sp-api", @@ -12082,7 +12085,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "finality-grandpa", "futures", @@ -12102,7 +12105,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "futures", @@ -12125,7 +12128,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -12147,7 +12150,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -12159,7 +12162,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "anyhow", "cfg-if", @@ -12176,7 +12179,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "ansi_term", "futures", @@ -12192,7 +12195,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -12206,7 +12209,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "array-bytes", "async-channel", @@ -12247,7 +12250,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-channel", "cid", @@ -12267,7 +12270,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "bitflags", @@ -12284,7 +12287,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "ahash 0.8.2", "futures", @@ -12302,7 +12305,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "array-bytes", "async-channel", @@ -12323,7 +12326,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "array-bytes", "async-channel", @@ -12357,7 +12360,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "array-bytes", "futures", @@ -12375,7 +12378,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "array-bytes", "bytes", @@ -12385,6 +12388,7 @@ dependencies = [ "hyper", "hyper-rustls 0.24.0", "libp2p", + "log", "num_cpus", "once_cell", "parity-scale-codec", @@ -12392,9 +12396,13 @@ dependencies = [ "rand 0.8.5", "sc-client-api", "sc-network", + "sc-network-common", + "sc-transaction-pool-api", "sc-utils", "sp-api", "sp-core", + "sp-externalities", + "sp-keystore", "sp-offchain", "sp-runtime", "threadpool", @@ -12404,7 +12412,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -12413,7 +12421,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "futures", "jsonrpsee", @@ -12444,7 +12452,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12463,7 +12471,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "http", "jsonrpsee", @@ -12478,7 +12486,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "array-bytes", "futures", @@ -12504,7 +12512,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "directories", @@ -12531,7 +12539,6 @@ dependencies = [ "sc-network-light", "sc-network-sync", "sc-network-transactions", - "sc-offchain", "sc-rpc", "sc-rpc-server", "sc-rpc-spec-v2", @@ -12569,7 +12576,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "log", "parity-scale-codec", @@ -12580,7 +12587,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "clap", "fs4", @@ -12594,7 +12601,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12613,7 +12620,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "futures", "libc", @@ -12632,7 +12639,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "chrono", "futures", @@ -12651,7 +12658,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "ansi_term", "atty", @@ -12680,7 +12687,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12691,7 +12698,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "futures", @@ -12717,7 +12724,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "futures", @@ -12733,7 +12740,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-channel", "futures", @@ -13214,7 +13221,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "enumn", "parity-scale-codec", @@ -13291,7 +13298,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "hash-db", "log", @@ -13299,6 +13306,7 @@ dependencies = [ "scale-info", "sp-api-proc-macro", "sp-core", + "sp-externalities", "sp-metadata-ir", "sp-runtime", "sp-state-machine", @@ -13311,7 +13319,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "Inflector", "blake2", @@ -13325,7 +13333,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "scale-info", @@ -13338,7 +13346,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "integer-sqrt", "num-traits", @@ -13352,7 +13360,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "scale-info", @@ -13365,7 +13373,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "sp-api", "sp-inherents", @@ -13376,7 +13384,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "futures", "log", @@ -13394,7 +13402,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "futures", @@ -13409,7 +13417,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "parity-scale-codec", @@ -13426,7 +13434,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "parity-scale-codec", @@ -13445,7 +13453,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13464,7 +13472,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "finality-grandpa", "log", @@ -13482,7 +13490,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "scale-info", @@ -13494,7 +13502,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "array-bytes", "bitflags", @@ -13532,13 +13540,14 @@ dependencies = [ "substrate-bip39", "thiserror", "tiny-bip39", + "tracing", "zeroize", ] [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "blake2b_simd", "byteorder", @@ -13551,7 +13560,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "quote", "sp-core-hashing", @@ -13561,7 +13570,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13570,7 +13579,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "proc-macro2", "quote", @@ -13580,7 +13589,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "environmental", "parity-scale-codec", @@ -13591,7 +13600,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13605,7 +13614,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "bytes", "ed25519", @@ -13630,7 +13639,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "lazy_static", "sp-core", @@ -13641,7 +13650,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13653,7 +13662,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "thiserror", "zstd 0.12.3+zstd.1.5.2", @@ -13662,7 +13671,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13673,7 +13682,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13691,7 +13700,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "scale-info", @@ -13705,7 +13714,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "sp-api", "sp-core", @@ -13715,7 +13724,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "backtrace", "lazy_static", @@ -13725,7 +13734,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "rustc-hash", "serde", @@ -13735,7 +13744,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "either", "hash256-std-hasher", @@ -13757,7 +13766,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13775,7 +13784,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "Inflector", "proc-macro-crate", @@ -13787,12 +13796,13 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "scale-info", "sp-api", "sp-core", + "sp-keystore", "sp-runtime", "sp-staking", "sp-std", @@ -13801,7 +13811,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13815,7 +13825,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "hash-db", "log", @@ -13836,7 +13846,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "scale-info", @@ -13853,12 +13863,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13871,7 +13881,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "parity-scale-codec", @@ -13884,7 +13894,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "sp-std", @@ -13896,7 +13906,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "sp-api", "sp-runtime", @@ -13905,7 +13915,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "parity-scale-codec", @@ -13920,7 +13930,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "ahash 0.8.2", "hash-db", @@ -13943,7 +13953,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13960,7 +13970,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13971,7 +13981,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -13984,7 +13994,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "parity-scale-codec", "scale-info", @@ -14182,12 +14192,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14206,7 +14216,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "hyper", "log", @@ -14218,7 +14228,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "jsonrpsee", @@ -14231,7 +14241,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14248,7 +14258,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "array-bytes", "async-trait", @@ -14274,7 +14284,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "futures", "substrate-test-utils-derive", @@ -14284,7 +14294,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -14295,7 +14305,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "ansi_term", "build-helper", @@ -14424,7 +14434,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "frame-support", "polkadot-primitives", @@ -14826,7 +14836,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -14837,7 +14847,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -14967,7 +14977,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3fee5c7a8d657909aecd829d4b276305f0828a16" +source = "git+https://github.com/paritytech/substrate?branch=master#edf58dceaf3e1f1710e7ac83ac1cc0831e2ef9b2" dependencies = [ "async-trait", "clap", @@ -15883,7 +15893,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bitvec", "frame-benchmarking", @@ -15976,7 +15986,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "frame-support", "polkadot-primitives", @@ -16367,7 +16377,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "bounded-collections", "derivative", @@ -16383,7 +16393,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "frame-support", "frame-system", @@ -16437,7 +16447,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "environmental", "frame-benchmarking", @@ -16457,7 +16467,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.43" -source = "git+https://github.com/paritytech/polkadot?branch=master#aa5c8220ff6705f040f44d06479dd88b8e7e4601" +source = "git+https://github.com/paritytech/polkadot?branch=master#00684cb53032212d82513832f4a493f177d58619" dependencies = [ "Inflector", "proc-macro2", From 79a79c851406aad88565a81e1888e5993faad9a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Wed, 12 Jul 2023 00:13:12 +0200 Subject: [PATCH 6/7] Fix --- client/consensus/aura/src/equivocation_import_queue.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/consensus/aura/src/equivocation_import_queue.rs b/client/consensus/aura/src/equivocation_import_queue.rs index ac9c2a52829..0f7099839de 100644 --- a/client/consensus/aura/src/equivocation_import_queue.rs +++ b/client/consensus/aura/src/equivocation_import_queue.rs @@ -178,9 +178,8 @@ where let inherent_res = self .client .runtime_api() - .check_inherents_with_context( + .check_inherents( parent_hash, - block_params.origin.into(), block, inherent_data, ) From 59e639add6021e90e412a5d9c912ac9e82cf3ab7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Wed, 12 Jul 2023 00:15:04 +0200 Subject: [PATCH 7/7] FMT --- client/consensus/aura/src/equivocation_import_queue.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/client/consensus/aura/src/equivocation_import_queue.rs b/client/consensus/aura/src/equivocation_import_queue.rs index 0f7099839de..b39fa73117f 100644 --- a/client/consensus/aura/src/equivocation_import_queue.rs +++ b/client/consensus/aura/src/equivocation_import_queue.rs @@ -178,11 +178,7 @@ where let inherent_res = self .client .runtime_api() - .check_inherents( - parent_hash, - block, - inherent_data, - ) + .check_inherents(parent_hash, block, inherent_data) .map_err(|e| format!("Unable to check block inherents {:?}", e))?; if !inherent_res.ok() {