From 100bf368b989c79e3a026931de1f8e7c21acc46c Mon Sep 17 00:00:00 2001 From: Gav Date: Thu, 9 Feb 2023 14:48:28 +0100 Subject: [PATCH 01/17] Some renames --- node/test/service/src/lib.rs | 2 +- node/test/service/tests/call-function.rs | 2 +- runtime/common/src/crowdloan/mod.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/node/test/service/src/lib.rs b/node/test/service/src/lib.rs index 352959236ef0..bb79962afb6e 100644 --- a/node/test/service/src/lib.rs +++ b/node/test/service/src/lib.rs @@ -393,7 +393,7 @@ pub fn construct_transfer_extrinsic( dest: sp_keyring::AccountKeyring, value: Balance, ) -> UncheckedExtrinsic { - let function = polkadot_test_runtime::RuntimeCall::Balances(pallet_balances::Call::transfer { + let function = polkadot_test_runtime::RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death { dest: MultiSigner::from(dest.public()).into_account().into(), value, }); diff --git a/node/test/service/tests/call-function.rs b/node/test/service/tests/call-function.rs index 8678a0a08a2b..4e3c71778b7b 100644 --- a/node/test/service/tests/call-function.rs +++ b/node/test/service/tests/call-function.rs @@ -24,7 +24,7 @@ async fn call_function_actually_work() { let alice = run_validator_node(alice_config, None); - let function = polkadot_test_runtime::RuntimeCall::Balances(pallet_balances::Call::transfer { + let function = polkadot_test_runtime::RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death { dest: Charlie.to_account_id().into(), value: 1, }); diff --git a/runtime/common/src/crowdloan/mod.rs b/runtime/common/src/crowdloan/mod.rs index e8ef2ee0344f..0acf4ec7192c 100644 --- a/runtime/common/src/crowdloan/mod.rs +++ b/runtime/common/src/crowdloan/mod.rs @@ -1614,7 +1614,7 @@ mod tests { let account_id = Crowdloan::fund_account_id(index); // user sends the crowdloan funds trying to make an accounting error - assert_ok!(Balances::transfer(RuntimeOrigin::signed(1), account_id, 10)); + assert_ok!(Balances::transfer_allow_death(RuntimeOrigin::signed(1), account_id, 10)); // overfunded now assert_eq!(Balances::free_balance(&account_id), 110); From 9d9eabf673d986121f956cd3c11b53d37cbff115 Mon Sep 17 00:00:00 2001 From: Gav Date: Wed, 15 Mar 2023 18:58:25 +0000 Subject: [PATCH 02/17] Fix --- xcm/xcm-builder/src/fungibles_adapter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcm/xcm-builder/src/fungibles_adapter.rs b/xcm/xcm-builder/src/fungibles_adapter.rs index c20fc9926712..f652f7817d0f 100644 --- a/xcm/xcm-builder/src/fungibles_adapter.rs +++ b/xcm/xcm-builder/src/fungibles_adapter.rs @@ -26,7 +26,7 @@ pub struct FungiblesTransferAdapter, ); impl< - Assets: fungibles::Transfer, + Assets: fungibles::Mutate, Matcher: MatchesFungibles, AccountIdConverter: Convert, AccountId: Clone, // can't get away without it since Currency is generic over it. From 310d5784d55031a1245587f102404dff8d3f7a16 Mon Sep 17 00:00:00 2001 From: Gav Date: Wed, 15 Mar 2023 19:50:57 +0000 Subject: [PATCH 03/17] Fix build for new APIs --- Cargo.lock | 447 +++++++++++------- Cargo.toml | 250 ++++++++++ runtime/kusama/src/lib.rs | 34 +- runtime/kusama/src/weights/pallet_balances.rs | 9 +- ...allet_balances_nis_counterpart_balances.rs | 9 +- runtime/polkadot/src/lib.rs | 4 + .../polkadot/src/weights/pallet_balances.rs | 9 +- runtime/rococo/src/lib.rs | 34 +- runtime/rococo/src/weights/pallet_balances.rs | 9 +- ...allet_balances_nis_counterpart_balances.rs | 9 +- runtime/test-runtime/src/lib.rs | 6 +- runtime/westend/src/lib.rs | 4 + .../westend/src/weights/pallet_balances.rs | 10 +- xcm/xcm-builder/src/fungibles_adapter.rs | 17 +- xcm/xcm-simulator/example/src/parachain.rs | 16 +- xcm/xcm-simulator/example/src/relay_chain.rs | 16 +- xcm/xcm-simulator/fuzzer/src/parachain.rs | 6 +- xcm/xcm-simulator/fuzzer/src/relay_chain.rs | 10 +- 18 files changed, 667 insertions(+), 232 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 35e5b71541df..2746ce6149cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -466,7 +466,6 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "hash-db", "log", @@ -2295,7 +2294,6 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", ] @@ -2318,7 +2316,6 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "frame-support-procedural", @@ -2343,7 +2340,6 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "Inflector", "array-bytes", @@ -2390,7 +2386,6 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2401,7 +2396,6 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2418,7 +2412,6 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "frame-system", @@ -2447,7 +2440,6 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "futures", "log", @@ -2463,7 +2455,6 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "bitflags", "environmental", @@ -2496,7 +2487,6 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "Inflector", "cfg-expr", @@ -2511,7 +2501,6 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2523,7 +2512,6 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "proc-macro2", "quote", @@ -2533,7 +2521,6 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -2557,7 +2544,6 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "frame-system", @@ -2568,7 +2554,6 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "log", @@ -2586,7 +2571,6 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -2601,7 +2585,6 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "sp-api", @@ -2610,7 +2593,6 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "parity-scale-codec", @@ -2792,7 +2774,6 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "chrono", "frame-election-provider-support", @@ -4571,7 +4552,6 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "futures", "log", @@ -4590,7 +4570,6 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "anyhow", "jsonrpsee", @@ -5152,7 +5131,6 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5167,7 +5145,6 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "frame-system", @@ -5183,7 +5160,6 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "frame-system", @@ -5197,7 +5173,6 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5221,7 +5196,6 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5241,7 +5215,6 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-election-provider-support", "frame-remote-externalities", @@ -5260,7 +5233,6 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5275,7 +5247,6 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "frame-system", @@ -5294,7 +5265,6 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -5318,7 +5288,6 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5336,7 +5305,6 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5355,7 +5323,6 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5372,7 +5339,6 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5389,7 +5355,6 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5407,7 +5372,6 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5430,7 +5394,6 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5443,7 +5406,6 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5461,7 +5423,6 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5479,7 +5440,6 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5502,7 +5462,6 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5518,7 +5477,6 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5538,7 +5496,6 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5555,7 +5512,6 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5572,7 +5528,6 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5589,7 +5544,6 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5605,7 +5559,6 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5621,7 +5574,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "frame-system", @@ -5638,7 +5590,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5658,7 +5609,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -5669,7 +5619,6 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "frame-system", @@ -5686,7 +5635,6 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5710,7 +5658,6 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5727,7 +5674,6 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5742,7 +5688,6 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5760,7 +5705,6 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5775,7 +5719,6 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5794,7 +5737,6 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5811,7 +5753,6 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "frame-system", @@ -5832,7 +5773,6 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5848,7 +5788,6 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "frame-system", @@ -5862,7 +5801,6 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5885,7 +5823,6 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5896,7 +5833,6 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "log", "sp-arithmetic", @@ -5905,7 +5841,6 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "sp-api", @@ -5914,7 +5849,6 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5931,7 +5865,6 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "frame-system", @@ -5945,7 +5878,6 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5963,7 +5895,6 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5982,7 +5913,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-support", "frame-system", @@ -5998,7 +5928,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6014,7 +5943,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6026,7 +5954,6 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6043,7 +5970,6 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6058,7 +5984,6 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6074,7 +5999,6 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6089,7 +6013,6 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-benchmarking", "frame-support", @@ -9014,7 +8937,6 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "log", "sp-core", @@ -9025,7 +8947,6 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "futures", @@ -9053,7 +8974,6 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "futures", "futures-timer", @@ -9076,7 +8996,6 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9091,7 +9010,6 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -9110,7 +9028,6 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9121,7 +9038,6 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "array-bytes", "chrono", @@ -9161,7 +9077,6 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "fnv", "futures", @@ -9187,7 +9102,6 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "hash-db", "kvdb", @@ -9213,7 +9127,6 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "futures", @@ -9238,7 +9151,6 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "fork-tree", @@ -9277,7 +9189,6 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "futures", "jsonrpsee", @@ -9299,7 +9210,6 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "array-bytes", "async-trait", @@ -9334,7 +9244,6 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "futures", "jsonrpsee", @@ -9353,7 +9262,6 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9366,7 +9274,6 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "ahash 0.8.2", "array-bytes", @@ -9406,7 +9313,6 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "finality-grandpa", "futures", @@ -9426,7 +9332,6 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "futures", @@ -9449,7 +9354,6 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "lru 0.8.1", "parity-scale-codec", @@ -9473,7 +9377,6 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -9486,7 +9389,6 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "log", "sc-allocator", @@ -9499,7 +9401,6 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "anyhow", "cfg-if", @@ -9517,7 +9418,6 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "ansi_term", "futures", @@ -9533,7 +9433,6 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "array-bytes", "async-trait", @@ -9548,7 +9447,6 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "array-bytes", "async-channel", @@ -9592,7 +9490,6 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "cid", "futures", @@ -9612,7 +9509,6 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "array-bytes", "async-trait", @@ -9640,7 +9536,6 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "ahash 0.8.2", "futures", @@ -9659,7 +9554,6 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "array-bytes", "futures", @@ -9681,7 +9575,6 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "array-bytes", "async-trait", @@ -9715,7 +9608,6 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "array-bytes", "futures", @@ -9735,7 +9627,6 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "array-bytes", "bytes", @@ -9766,7 +9657,6 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "futures", "libp2p", @@ -9779,7 +9669,6 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9788,7 +9677,6 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "futures", "jsonrpsee", @@ -9818,7 +9706,6 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9837,7 +9724,6 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "http", "jsonrpsee", @@ -9852,7 +9738,6 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "array-bytes", "futures", @@ -9878,7 +9763,6 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "directories", @@ -9944,7 +9828,6 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "log", "parity-scale-codec", @@ -9955,7 +9838,6 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "clap 4.0.15", "fs4", @@ -9971,7 +9853,6 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9990,7 +9871,6 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "futures", "libc", @@ -10009,7 +9889,6 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "chrono", "futures", @@ -10028,7 +9907,6 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "ansi_term", "atty", @@ -10059,7 +9937,6 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10070,7 +9947,6 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "futures", @@ -10097,7 +9973,6 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "futures", @@ -10111,7 +9986,6 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-channel", "futures", @@ -10626,7 +10500,6 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "hash-db", "log", @@ -10644,7 +10517,6 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "Inflector", "blake2", @@ -10658,7 +10530,6 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "scale-info", @@ -10671,7 +10542,6 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "integer-sqrt", "num-traits", @@ -10685,7 +10555,6 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "scale-info", @@ -10698,7 +10567,6 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "sp-api", @@ -10710,7 +10578,6 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "futures", "log", @@ -10728,7 +10595,6 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "futures", @@ -10743,7 +10609,6 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "parity-scale-codec", @@ -10761,7 +10626,6 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "merlin", @@ -10784,7 +10648,6 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "lazy_static", "parity-scale-codec", @@ -10803,7 +10666,6 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "finality-grandpa", "log", @@ -10821,7 +10683,6 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "scale-info", @@ -10833,7 +10694,6 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "scale-info", @@ -10846,7 +10706,6 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "array-bytes", "base58", @@ -10889,7 +10748,6 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "blake2b_simd", "byteorder", @@ -10903,7 +10761,6 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "proc-macro2", "quote", @@ -10914,7 +10771,6 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10923,7 +10779,6 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "proc-macro2", "quote", @@ -10933,7 +10788,6 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "environmental", "parity-scale-codec", @@ -10944,7 +10798,6 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10959,7 +10812,6 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "bytes", "ed25519", @@ -10984,7 +10836,6 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "lazy_static", "sp-core", @@ -10995,7 +10846,6 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "futures", @@ -11012,7 +10862,6 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "thiserror", "zstd", @@ -11021,7 +10870,6 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -11039,7 +10887,6 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "scale-info", @@ -11053,7 +10900,6 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "sp-api", "sp-core", @@ -11063,7 +10909,6 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "backtrace", "lazy_static", @@ -11073,7 +10918,6 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "rustc-hash", "serde", @@ -11083,7 +10927,6 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "either", "hash256-std-hasher", @@ -11105,7 +10948,6 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11123,7 +10965,6 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "Inflector", "proc-macro-crate", @@ -11135,7 +10976,6 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "scale-info", @@ -11149,7 +10989,6 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "scale-info", @@ -11161,7 +11000,6 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "hash-db", "log", @@ -11181,12 +11019,10 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" [[package]] name = "sp-storage" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11199,7 +11035,6 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "futures-timer", @@ -11214,7 +11049,6 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "sp-std", @@ -11226,7 +11060,6 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "sp-api", "sp-runtime", @@ -11235,7 +11068,6 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "log", @@ -11251,7 +11083,6 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "ahash 0.8.2", "hash-db", @@ -11274,7 +11105,6 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11291,7 +11121,6 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11302,7 +11131,6 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -11316,7 +11144,6 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "parity-scale-codec", "scale-info", @@ -11536,7 +11363,6 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "platforms", ] @@ -11544,7 +11370,6 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11563,7 +11388,6 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "hyper", "log", @@ -11575,7 +11399,6 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "jsonrpsee", @@ -11588,7 +11411,6 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "jsonrpsee", "log", @@ -11607,7 +11429,6 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "array-bytes", "async-trait", @@ -11633,7 +11454,6 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11643,7 +11463,6 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11654,7 +11473,6 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "ansi_term", "build-helper", @@ -12455,7 +12273,6 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#bd52212085051561aee5784ff48b295894b6509d" dependencies = [ "async-trait", "clap 4.0.15", @@ -14038,3 +13855,267 @@ dependencies = [ "cc", "libc", ] + +[[patch.unused]] +name = "chain-spec-builder" +version = "2.0.0" + +[[patch.unused]] +name = "frame-benchmarking-pallet-pov" +version = "4.0.0-dev" + +[[patch.unused]] +name = "frame-election-solution-type-fuzzer" +version = "2.0.0-alpha.5" + +[[patch.unused]] +name = "frame-support-test-compile-pass" +version = "4.0.0-dev" + +[[patch.unused]] +name = "kitchensink-runtime" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-bench" +version = "0.9.0-dev" + +[[patch.unused]] +name = "node-cli" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-executor" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-inspect" +version = "0.9.0-dev" + +[[patch.unused]] +name = "node-primitives" +version = "2.0.0" + +[[patch.unused]] +name = "node-rpc" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-runtime-generate-bags" +version = "3.0.0" + +[[patch.unused]] +name = "node-template" +version = "4.0.0-dev" + +[[patch.unused]] +name = "node-template-runtime" +version = "4.0.0-dev" + +[[patch.unused]] +name = "node-testing" +version = "3.0.0-dev" + +[[patch.unused]] +name = "pallet-alliance" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-asset-tx-payment" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-atomic-swap" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-aura" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-bags-list-fuzzer" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-contracts" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-contracts-primitives" +version = "7.0.0" + +[[patch.unused]] +name = "pallet-contracts-proc-macro" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-core-fellowship" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-example-basic" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-example-offchain-worker" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-glutton" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-insecure-randomness-collective-flip" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-lottery" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-message-queue" +version = "7.0.0-dev" + +[[patch.unused]] +name = "pallet-nfts" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-nfts-runtime-api" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-nicks" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-node-authorization" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-nomination-pools-fuzzer" +version = "2.0.0" + +[[patch.unused]] +name = "pallet-nomination-pools-test-staking" +version = "1.0.0" + +[[patch.unused]] +name = "pallet-remark" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-root-offences" +version = "1.0.0-dev" + +[[patch.unused]] +name = "pallet-root-testing" +version = "1.0.0-dev" + +[[patch.unused]] +name = "pallet-salary" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-scored-pool" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-template" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-transaction-storage" +version = "4.0.0-dev" + +[[patch.unused]] +name = "sc-consensus-aura" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sc-consensus-manual-seal" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sc-consensus-pow" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sc-network-test" +version = "0.8.0" + +[[patch.unused]] +name = "sc-runtime-test" +version = "2.0.0" + +[[patch.unused]] +name = "sc-service-test" +version = "2.0.0" + +[[patch.unused]] +name = "sp-api-test" +version = "2.0.1" + +[[patch.unused]] +name = "sp-application-crypto-test" +version = "2.0.0" + +[[patch.unused]] +name = "sp-arithmetic-fuzzer" +version = "2.0.0" + +[[patch.unused]] +name = "sp-consensus-pow" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sp-npos-elections-fuzzer" +version = "2.0.0-alpha.5" + +[[patch.unused]] +name = "sp-runtime-interface-test" +version = "2.0.0" + +[[patch.unused]] +name = "sp-runtime-interface-test-wasm" +version = "2.0.0" + +[[patch.unused]] +name = "sp-runtime-interface-test-wasm-deprecated" +version = "2.0.0" + +[[patch.unused]] +name = "sp-serializer" +version = "4.0.0-dev" + +[[patch.unused]] +name = "sp-test-primitives" +version = "2.0.0" + +[[patch.unused]] +name = "subkey" +version = "3.0.0" + +[[patch.unused]] +name = "substrate-frame-cli" +version = "4.0.0-dev" + +[[patch.unused]] +name = "substrate-frame-rpc-support" +version = "3.0.0" + +[[patch.unused]] +name = "substrate-test-runtime" +version = "2.0.0" + +[[patch.unused]] +name = "substrate-test-runtime-client" +version = "2.0.0" + +[[patch.unused]] +name = "substrate-test-runtime-transaction-pool" +version = "2.0.0" + +[[patch.unused]] +name = "substrate-test-utils-test-crate" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index 5ec0a74d5cac..dfbc9411f1c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -208,6 +208,256 @@ runtime-metrics = [ "polkadot-cli/runtime-metrics" ] pyroscope = ["polkadot-cli/pyroscope"] jemalloc-allocator = ["polkadot-node-core-pvf/jemalloc-allocator", "polkadot-overseer/jemalloc-allocator"] +node-template = { path = "/Users/gav/Core/substrate/bin/node-template/node" } +frame-benchmarking = { path = "/Users/gav/Core/substrate/frame/benchmarking" } +frame-support = { path = "/Users/gav/Core/substrate/frame/support" } +frame-support-procedural = { path = "/Users/gav/Core/substrate/frame/support/procedural" } +frame-support-procedural-tools = { path = "/Users/gav/Core/substrate/frame/support/procedural/tools" } +frame-support-procedural-tools-derive = { path = "/Users/gav/Core/substrate/frame/support/procedural/tools/derive" } +sp-api = { path = "/Users/gav/Core/substrate/primitives/api" } +sp-api-proc-macro = { path = "/Users/gav/Core/substrate/primitives/api/proc-macro" } +sp-core = { path = "/Users/gav/Core/substrate/primitives/core" } +sp-core-hashing = { path = "/Users/gav/Core/substrate/primitives/core/hashing" } +sp-std = { path = "/Users/gav/Core/substrate/primitives/std" } +sp-debug-derive = { path = "/Users/gav/Core/substrate/primitives/debug-derive" } +sp-externalities = { path = "/Users/gav/Core/substrate/primitives/externalities" } +sp-storage = { path = "/Users/gav/Core/substrate/primitives/storage" } +sp-runtime-interface = { path = "/Users/gav/Core/substrate/primitives/runtime-interface" } +sp-runtime-interface-proc-macro = { path = "/Users/gav/Core/substrate/primitives/runtime-interface/proc-macro" } +sp-tracing = { path = "/Users/gav/Core/substrate/primitives/tracing" } +sp-wasm-interface = { path = "/Users/gav/Core/substrate/primitives/wasm-interface" } +sp-io = { path = "/Users/gav/Core/substrate/primitives/io" } +sp-keystore = { path = "/Users/gav/Core/substrate/primitives/keystore" } +sp-state-machine = { path = "/Users/gav/Core/substrate/primitives/state-machine" } +sp-panic-handler = { path = "/Users/gav/Core/substrate/primitives/panic-handler" } +sp-trie = { path = "/Users/gav/Core/substrate/primitives/trie" } +sp-runtime = { path = "/Users/gav/Core/substrate/primitives/runtime" } +sp-application-crypto = { path = "/Users/gav/Core/substrate/primitives/application-crypto" } +sp-arithmetic = { path = "/Users/gav/Core/substrate/primitives/arithmetic" } +sp-weights = { path = "/Users/gav/Core/substrate/primitives/weights" } +substrate-test-runtime-client = { path = "/Users/gav/Core/substrate/test-utils/runtime/client" } +sc-block-builder = { path = "/Users/gav/Core/substrate/client/block-builder" } +sc-client-api = { path = "/Users/gav/Core/substrate/client/api" } +substrate-prometheus-endpoint = { path = "/Users/gav/Core/substrate/utils/prometheus" } +sc-executor = { path = "/Users/gav/Core/substrate/client/executor" } +sc-executor-common = { path = "/Users/gav/Core/substrate/client/executor/common" } +sc-allocator = { path = "/Users/gav/Core/substrate/client/allocator" } +sp-maybe-compressed-blob = { path = "/Users/gav/Core/substrate/primitives/maybe-compressed-blob" } +sc-executor-wasmi = { path = "/Users/gav/Core/substrate/client/executor/wasmi" } +sc-executor-wasmtime = { path = "/Users/gav/Core/substrate/client/executor/wasmtime" } +sc-runtime-test = { path = "/Users/gav/Core/substrate/client/executor/runtime-test" } +substrate-wasm-builder = { path = "/Users/gav/Core/substrate/utils/wasm-builder" } +sp-version = { path = "/Users/gav/Core/substrate/primitives/version" } +sp-core-hashing-proc-macro = { path = "/Users/gav/Core/substrate/primitives/core/hashing/proc-macro" } +sp-version-proc-macro = { path = "/Users/gav/Core/substrate/primitives/version/proc-macro" } +sc-tracing = { path = "/Users/gav/Core/substrate/client/tracing" } +sc-rpc-server = { path = "/Users/gav/Core/substrate/client/rpc-servers" } +sc-tracing-proc-macro = { path = "/Users/gav/Core/substrate/client/tracing/proc-macro" } +sp-blockchain = { path = "/Users/gav/Core/substrate/primitives/blockchain" } +sp-consensus = { path = "/Users/gav/Core/substrate/primitives/consensus/common" } +sp-inherents = { path = "/Users/gav/Core/substrate/primitives/inherents" } +sp-test-primitives = { path = "/Users/gav/Core/substrate/primitives/test-primitives" } +sp-database = { path = "/Users/gav/Core/substrate/primitives/database" } +sp-rpc = { path = "/Users/gav/Core/substrate/primitives/rpc" } +substrate-test-runtime = { path = "/Users/gav/Core/substrate/test-utils/runtime" } +frame-system = { path = "/Users/gav/Core/substrate/frame/system" } +frame-system-rpc-runtime-api = { path = "/Users/gav/Core/substrate/frame/system/rpc/runtime-api" } +pallet-babe = { path = "/Users/gav/Core/substrate/frame/babe" } +pallet-authorship = { path = "/Users/gav/Core/substrate/frame/authorship" } +pallet-session = { path = "/Users/gav/Core/substrate/frame/session" } +pallet-timestamp = { path = "/Users/gav/Core/substrate/frame/timestamp" } +sp-timestamp = { path = "/Users/gav/Core/substrate/primitives/timestamp" } +sp-session = { path = "/Users/gav/Core/substrate/primitives/session" } +sp-staking = { path = "/Users/gav/Core/substrate/primitives/staking" } +sp-consensus-babe = { path = "/Users/gav/Core/substrate/primitives/consensus/babe" } +sp-consensus-slots = { path = "/Users/gav/Core/substrate/primitives/consensus/slots" } +sp-consensus-vrf = { path = "/Users/gav/Core/substrate/primitives/consensus/vrf" } +frame-election-provider-support = { path = "/Users/gav/Core/substrate/frame/election-provider-support" } +frame-election-provider-solution-type = { path = "/Users/gav/Core/substrate/frame/election-provider-support/solution-type" } +sp-npos-elections = { path = "/Users/gav/Core/substrate/primitives/npos-elections" } +substrate-test-utils = { path = "/Users/gav/Core/substrate/test-utils" } +substrate-test-utils-derive = { path = "/Users/gav/Core/substrate/test-utils/derive" } +sc-service = { path = "/Users/gav/Core/substrate/client/service" } +sc-chain-spec = { path = "/Users/gav/Core/substrate/client/chain-spec" } +sc-chain-spec-derive = { path = "/Users/gav/Core/substrate/client/chain-spec/derive" } +sc-network = { path = "/Users/gav/Core/substrate/client/network" } +sc-consensus = { path = "/Users/gav/Core/substrate/client/consensus/common" } +sc-utils = { path = "/Users/gav/Core/substrate/client/utils" } +sc-network-common = { path = "/Users/gav/Core/substrate/client/network/common" } +sc-peerset = { path = "/Users/gav/Core/substrate/client/peerset" } +sp-consensus-grandpa = { path = "/Users/gav/Core/substrate/primitives/consensus/grandpa" } +sc-network-light = { path = "/Users/gav/Core/substrate/client/network/light" } +sc-network-sync = { path = "/Users/gav/Core/substrate/client/network/sync" } +fork-tree = { path = "/Users/gav/Core/substrate/utils/fork-tree" } +sc-telemetry = { path = "/Users/gav/Core/substrate/client/telemetry" } +sc-client-db = { path = "/Users/gav/Core/substrate/client/db" } +sc-state-db = { path = "/Users/gav/Core/substrate/client/state-db" } +kitchensink-runtime = { path = "/Users/gav/Core/substrate/bin/node/runtime" } +frame-benchmarking-pallet-pov = { path = "/Users/gav/Core/substrate/frame/benchmarking/pov" } +frame-executive = { path = "/Users/gav/Core/substrate/frame/executive" } +frame-try-runtime = { path = "/Users/gav/Core/substrate/frame/try-runtime" } +pallet-balances = { path = "/Users/gav/Core/substrate/frame/balances" } +pallet-transaction-payment = { path = "/Users/gav/Core/substrate/frame/transaction-payment" } +frame-system-benchmarking = { path = "/Users/gav/Core/substrate/frame/system/benchmarking" } +node-primitives = { path = "/Users/gav/Core/substrate/bin/node/primitives" } +pallet-alliance = { path = "/Users/gav/Core/substrate/frame/alliance" } +pallet-collective = { path = "/Users/gav/Core/substrate/frame/collective" } +pallet-identity = { path = "/Users/gav/Core/substrate/frame/identity" } +pallet-asset-tx-payment = { path = "/Users/gav/Core/substrate/frame/transaction-payment/asset-tx-payment" } +pallet-assets = { path = "/Users/gav/Core/substrate/frame/assets" } +pallet-authority-discovery = { path = "/Users/gav/Core/substrate/frame/authority-discovery" } +sp-authority-discovery = { path = "/Users/gav/Core/substrate/primitives/authority-discovery" } +pallet-bags-list = { path = "/Users/gav/Core/substrate/frame/bags-list" } +pallet-bounties = { path = "/Users/gav/Core/substrate/frame/bounties" } +pallet-treasury = { path = "/Users/gav/Core/substrate/frame/treasury" } +pallet-utility = { path = "/Users/gav/Core/substrate/frame/utility" } +pallet-root-testing = { path = "/Users/gav/Core/substrate/frame/root-testing" } +pallet-child-bounties = { path = "/Users/gav/Core/substrate/frame/child-bounties" } +pallet-contracts = { path = "/Users/gav/Core/substrate/frame/contracts" } +pallet-contracts-primitives = { path = "/Users/gav/Core/substrate/frame/contracts/primitives" } +pallet-contracts-proc-macro = { path = "/Users/gav/Core/substrate/frame/contracts/proc-macro" } +pallet-insecure-randomness-collective-flip = { path = "/Users/gav/Core/substrate/frame/insecure-randomness-collective-flip" } +pallet-conviction-voting = { path = "/Users/gav/Core/substrate/frame/conviction-voting" } +pallet-scheduler = { path = "/Users/gav/Core/substrate/frame/scheduler" } +pallet-preimage = { path = "/Users/gav/Core/substrate/frame/preimage" } +pallet-core-fellowship = { path = "/Users/gav/Core/substrate/frame/core-fellowship" } +pallet-ranked-collective = { path = "/Users/gav/Core/substrate/frame/ranked-collective" } +pallet-salary = { path = "/Users/gav/Core/substrate/frame/salary" } +pallet-democracy = { path = "/Users/gav/Core/substrate/frame/democracy" } +pallet-election-provider-multi-phase = { path = "/Users/gav/Core/substrate/frame/election-provider-multi-phase" } +pallet-election-provider-support-benchmarking = { path = "/Users/gav/Core/substrate/frame/election-provider-support/benchmarking" } +pallet-elections-phragmen = { path = "/Users/gav/Core/substrate/frame/elections-phragmen" } +pallet-fast-unstake = { path = "/Users/gav/Core/substrate/frame/fast-unstake" } +pallet-staking = { path = "/Users/gav/Core/substrate/frame/staking" } +pallet-staking-reward-curve = { path = "/Users/gav/Core/substrate/frame/staking/reward-curve" } +pallet-glutton = { path = "/Users/gav/Core/substrate/frame/glutton" } +pallet-grandpa = { path = "/Users/gav/Core/substrate/frame/grandpa" } +pallet-offences = { path = "/Users/gav/Core/substrate/frame/offences" } +sp-keyring = { path = "/Users/gav/Core/substrate/primitives/keyring" } +pallet-im-online = { path = "/Users/gav/Core/substrate/frame/im-online" } +pallet-indices = { path = "/Users/gav/Core/substrate/frame/indices" } +pallet-lottery = { path = "/Users/gav/Core/substrate/frame/lottery" } +frame-support-test = { path = "/Users/gav/Core/substrate/frame/support/test" } +frame-support-test-pallet = { path = "/Users/gav/Core/substrate/frame/support/test/pallet" } +pallet-membership = { path = "/Users/gav/Core/substrate/frame/membership" } +pallet-message-queue = { path = "/Users/gav/Core/substrate/frame/message-queue" } +pallet-mmr = { path = "/Users/gav/Core/substrate/frame/merkle-mountain-range" } +sp-mmr-primitives = { path = "/Users/gav/Core/substrate/primitives/merkle-mountain-range" } +pallet-multisig = { path = "/Users/gav/Core/substrate/frame/multisig" } +pallet-nfts = { path = "/Users/gav/Core/substrate/frame/nfts" } +pallet-nfts-runtime-api = { path = "/Users/gav/Core/substrate/frame/nfts/runtime-api" } +pallet-nis = { path = "/Users/gav/Core/substrate/frame/nis" } +pallet-nomination-pools = { path = "/Users/gav/Core/substrate/frame/nomination-pools" } +pallet-nomination-pools-benchmarking = { path = "/Users/gav/Core/substrate/frame/nomination-pools/benchmarking" } +pallet-nomination-pools-runtime-api = { path = "/Users/gav/Core/substrate/frame/nomination-pools/runtime-api" } +pallet-offences-benchmarking = { path = "/Users/gav/Core/substrate/frame/offences/benchmarking" } +pallet-proxy = { path = "/Users/gav/Core/substrate/frame/proxy" } +pallet-recovery = { path = "/Users/gav/Core/substrate/frame/recovery" } +pallet-referenda = { path = "/Users/gav/Core/substrate/frame/referenda" } +pallet-remark = { path = "/Users/gav/Core/substrate/frame/remark" } +pallet-session-benchmarking = { path = "/Users/gav/Core/substrate/frame/session/benchmarking" } +pallet-society = { path = "/Users/gav/Core/substrate/frame/society" } +pallet-staking-runtime-api = { path = "/Users/gav/Core/substrate/frame/staking/runtime-api" } +pallet-state-trie-migration = { path = "/Users/gav/Core/substrate/frame/state-trie-migration" } +frame-remote-externalities = { path = "/Users/gav/Core/substrate/utils/frame/remote-externalities" } +substrate-rpc-client = { path = "/Users/gav/Core/substrate/utils/frame/rpc/client" } +sc-rpc-api = { path = "/Users/gav/Core/substrate/client/rpc-api" } +sc-transaction-pool-api = { path = "/Users/gav/Core/substrate/client/transaction-pool/api" } +substrate-state-trie-migration-rpc = { path = "/Users/gav/Core/substrate/utils/frame/rpc/state-trie-migration-rpc" } +pallet-sudo = { path = "/Users/gav/Core/substrate/frame/sudo" } +pallet-tips = { path = "/Users/gav/Core/substrate/frame/tips" } +pallet-transaction-payment-rpc-runtime-api = { path = "/Users/gav/Core/substrate/frame/transaction-payment/rpc/runtime-api" } +pallet-transaction-storage = { path = "/Users/gav/Core/substrate/frame/transaction-storage" } +sp-transaction-storage-proof = { path = "/Users/gav/Core/substrate/primitives/transaction-storage-proof" } +pallet-uniques = { path = "/Users/gav/Core/substrate/frame/uniques" } +pallet-vesting = { path = "/Users/gav/Core/substrate/frame/vesting" } +pallet-whitelist = { path = "/Users/gav/Core/substrate/frame/whitelist" } +sp-block-builder = { path = "/Users/gav/Core/substrate/primitives/block-builder" } +sp-offchain = { path = "/Users/gav/Core/substrate/primitives/offchain" } +sp-transaction-pool = { path = "/Users/gav/Core/substrate/primitives/transaction-pool" } +sc-informant = { path = "/Users/gav/Core/substrate/client/informant" } +sc-keystore = { path = "/Users/gav/Core/substrate/client/keystore" } +sc-network-bitswap = { path = "/Users/gav/Core/substrate/client/network/bitswap" } +sc-network-transactions = { path = "/Users/gav/Core/substrate/client/network/transactions" } +sc-offchain = { path = "/Users/gav/Core/substrate/client/offchain" } +sc-transaction-pool = { path = "/Users/gav/Core/substrate/client/transaction-pool" } +substrate-test-runtime-transaction-pool = { path = "/Users/gav/Core/substrate/test-utils/runtime/transaction-pool" } +sc-rpc = { path = "/Users/gav/Core/substrate/client/rpc" } +sc-rpc-spec-v2 = { path = "/Users/gav/Core/substrate/client/rpc-spec-v2" } +sc-storage-monitor = { path = "/Users/gav/Core/substrate/client/storage-monitor" } +sc-sysinfo = { path = "/Users/gav/Core/substrate/client/sysinfo" } +pallet-beefy-mmr = { path = "/Users/gav/Core/substrate/frame/beefy-mmr" } +binary-merkle-tree = { path = "/Users/gav/Core/substrate/utils/binary-merkle-tree" } +pallet-beefy = { path = "/Users/gav/Core/substrate/frame/beefy" } +sp-consensus-beefy = { path = "/Users/gav/Core/substrate/primitives/consensus/beefy" } +sp-consensus-aura = { path = "/Users/gav/Core/substrate/primitives/consensus/aura" } +substrate-test-client = { path = "/Users/gav/Core/substrate/test-utils/client" } +sp-runtime-interface-test-wasm = { path = "/Users/gav/Core/substrate/primitives/runtime-interface/test-wasm" } +sp-serializer = { path = "/Users/gav/Core/substrate/primitives/serializer" } +frame-benchmarking-cli = { path = "/Users/gav/Core/substrate/utils/frame/benchmarking-cli" } +sc-cli = { path = "/Users/gav/Core/substrate/client/cli" } +node-template-runtime = { path = "/Users/gav/Core/substrate/bin/node-template/runtime" } +pallet-aura = { path = "/Users/gav/Core/substrate/frame/aura" } +pallet-template = { path = "/Users/gav/Core/substrate/bin/node-template/pallets/template" } +pallet-transaction-payment-rpc = { path = "/Users/gav/Core/substrate/frame/transaction-payment/rpc" } +sc-basic-authorship = { path = "/Users/gav/Core/substrate/client/basic-authorship" } +sc-proposer-metrics = { path = "/Users/gav/Core/substrate/client/proposer-metrics" } +sc-consensus-aura = { path = "/Users/gav/Core/substrate/client/consensus/aura" } +sc-consensus-slots = { path = "/Users/gav/Core/substrate/client/consensus/slots" } +sc-network-test = { path = "/Users/gav/Core/substrate/client/network/test" } +sc-consensus-grandpa = { path = "/Users/gav/Core/substrate/client/consensus/grandpa" } +sc-network-gossip = { path = "/Users/gav/Core/substrate/client/network-gossip" } +substrate-frame-rpc-system = { path = "/Users/gav/Core/substrate/utils/frame/rpc/system" } +try-runtime-cli = { path = "/Users/gav/Core/substrate/utils/frame/try-runtime/cli" } +substrate-build-script-utils = { path = "/Users/gav/Core/substrate/utils/build-script-utils" } +node-bench = { path = "/Users/gav/Core/substrate/bin/node/bench" } +node-testing = { path = "/Users/gav/Core/substrate/bin/node/testing" } +node-executor = { path = "/Users/gav/Core/substrate/bin/node/executor" } +node-cli = { path = "/Users/gav/Core/substrate/bin/node/cli" } +node-inspect = { path = "/Users/gav/Core/substrate/bin/node/inspect" } +node-rpc = { path = "/Users/gav/Core/substrate/bin/node/rpc" } +mmr-rpc = { path = "/Users/gav/Core/substrate/client/merkle-mountain-range/rpc" } +sc-consensus-babe = { path = "/Users/gav/Core/substrate/client/consensus/babe" } +sc-consensus-epochs = { path = "/Users/gav/Core/substrate/client/consensus/epochs" } +sc-consensus-babe-rpc = { path = "/Users/gav/Core/substrate/client/consensus/babe/rpc" } +sc-consensus-grandpa-rpc = { path = "/Users/gav/Core/substrate/client/consensus/grandpa/rpc" } +sc-sync-state-rpc = { path = "/Users/gav/Core/substrate/client/sync-state-rpc" } +sc-authority-discovery = { path = "/Users/gav/Core/substrate/client/authority-discovery" } +sc-service-test = { path = "/Users/gav/Core/substrate/client/service/test" } +substrate-frame-cli = { path = "/Users/gav/Core/substrate/utils/frame/frame-utilities-cli" } +chain-spec-builder = { path = "/Users/gav/Core/substrate/bin/utils/chain-spec-builder" } +subkey = { path = "/Users/gav/Core/substrate/bin/utils/subkey" } +sc-consensus-beefy = { path = "/Users/gav/Core/substrate/client/consensus/beefy" } +sc-consensus-beefy-rpc = { path = "/Users/gav/Core/substrate/client/consensus/beefy/rpc" } +sc-consensus-manual-seal = { path = "/Users/gav/Core/substrate/client/consensus/manual-seal" } +sc-consensus-pow = { path = "/Users/gav/Core/substrate/client/consensus/pow" } +sp-consensus-pow = { path = "/Users/gav/Core/substrate/primitives/consensus/pow" } +mmr-gadget = { path = "/Users/gav/Core/substrate/client/merkle-mountain-range" } +pallet-atomic-swap = { path = "/Users/gav/Core/substrate/frame/atomic-swap" } +pallet-bags-list-fuzzer = { path = "/Users/gav/Core/substrate/frame/bags-list/fuzzer" } +pallet-bags-list-remote-tests = { path = "/Users/gav/Core/substrate/frame/bags-list/remote-tests" } +frame-election-solution-type-fuzzer = { path = "/Users/gav/Core/substrate/frame/election-provider-support/solution-type/fuzzer" } +pallet-example-basic = { path = "/Users/gav/Core/substrate/frame/examples/basic" } +pallet-example-offchain-worker = { path = "/Users/gav/Core/substrate/frame/examples/offchain-worker" } +pallet-nicks = { path = "/Users/gav/Core/substrate/frame/nicks" } +pallet-node-authorization = { path = "/Users/gav/Core/substrate/frame/node-authorization" } +pallet-nomination-pools-fuzzer = { path = "/Users/gav/Core/substrate/frame/nomination-pools/fuzzer" } +pallet-nomination-pools-test-staking = { path = "/Users/gav/Core/substrate/frame/nomination-pools/test-staking" } +pallet-scored-pool = { path = "/Users/gav/Core/substrate/frame/scored-pool" } +pallet-staking-reward-fn = { path = "/Users/gav/Core/substrate/frame/staking/reward-fn" } +pallet-root-offences = { path = "/Users/gav/Core/substrate/frame/root-offences" } +frame-support-test-compile-pass = { path = "/Users/gav/Core/substrate/frame/support/test/compile_pass" } +sp-api-test = { path = "/Users/gav/Core/substrate/primitives/api/test" } +sp-application-crypto-test = { path = "/Users/gav/Core/substrate/primitives/application-crypto/test" } +sp-arithmetic-fuzzer = { path = "/Users/gav/Core/substrate/primitives/arithmetic/fuzzer" } +sp-npos-elections-fuzzer = { path = "/Users/gav/Core/substrate/primitives/npos-elections/fuzzer" } +sp-runtime-interface-test = { path = "/Users/gav/Core/substrate/primitives/runtime-interface/test" } +sp-runtime-interface-test-wasm-deprecated = { path = "/Users/gav/Core/substrate/primitives/runtime-interface/test-wasm-deprecated" } +substrate-test-utils-test-crate = { path = "/Users/gav/Core/substrate/test-utils/test-crate" } +substrate-frame-rpc-support = { path = "/Users/gav/Core/substrate/utils/frame/rpc/support" } +generate-bags = { path = "/Users/gav/Core/substrate/utils/frame/generate-bags" } +node-runtime-generate-bags = { path = "/Users/gav/Core/substrate/utils/frame/generate-bags/node-runtime" } + # Configuration for building a .deb package - for use with `cargo-deb` [package.metadata.deb] name = "polkadot" diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 03c04ad9cb5d..cee6be4c7524 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -20,6 +20,7 @@ // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit = "256"] +use scale_info::TypeInfo; use pallet_nis::WithMaximumOf; use parity_scale_codec::{Decode, Encode, MaxEncodedLen}; use primitives::{ @@ -303,6 +304,10 @@ impl pallet_balances::Config for Runtime { type MaxReserves = MaxReserves; type ReserveIdentifier = [u8; 8]; type WeightInfo = weights::pallet_balances::WeightInfo; + type FreezeIdentifier = (); + type MaxFreezes = (); + type HoldIdentifier = HoldReason; + type MaxHolds = ConstU32<1>; } parameter_types! { @@ -1236,7 +1241,6 @@ impl pallet_balances::Config for Runtime { type ExistentialDeposit = ConstU128<10_000_000_000>; // One KTC cent type AccountStore = StorageMapShim< pallet_balances::Account, - frame_system::Provider, AccountId, pallet_balances::AccountData, >; @@ -1244,6 +1248,10 @@ impl pallet_balances::Config for Runtime { type MaxReserves = ConstU32<4>; type ReserveIdentifier = [u8; 8]; type WeightInfo = weights::pallet_balances_nis_counterpart_balances::WeightInfo; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } parameter_types! { @@ -1256,7 +1264,27 @@ parameter_types! { pub const ThawThrottle: (Perquintill, BlockNumber) = (Perquintill::from_percent(25), 5); pub storage NisTarget: Perquintill = Perquintill::zero(); pub const NisPalletId: PalletId = PalletId(*b"py/nis "); - pub const NisReserveId: [u8; 8] = *b"py/nis "; + pub const NisHoldReason: HoldReason = HoldReason::Nis(HoldReasonNis::NftReceipt); +} + +/// A reason for placing a hold on funds. +#[derive( + Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Encode, Decode, MaxEncodedLen, Debug, TypeInfo, +)] +pub enum HoldReason { + /// Some reason of the NIS pallet. + #[codec(index = 38)] + Nis(HoldReasonNis), +} + +/// A reason for the NIS pallet placing a hold on funds. +#[derive( + Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Encode, Decode, MaxEncodedLen, Debug, TypeInfo, +)] +pub enum HoldReasonNis { + /// The NIS Pallet has reserved it for a non-fungible receipt. + #[codec(index = 0)] + NftReceipt = 0, } impl pallet_nis::Config for Runtime { @@ -1280,7 +1308,7 @@ impl pallet_nis::Config for Runtime { type IntakePeriod = IntakePeriod; type MaxIntakeWeight = MaxIntakeWeight; type ThawThrottle = ThawThrottle; - type ReserveId = NisReserveId; + type HoldReason = NisHoldReason; } parameter_types! { diff --git a/runtime/kusama/src/weights/pallet_balances.rs b/runtime/kusama/src/weights/pallet_balances.rs index ebe7d8bc43d1..1187d68ae859 100644 --- a/runtime/kusama/src/weights/pallet_balances.rs +++ b/runtime/kusama/src/weights/pallet_balances.rs @@ -45,7 +45,7 @@ use sp_std::marker::PhantomData; pub struct WeightInfo(PhantomData); impl pallet_balances::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) - fn transfer() -> Weight { + fn transfer_allow_death() -> Weight { // Minimum execution time: 40_902 nanoseconds. Weight::from_parts(41_638_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) @@ -59,14 +59,14 @@ impl pallet_balances::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: System Account (r:1 w:1) - fn set_balance_creating() -> Weight { + fn force_set_balance_creating() -> Weight { // Minimum execution time: 23_901 nanoseconds. Weight::from_parts(24_238_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: System Account (r:1 w:1) - fn set_balance_killing() -> Weight { + fn force_set_balance_killing() -> Weight { // Minimum execution time: 26_402 nanoseconds. Weight::from_parts(27_026_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) @@ -93,4 +93,7 @@ impl pallet_balances::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } + fn upgrade_accounts(_: u32) -> Weight { + Weight::from_parts(0, 0) + } } diff --git a/runtime/kusama/src/weights/pallet_balances_nis_counterpart_balances.rs b/runtime/kusama/src/weights/pallet_balances_nis_counterpart_balances.rs index 558ea276e1fd..6809c6cb69cd 100644 --- a/runtime/kusama/src/weights/pallet_balances_nis_counterpart_balances.rs +++ b/runtime/kusama/src/weights/pallet_balances_nis_counterpart_balances.rs @@ -51,7 +51,7 @@ impl pallet_balances::WeightInfo for WeightInfo { /// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) /// Storage: NisCounterpartBalances TotalIssuance (r:1 w:1) /// Proof: NisCounterpartBalances TotalIssuance (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen) - fn transfer() -> Weight { + fn transfer_allow_death() -> Weight { // Proof Size summary in bytes: // Measured: `1887` // Estimated: `8288` @@ -79,7 +79,7 @@ impl pallet_balances::WeightInfo for WeightInfo { /// Proof: NisCounterpartBalances Account (max_values: None, max_size: Some(112), added: 2587, mode: MaxEncodedLen) /// Storage: NisCounterpartBalances TotalIssuance (r:1 w:1) /// Proof: NisCounterpartBalances TotalIssuance (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen) - fn set_balance_creating() -> Weight { + fn force_set_balance_creating() -> Weight { // Proof Size summary in bytes: // Measured: `1363` // Estimated: `3098` @@ -95,7 +95,7 @@ impl pallet_balances::WeightInfo for WeightInfo { /// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) /// Storage: NisCounterpartBalances TotalIssuance (r:1 w:1) /// Proof: NisCounterpartBalances TotalIssuance (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen) - fn set_balance_killing() -> Weight { + fn force_set_balance_killing() -> Weight { // Proof Size summary in bytes: // Measured: `1921` // Estimated: `5701` @@ -147,4 +147,7 @@ impl pallet_balances::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } + fn upgrade_accounts(_: u32) -> Weight { + Weight::from_parts(0, 0) + } } diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 98b8f69d2ecf..4933c1c34878 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -296,6 +296,10 @@ impl pallet_balances::Config for Runtime { type MaxReserves = MaxReserves; type ReserveIdentifier = [u8; 8]; type WeightInfo = weights::pallet_balances::WeightInfo; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } parameter_types! { diff --git a/runtime/polkadot/src/weights/pallet_balances.rs b/runtime/polkadot/src/weights/pallet_balances.rs index a784567aad68..a2ff475ab2be 100644 --- a/runtime/polkadot/src/weights/pallet_balances.rs +++ b/runtime/polkadot/src/weights/pallet_balances.rs @@ -47,7 +47,7 @@ pub struct WeightInfo(PhantomData); impl pallet_balances::WeightInfo for WeightInfo { /// Storage: System Account (r:1 w:1) /// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) - fn transfer() -> Weight { + fn transfer_allow_death() -> Weight { // Proof Size summary in bytes: // Measured: `1822` // Estimated: `2603` @@ -71,7 +71,7 @@ impl pallet_balances::WeightInfo for WeightInfo { } /// Storage: System Account (r:1 w:1) /// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) - fn set_balance_creating() -> Weight { + fn force_set_balance_creating() -> Weight { // Proof Size summary in bytes: // Measured: `1856` // Estimated: `2603` @@ -83,7 +83,7 @@ impl pallet_balances::WeightInfo for WeightInfo { } /// Storage: System Account (r:1 w:1) /// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) - fn set_balance_killing() -> Weight { + fn force_set_balance_killing() -> Weight { // Proof Size summary in bytes: // Measured: `1856` // Estimated: `2603` @@ -129,4 +129,7 @@ impl pallet_balances::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } + fn upgrade_accounts(_: u32) -> Weight { + Weight::from_parts(0, 0) + } } diff --git a/runtime/rococo/src/lib.rs b/runtime/rococo/src/lib.rs index 3e5a8849b88d..e62c8ccf72c8 100644 --- a/runtime/rococo/src/lib.rs +++ b/runtime/rococo/src/lib.rs @@ -20,6 +20,7 @@ // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit = "256"] +use scale_info::TypeInfo; use pallet_nis::WithMaximumOf; use parity_scale_codec::{Decode, Encode, MaxEncodedLen}; use primitives::{ @@ -281,6 +282,10 @@ impl pallet_balances::Config for Runtime { type MaxReserves = MaxReserves; type ReserveIdentifier = [u8; 8]; type WeightInfo = weights::pallet_balances::WeightInfo; + type FreezeIdentifier = (); + type MaxFreezes = ConstU32<1>; + type HoldIdentifier = HoldReason; + type MaxHolds = ConstU32<1>; } parameter_types! { @@ -1169,7 +1174,6 @@ impl pallet_balances::Config for Runtime { type ExistentialDeposit = ConstU128<10_000_000_000>; // One RTC cent type AccountStore = StorageMapShim< pallet_balances::Account, - frame_system::Provider, AccountId, pallet_balances::AccountData, >; @@ -1177,6 +1181,10 @@ impl pallet_balances::Config for Runtime { type MaxReserves = ConstU32<4>; type ReserveIdentifier = [u8; 8]; type WeightInfo = weights::pallet_balances_nis_counterpart_balances::WeightInfo; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } parameter_types! { @@ -1189,7 +1197,27 @@ parameter_types! { pub const ThawThrottle: (Perquintill, BlockNumber) = (Perquintill::from_percent(25), 5); pub storage NisTarget: Perquintill = Perquintill::zero(); pub const NisPalletId: PalletId = PalletId(*b"py/nis "); - pub const NisReserveId: [u8; 8] = *b"py/nis "; + pub const NisHoldReason: HoldReason = HoldReason::Nis(HoldReasonNis::NftReceipt); +} + +/// A reason for placing a hold on funds. +#[derive( + Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Encode, Decode, MaxEncodedLen, Debug, TypeInfo, +)] +pub enum HoldReason { + /// Some reason of the NIS pallet. + #[codec(index = 38)] + Nis(HoldReasonNis), +} + +/// A reason for the NIS pallet placing a hold on funds. +#[derive( + Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Encode, Decode, MaxEncodedLen, Debug, TypeInfo, +)] +pub enum HoldReasonNis { + /// The NIS Pallet has reserved it for a non-fungible receipt. + #[codec(index = 0)] + NftReceipt = 0, } impl pallet_nis::Config for Runtime { @@ -1213,7 +1241,7 @@ impl pallet_nis::Config for Runtime { type IntakePeriod = IntakePeriod; type MaxIntakeWeight = MaxIntakeWeight; type ThawThrottle = ThawThrottle; - type ReserveId = NisReserveId; + type HoldReason = NisHoldReason; } parameter_types! { diff --git a/runtime/rococo/src/weights/pallet_balances.rs b/runtime/rococo/src/weights/pallet_balances.rs index 94599ca312df..463f0a2e87b1 100644 --- a/runtime/rococo/src/weights/pallet_balances.rs +++ b/runtime/rococo/src/weights/pallet_balances.rs @@ -45,7 +45,7 @@ use sp_std::marker::PhantomData; pub struct WeightInfo(PhantomData); impl pallet_balances::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) - fn transfer() -> Weight { + fn transfer_allow_death() -> Weight { // Minimum execution time: 40_106 nanoseconds. Weight::from_parts(40_750_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) @@ -59,14 +59,14 @@ impl pallet_balances::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: System Account (r:1 w:1) - fn set_balance_creating() -> Weight { + fn force_set_balance_creating() -> Weight { // Minimum execution time: 23_902 nanoseconds. Weight::from_parts(24_338_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: System Account (r:1 w:1) - fn set_balance_killing() -> Weight { + fn force_set_balance_killing() -> Weight { // Minimum execution time: 26_492 nanoseconds. Weight::from_parts(26_866_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) @@ -93,4 +93,7 @@ impl pallet_balances::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } + fn upgrade_accounts(_: u32) -> Weight { + Weight::from_parts(0, 0) + } } diff --git a/runtime/rococo/src/weights/pallet_balances_nis_counterpart_balances.rs b/runtime/rococo/src/weights/pallet_balances_nis_counterpart_balances.rs index 94feb6398396..ef5fd6c39b0f 100644 --- a/runtime/rococo/src/weights/pallet_balances_nis_counterpart_balances.rs +++ b/runtime/rococo/src/weights/pallet_balances_nis_counterpart_balances.rs @@ -51,7 +51,7 @@ impl pallet_balances::WeightInfo for WeightInfo { /// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) /// Storage: NisCounterpartBalances TotalIssuance (r:1 w:1) /// Proof: NisCounterpartBalances TotalIssuance (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen) - fn transfer() -> Weight { + fn transfer_allow_death() -> Weight { // Proof Size summary in bytes: // Measured: `1876` // Estimated: `8288` @@ -79,7 +79,7 @@ impl pallet_balances::WeightInfo for WeightInfo { /// Proof: NisCounterpartBalances Account (max_values: None, max_size: Some(112), added: 2587, mode: MaxEncodedLen) /// Storage: NisCounterpartBalances TotalIssuance (r:1 w:1) /// Proof: NisCounterpartBalances TotalIssuance (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen) - fn set_balance_creating() -> Weight { + fn force_set_balance_creating() -> Weight { // Proof Size summary in bytes: // Measured: `1352` // Estimated: `3098` @@ -95,7 +95,7 @@ impl pallet_balances::WeightInfo for WeightInfo { /// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) /// Storage: NisCounterpartBalances TotalIssuance (r:1 w:1) /// Proof: NisCounterpartBalances TotalIssuance (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen) - fn set_balance_killing() -> Weight { + fn force_set_balance_killing() -> Weight { // Proof Size summary in bytes: // Measured: `1910` // Estimated: `5701` @@ -147,4 +147,7 @@ impl pallet_balances::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } + fn upgrade_accounts(_: u32) -> Weight { + Weight::from_parts(0, 0) + } } diff --git a/runtime/test-runtime/src/lib.rs b/runtime/test-runtime/src/lib.rs index 2247adfe1733..0f791f0db0b8 100644 --- a/runtime/test-runtime/src/lib.rs +++ b/runtime/test-runtime/src/lib.rs @@ -56,7 +56,7 @@ use runtime_common::{ claims, impl_runtime_weights, paras_sudo_wrapper, BlockHashCount, BlockLength, SlowAdjustingFeeUpdate, }; -use sp_core::OpaqueMetadata; +use sp_core::{OpaqueMetadata, ConstU32}; use sp_mmr_primitives as mmr; use sp_runtime::{ create_runtime_str, @@ -217,6 +217,10 @@ impl pallet_balances::Config for Runtime { type MaxReserves = MaxReserves; type ReserveIdentifier = [u8; 8]; type WeightInfo = (); + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } parameter_types! { diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 06e48de4c32b..9a2e148265d1 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -258,6 +258,10 @@ impl pallet_balances::Config for Runtime { type MaxReserves = MaxReserves; type ReserveIdentifier = [u8; 8]; type WeightInfo = weights::pallet_balances::WeightInfo; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } parameter_types! { diff --git a/runtime/westend/src/weights/pallet_balances.rs b/runtime/westend/src/weights/pallet_balances.rs index d39789effcce..c112a1897c43 100644 --- a/runtime/westend/src/weights/pallet_balances.rs +++ b/runtime/westend/src/weights/pallet_balances.rs @@ -47,7 +47,7 @@ pub struct WeightInfo(PhantomData); impl pallet_balances::WeightInfo for WeightInfo { /// Storage: System Account (r:1 w:1) /// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) - fn transfer() -> Weight { + fn transfer_allow_death() -> Weight { // Proof Size summary in bytes: // Measured: `1741` // Estimated: `2603` @@ -71,7 +71,7 @@ impl pallet_balances::WeightInfo for WeightInfo { } /// Storage: System Account (r:1 w:1) /// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) - fn set_balance_creating() -> Weight { + fn force_set_balance_creating() -> Weight { // Proof Size summary in bytes: // Measured: `1775` // Estimated: `2603` @@ -83,7 +83,7 @@ impl pallet_balances::WeightInfo for WeightInfo { } /// Storage: System Account (r:1 w:1) /// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen) - fn set_balance_killing() -> Weight { + fn force_set_balance_killing() -> Weight { // Proof Size summary in bytes: // Measured: `1775` // Estimated: `2603` @@ -129,4 +129,8 @@ impl pallet_balances::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } + fn upgrade_accounts(_: u32) -> Weight { + Weight::from_parts(0, 0) + } + } diff --git a/xcm/xcm-builder/src/fungibles_adapter.rs b/xcm/xcm-builder/src/fungibles_adapter.rs index f652f7817d0f..d182facccbe4 100644 --- a/xcm/xcm-builder/src/fungibles_adapter.rs +++ b/xcm/xcm-builder/src/fungibles_adapter.rs @@ -16,7 +16,7 @@ //! Adapters to work with `frame_support::traits::tokens::fungibles` through XCM. -use frame_support::traits::{tokens::fungibles, Contains, Get}; +use frame_support::traits::{tokens::{fungibles, Preservation::Preserve, Provenance::Minted, Precision::Exact, Fortitude::Polite}, Contains, Get}; use sp_std::{marker::PhantomData, prelude::*, result}; use xcm::latest::prelude::*; use xcm_executor::traits::{Convert, Error as MatchError, MatchesFungibles, TransactAsset}; @@ -49,7 +49,7 @@ impl< .map_err(|()| MatchError::AccountIdConversionFailed)?; let dest = AccountIdConverter::convert_ref(to) .map_err(|()| MatchError::AccountIdConversionFailed)?; - Assets::transfer(asset_id, &source, &dest, amount, true) + Assets::transfer(asset_id, &source, &dest, amount, Preserve) .map_err(|e| XcmError::FailedToTransactAsset(e.into()))?; Ok(what.clone().into()) } @@ -153,14 +153,14 @@ impl< { fn can_accrue_checked(asset_id: Assets::AssetId, amount: Assets::Balance) -> XcmResult { let checking_account = CheckingAccount::get(); - Assets::can_deposit(asset_id, &checking_account, amount, true) + Assets::can_deposit(asset_id, &checking_account, amount, Minted) .into_result() .map_err(|_| XcmError::NotDepositable) } fn can_reduce_checked(asset_id: Assets::AssetId, amount: Assets::Balance) -> XcmResult { let checking_account = CheckingAccount::get(); Assets::can_withdraw(asset_id, &checking_account, amount) - .into_result() + .into_result(false) .map_err(|_| XcmError::NotWithdrawable) .map(|_| ()) } @@ -171,7 +171,7 @@ impl< } fn reduce_checked(asset_id: Assets::AssetId, amount: Assets::Balance) { let checking_account = CheckingAccount::get(); - let ok = Assets::burn_from(asset_id, &checking_account, amount).is_ok(); + let ok = Assets::burn_from(asset_id, &checking_account, amount, Exact, Polite).is_ok(); debug_assert!(ok, "`can_reduce_checked` must have returned `true` immediately prior; qed"); } } @@ -280,7 +280,8 @@ impl< let who = AccountIdConverter::convert_ref(who) .map_err(|()| MatchError::AccountIdConversionFailed)?; Assets::mint_into(asset_id, &who, amount) - .map_err(|e| XcmError::FailedToTransactAsset(e.into())) + .map_err(|e| XcmError::FailedToTransactAsset(e.into()))?; + Ok(()) } fn withdraw_asset( @@ -297,7 +298,7 @@ impl< let (asset_id, amount) = Matcher::matches_fungibles(what)?; let who = AccountIdConverter::convert_ref(who) .map_err(|()| MatchError::AccountIdConversionFailed)?; - Assets::burn_from(asset_id, &who, amount) + Assets::burn_from(asset_id, &who, amount, Exact, Polite) .map_err(|e| XcmError::FailedToTransactAsset(e.into()))?; Ok(what.clone().into()) } @@ -312,7 +313,7 @@ pub struct FungiblesAdapter< CheckingAccount, >(PhantomData<(Assets, Matcher, AccountIdConverter, AccountId, CheckAsset, CheckingAccount)>); impl< - Assets: fungibles::Mutate + fungibles::Transfer, + Assets: fungibles::Mutate, Matcher: MatchesFungibles, AccountIdConverter: Convert, AccountId: Clone, // can't get away without it since Currency is generic over it. diff --git a/xcm/xcm-simulator/example/src/parachain.rs b/xcm/xcm-simulator/example/src/parachain.rs index 9801a847b712..1e82d822f059 100644 --- a/xcm/xcm-simulator/example/src/parachain.rs +++ b/xcm/xcm-simulator/example/src/parachain.rs @@ -22,7 +22,7 @@ use frame_support::{ traits::{EnsureOrigin, EnsureOriginWithArg, Everything, EverythingBut, Nothing}, weights::{constants::WEIGHT_REF_TIME_PER_SECOND, Weight}, }; -use sp_core::H256; +use sp_core::{H256, ConstU32}; use sp_runtime::{ testing::Header, traits::{Hash, IdentityLookup}, @@ -85,7 +85,7 @@ impl frame_system::Config for Runtime { type SystemWeightInfo = (); type SS58Prefix = (); type OnSetCode = (); - type MaxConsumers = frame_support::traits::ConstU32<16>; + type MaxConsumers = ConstU32<16>; } parameter_types! { @@ -104,6 +104,10 @@ impl pallet_balances::Config for Runtime { type WeightInfo = (); type MaxReserves = MaxReserves; type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } #[cfg(feature = "runtime-benchmarks")] @@ -130,9 +134,9 @@ impl pallet_uniques::Config for Runtime { type MetadataDepositBase = frame_support::traits::ConstU128<1_000>; type AttributeDepositBase = frame_support::traits::ConstU128<1_000>; type DepositPerByte = frame_support::traits::ConstU128<1>; - type StringLimit = frame_support::traits::ConstU32<64>; - type KeyLimit = frame_support::traits::ConstU32<64>; - type ValueLimit = frame_support::traits::ConstU32<128>; + type StringLimit = ConstU32<64>; + type KeyLimit = ConstU32<64>; + type ValueLimit = ConstU32<128>; type Locker = (); type WeightInfo = (); #[cfg(feature = "runtime-benchmarks")] @@ -416,7 +420,7 @@ impl pallet_xcm::Config for Runtime { type CurrencyMatcher = (); type TrustedLockers = (); type SovereignAccountOf = LocationToAccountId; - type MaxLockers = frame_support::traits::ConstU32<8>; + type MaxLockers = ConstU32<8>; type WeightInfo = pallet_xcm::TestWeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; diff --git a/xcm/xcm-simulator/example/src/relay_chain.rs b/xcm/xcm-simulator/example/src/relay_chain.rs index 9e095270e673..5d4f7f94a099 100644 --- a/xcm/xcm-simulator/example/src/relay_chain.rs +++ b/xcm/xcm-simulator/example/src/relay_chain.rs @@ -21,7 +21,7 @@ use frame_support::{ traits::{AsEnsureOriginWithArg, Everything, Nothing}, weights::Weight, }; -use sp_core::H256; +use sp_core::{H256, ConstU32}; use sp_runtime::{testing::Header, traits::IdentityLookup, AccountId32}; use polkadot_parachain::primitives::Id as ParaId; @@ -67,7 +67,7 @@ impl frame_system::Config for Runtime { type SystemWeightInfo = (); type SS58Prefix = (); type OnSetCode = (); - type MaxConsumers = frame_support::traits::ConstU32<16>; + type MaxConsumers = ConstU32<16>; } parameter_types! { @@ -86,6 +86,10 @@ impl pallet_balances::Config for Runtime { type WeightInfo = (); type MaxReserves = MaxReserves; type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } impl pallet_uniques::Config for Runtime { @@ -100,9 +104,9 @@ impl pallet_uniques::Config for Runtime { type MetadataDepositBase = frame_support::traits::ConstU128<1_000>; type AttributeDepositBase = frame_support::traits::ConstU128<1_000>; type DepositPerByte = frame_support::traits::ConstU128<1>; - type StringLimit = frame_support::traits::ConstU32<64>; - type KeyLimit = frame_support::traits::ConstU32<64>; - type ValueLimit = frame_support::traits::ConstU32<128>; + type StringLimit = ConstU32<64>; + type KeyLimit = ConstU32<64>; + type ValueLimit = ConstU32<128>; type Locker = (); type WeightInfo = (); #[cfg(feature = "runtime-benchmarks")] @@ -213,7 +217,7 @@ impl pallet_xcm::Config for Runtime { type CurrencyMatcher = IsConcrete; type TrustedLockers = (); type SovereignAccountOf = LocationToAccountId; - type MaxLockers = frame_support::traits::ConstU32<8>; + type MaxLockers = ConstU32<8>; type WeightInfo = pallet_xcm::TestWeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; diff --git a/xcm/xcm-simulator/fuzzer/src/parachain.rs b/xcm/xcm-simulator/fuzzer/src/parachain.rs index adf134124c93..ec353dc88527 100644 --- a/xcm/xcm-simulator/fuzzer/src/parachain.rs +++ b/xcm/xcm-simulator/fuzzer/src/parachain.rs @@ -22,7 +22,7 @@ use frame_support::{ traits::{Everything, Nothing}, weights::{constants::WEIGHT_REF_TIME_PER_SECOND, Weight}, }; -use sp_core::H256; +use sp_core::{H256, ConstU32}; use sp_runtime::{ testing::Header, traits::{Hash, IdentityLookup}, @@ -94,6 +94,10 @@ impl pallet_balances::Config for Runtime { type WeightInfo = (); type MaxReserves = MaxReserves; type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } parameter_types! { diff --git a/xcm/xcm-simulator/fuzzer/src/relay_chain.rs b/xcm/xcm-simulator/fuzzer/src/relay_chain.rs index fe08a056cdc1..3fe13b265ca7 100644 --- a/xcm/xcm-simulator/fuzzer/src/relay_chain.rs +++ b/xcm/xcm-simulator/fuzzer/src/relay_chain.rs @@ -21,7 +21,7 @@ use frame_support::{ traits::{Everything, Nothing}, weights::Weight, }; -use sp_core::H256; +use sp_core::{H256, ConstU32}; use sp_runtime::{testing::Header, traits::IdentityLookup, AccountId32}; use polkadot_parachain::primitives::Id as ParaId; @@ -66,7 +66,7 @@ impl frame_system::Config for Runtime { type SystemWeightInfo = (); type SS58Prefix = (); type OnSetCode = (); - type MaxConsumers = frame_support::traits::ConstU32<16>; + type MaxConsumers = ConstU32<16>; } parameter_types! { @@ -85,6 +85,10 @@ impl pallet_balances::Config for Runtime { type WeightInfo = (); type MaxReserves = MaxReserves; type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } impl shared::Config for Runtime {} @@ -177,7 +181,7 @@ impl pallet_xcm::Config for Runtime { type CurrencyMatcher = (); type TrustedLockers = (); type SovereignAccountOf = SovereignAccountOf; - type MaxLockers = frame_support::traits::ConstU32<8>; + type MaxLockers = ConstU32<8>; type WeightInfo = pallet_xcm::TestWeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; From cd5485ae7cae0a7b93b850804b86ae081a32257a Mon Sep 17 00:00:00 2001 From: Gav Date: Wed, 15 Mar 2023 19:53:04 +0000 Subject: [PATCH 04/17] Remove diener --- Cargo.lock | 447 ++++++++----------- Cargo.toml | 250 ----------- node/test/service/src/lib.rs | 9 +- node/test/service/tests/call-function.rs | 9 +- runtime/kusama/src/lib.rs | 2 +- runtime/rococo/src/lib.rs | 2 +- runtime/test-runtime/src/lib.rs | 2 +- xcm/xcm-builder/src/fungibles_adapter.rs | 7 +- xcm/xcm-simulator/example/src/parachain.rs | 2 +- xcm/xcm-simulator/example/src/relay_chain.rs | 2 +- xcm/xcm-simulator/fuzzer/src/parachain.rs | 2 +- xcm/xcm-simulator/fuzzer/src/relay_chain.rs | 2 +- 12 files changed, 206 insertions(+), 530 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2746ce6149cb..a0575be8540a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -466,6 +466,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "log", @@ -2294,6 +2295,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", ] @@ -2316,6 +2318,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-support-procedural", @@ -2340,6 +2343,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "array-bytes", @@ -2386,6 +2390,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2396,6 +2401,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2412,6 +2418,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -2440,6 +2447,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "log", @@ -2455,6 +2463,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "bitflags", "environmental", @@ -2487,6 +2496,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "cfg-expr", @@ -2501,6 +2511,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2512,6 +2523,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro2", "quote", @@ -2521,6 +2533,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -2544,6 +2557,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -2554,6 +2568,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "log", @@ -2571,6 +2586,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -2585,6 +2601,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-api", @@ -2593,6 +2610,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "parity-scale-codec", @@ -2774,6 +2792,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "chrono", "frame-election-provider-support", @@ -4552,6 +4571,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "log", @@ -4570,6 +4590,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "anyhow", "jsonrpsee", @@ -5131,6 +5152,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5145,6 +5167,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5160,6 +5183,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5173,6 +5197,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5196,6 +5221,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5215,6 +5241,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-election-provider-support", "frame-remote-externalities", @@ -5233,6 +5260,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5247,6 +5275,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5265,6 +5294,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -5288,6 +5318,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5305,6 +5336,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5323,6 +5355,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5339,6 +5372,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5355,6 +5389,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5372,6 +5407,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5394,6 +5430,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5406,6 +5443,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5423,6 +5461,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5440,6 +5479,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5462,6 +5502,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5477,6 +5518,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5496,6 +5538,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5512,6 +5555,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5528,6 +5572,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5544,6 +5589,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5559,6 +5605,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5574,6 +5621,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5590,6 +5638,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5609,6 +5658,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -5619,6 +5669,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5635,6 +5686,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5658,6 +5710,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5674,6 +5727,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5688,6 +5742,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5705,6 +5760,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5719,6 +5775,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5737,6 +5794,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5753,6 +5811,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5773,6 +5832,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5788,6 +5848,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5801,6 +5862,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5823,6 +5885,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5833,6 +5896,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "sp-arithmetic", @@ -5841,6 +5905,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-api", @@ -5849,6 +5914,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5865,6 +5931,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5878,6 +5945,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5895,6 +5963,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5913,6 +5982,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5928,6 +5998,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -5943,6 +6014,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5954,6 +6026,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5970,6 +6043,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5984,6 +6058,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5999,6 +6074,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -6013,6 +6089,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8937,6 +9014,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "sp-core", @@ -8947,6 +9025,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -8974,6 +9053,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "futures-timer", @@ -8996,6 +9076,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9010,6 +9091,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -9028,6 +9110,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9038,6 +9121,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "chrono", @@ -9077,6 +9161,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "fnv", "futures", @@ -9102,6 +9187,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "kvdb", @@ -9127,6 +9213,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9151,6 +9238,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "fork-tree", @@ -9189,6 +9277,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "jsonrpsee", @@ -9210,6 +9299,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9244,6 +9334,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "jsonrpsee", @@ -9262,6 +9353,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9274,6 +9366,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ahash 0.8.2", "array-bytes", @@ -9313,6 +9406,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "finality-grandpa", "futures", @@ -9332,6 +9426,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9354,6 +9449,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "lru 0.8.1", "parity-scale-codec", @@ -9377,6 +9473,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -9389,6 +9486,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "sc-allocator", @@ -9401,6 +9499,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "anyhow", "cfg-if", @@ -9418,6 +9517,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ansi_term", "futures", @@ -9433,6 +9533,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9447,6 +9548,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-channel", @@ -9490,6 +9592,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "cid", "futures", @@ -9509,6 +9612,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9536,6 +9640,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ahash 0.8.2", "futures", @@ -9554,6 +9659,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "futures", @@ -9575,6 +9681,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9608,6 +9715,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "futures", @@ -9627,6 +9735,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "bytes", @@ -9657,6 +9766,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "libp2p", @@ -9669,6 +9779,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9677,6 +9788,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "jsonrpsee", @@ -9706,6 +9818,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9724,6 +9837,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "http", "jsonrpsee", @@ -9738,6 +9852,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "futures", @@ -9763,6 +9878,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "directories", @@ -9828,6 +9944,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "parity-scale-codec", @@ -9838,6 +9955,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "clap 4.0.15", "fs4", @@ -9853,6 +9971,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9871,6 +9990,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "libc", @@ -9889,6 +10009,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "chrono", "futures", @@ -9907,6 +10028,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ansi_term", "atty", @@ -9937,6 +10059,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9947,6 +10070,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9973,6 +10097,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9986,6 +10111,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-channel", "futures", @@ -10500,6 +10626,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "log", @@ -10517,6 +10644,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "blake2", @@ -10530,6 +10658,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10542,6 +10671,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "integer-sqrt", "num-traits", @@ -10555,6 +10685,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10567,6 +10698,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-api", @@ -10578,6 +10710,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "log", @@ -10595,6 +10728,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -10609,6 +10743,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "parity-scale-codec", @@ -10626,6 +10761,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "merlin", @@ -10648,6 +10784,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "lazy_static", "parity-scale-codec", @@ -10666,6 +10803,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "finality-grandpa", "log", @@ -10683,6 +10821,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10694,6 +10833,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10706,6 +10846,7 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "base58", @@ -10748,6 +10889,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "blake2b_simd", "byteorder", @@ -10761,6 +10903,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro2", "quote", @@ -10771,6 +10914,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10779,6 +10923,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro2", "quote", @@ -10788,6 +10933,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "environmental", "parity-scale-codec", @@ -10798,6 +10944,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10812,6 +10959,7 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "bytes", "ed25519", @@ -10836,6 +10984,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "lazy_static", "sp-core", @@ -10846,6 +10995,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -10862,6 +11012,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "thiserror", "zstd", @@ -10870,6 +11021,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -10887,6 +11039,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10900,6 +11053,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "sp-api", "sp-core", @@ -10909,6 +11063,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "backtrace", "lazy_static", @@ -10918,6 +11073,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "rustc-hash", "serde", @@ -10927,6 +11083,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "either", "hash256-std-hasher", @@ -10948,6 +11105,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -10965,6 +11123,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "proc-macro-crate", @@ -10976,6 +11135,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10989,6 +11149,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -11000,6 +11161,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "log", @@ -11019,10 +11181,12 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" [[package]] name = "sp-storage" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11035,6 +11199,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures-timer", @@ -11049,6 +11214,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-std", @@ -11060,6 +11226,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "sp-api", "sp-runtime", @@ -11068,6 +11235,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "log", @@ -11083,6 +11251,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ahash 0.8.2", "hash-db", @@ -11105,6 +11274,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11121,6 +11291,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11131,6 +11302,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -11144,6 +11316,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -11363,6 +11536,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "platforms", ] @@ -11370,6 +11544,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11388,6 +11563,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hyper", "log", @@ -11399,6 +11575,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "jsonrpsee", @@ -11411,6 +11588,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "log", @@ -11429,6 +11607,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -11454,6 +11633,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11463,6 +11643,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11473,6 +11654,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ansi_term", "build-helper", @@ -12273,6 +12455,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "clap 4.0.15", @@ -13855,267 +14038,3 @@ dependencies = [ "cc", "libc", ] - -[[patch.unused]] -name = "chain-spec-builder" -version = "2.0.0" - -[[patch.unused]] -name = "frame-benchmarking-pallet-pov" -version = "4.0.0-dev" - -[[patch.unused]] -name = "frame-election-solution-type-fuzzer" -version = "2.0.0-alpha.5" - -[[patch.unused]] -name = "frame-support-test-compile-pass" -version = "4.0.0-dev" - -[[patch.unused]] -name = "kitchensink-runtime" -version = "3.0.0-dev" - -[[patch.unused]] -name = "node-bench" -version = "0.9.0-dev" - -[[patch.unused]] -name = "node-cli" -version = "3.0.0-dev" - -[[patch.unused]] -name = "node-executor" -version = "3.0.0-dev" - -[[patch.unused]] -name = "node-inspect" -version = "0.9.0-dev" - -[[patch.unused]] -name = "node-primitives" -version = "2.0.0" - -[[patch.unused]] -name = "node-rpc" -version = "3.0.0-dev" - -[[patch.unused]] -name = "node-runtime-generate-bags" -version = "3.0.0" - -[[patch.unused]] -name = "node-template" -version = "4.0.0-dev" - -[[patch.unused]] -name = "node-template-runtime" -version = "4.0.0-dev" - -[[patch.unused]] -name = "node-testing" -version = "3.0.0-dev" - -[[patch.unused]] -name = "pallet-alliance" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-asset-tx-payment" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-atomic-swap" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-aura" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-bags-list-fuzzer" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-contracts" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-contracts-primitives" -version = "7.0.0" - -[[patch.unused]] -name = "pallet-contracts-proc-macro" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-core-fellowship" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-example-basic" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-example-offchain-worker" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-glutton" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-insecure-randomness-collective-flip" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-lottery" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-message-queue" -version = "7.0.0-dev" - -[[patch.unused]] -name = "pallet-nfts" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-nfts-runtime-api" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-nicks" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-node-authorization" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-nomination-pools-fuzzer" -version = "2.0.0" - -[[patch.unused]] -name = "pallet-nomination-pools-test-staking" -version = "1.0.0" - -[[patch.unused]] -name = "pallet-remark" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-root-offences" -version = "1.0.0-dev" - -[[patch.unused]] -name = "pallet-root-testing" -version = "1.0.0-dev" - -[[patch.unused]] -name = "pallet-salary" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-scored-pool" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-template" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-transaction-storage" -version = "4.0.0-dev" - -[[patch.unused]] -name = "sc-consensus-aura" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sc-consensus-manual-seal" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sc-consensus-pow" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sc-network-test" -version = "0.8.0" - -[[patch.unused]] -name = "sc-runtime-test" -version = "2.0.0" - -[[patch.unused]] -name = "sc-service-test" -version = "2.0.0" - -[[patch.unused]] -name = "sp-api-test" -version = "2.0.1" - -[[patch.unused]] -name = "sp-application-crypto-test" -version = "2.0.0" - -[[patch.unused]] -name = "sp-arithmetic-fuzzer" -version = "2.0.0" - -[[patch.unused]] -name = "sp-consensus-pow" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sp-npos-elections-fuzzer" -version = "2.0.0-alpha.5" - -[[patch.unused]] -name = "sp-runtime-interface-test" -version = "2.0.0" - -[[patch.unused]] -name = "sp-runtime-interface-test-wasm" -version = "2.0.0" - -[[patch.unused]] -name = "sp-runtime-interface-test-wasm-deprecated" -version = "2.0.0" - -[[patch.unused]] -name = "sp-serializer" -version = "4.0.0-dev" - -[[patch.unused]] -name = "sp-test-primitives" -version = "2.0.0" - -[[patch.unused]] -name = "subkey" -version = "3.0.0" - -[[patch.unused]] -name = "substrate-frame-cli" -version = "4.0.0-dev" - -[[patch.unused]] -name = "substrate-frame-rpc-support" -version = "3.0.0" - -[[patch.unused]] -name = "substrate-test-runtime" -version = "2.0.0" - -[[patch.unused]] -name = "substrate-test-runtime-client" -version = "2.0.0" - -[[patch.unused]] -name = "substrate-test-runtime-transaction-pool" -version = "2.0.0" - -[[patch.unused]] -name = "substrate-test-utils-test-crate" -version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index dfbc9411f1c0..5ec0a74d5cac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -208,256 +208,6 @@ runtime-metrics = [ "polkadot-cli/runtime-metrics" ] pyroscope = ["polkadot-cli/pyroscope"] jemalloc-allocator = ["polkadot-node-core-pvf/jemalloc-allocator", "polkadot-overseer/jemalloc-allocator"] -node-template = { path = "/Users/gav/Core/substrate/bin/node-template/node" } -frame-benchmarking = { path = "/Users/gav/Core/substrate/frame/benchmarking" } -frame-support = { path = "/Users/gav/Core/substrate/frame/support" } -frame-support-procedural = { path = "/Users/gav/Core/substrate/frame/support/procedural" } -frame-support-procedural-tools = { path = "/Users/gav/Core/substrate/frame/support/procedural/tools" } -frame-support-procedural-tools-derive = { path = "/Users/gav/Core/substrate/frame/support/procedural/tools/derive" } -sp-api = { path = "/Users/gav/Core/substrate/primitives/api" } -sp-api-proc-macro = { path = "/Users/gav/Core/substrate/primitives/api/proc-macro" } -sp-core = { path = "/Users/gav/Core/substrate/primitives/core" } -sp-core-hashing = { path = "/Users/gav/Core/substrate/primitives/core/hashing" } -sp-std = { path = "/Users/gav/Core/substrate/primitives/std" } -sp-debug-derive = { path = "/Users/gav/Core/substrate/primitives/debug-derive" } -sp-externalities = { path = "/Users/gav/Core/substrate/primitives/externalities" } -sp-storage = { path = "/Users/gav/Core/substrate/primitives/storage" } -sp-runtime-interface = { path = "/Users/gav/Core/substrate/primitives/runtime-interface" } -sp-runtime-interface-proc-macro = { path = "/Users/gav/Core/substrate/primitives/runtime-interface/proc-macro" } -sp-tracing = { path = "/Users/gav/Core/substrate/primitives/tracing" } -sp-wasm-interface = { path = "/Users/gav/Core/substrate/primitives/wasm-interface" } -sp-io = { path = "/Users/gav/Core/substrate/primitives/io" } -sp-keystore = { path = "/Users/gav/Core/substrate/primitives/keystore" } -sp-state-machine = { path = "/Users/gav/Core/substrate/primitives/state-machine" } -sp-panic-handler = { path = "/Users/gav/Core/substrate/primitives/panic-handler" } -sp-trie = { path = "/Users/gav/Core/substrate/primitives/trie" } -sp-runtime = { path = "/Users/gav/Core/substrate/primitives/runtime" } -sp-application-crypto = { path = "/Users/gav/Core/substrate/primitives/application-crypto" } -sp-arithmetic = { path = "/Users/gav/Core/substrate/primitives/arithmetic" } -sp-weights = { path = "/Users/gav/Core/substrate/primitives/weights" } -substrate-test-runtime-client = { path = "/Users/gav/Core/substrate/test-utils/runtime/client" } -sc-block-builder = { path = "/Users/gav/Core/substrate/client/block-builder" } -sc-client-api = { path = "/Users/gav/Core/substrate/client/api" } -substrate-prometheus-endpoint = { path = "/Users/gav/Core/substrate/utils/prometheus" } -sc-executor = { path = "/Users/gav/Core/substrate/client/executor" } -sc-executor-common = { path = "/Users/gav/Core/substrate/client/executor/common" } -sc-allocator = { path = "/Users/gav/Core/substrate/client/allocator" } -sp-maybe-compressed-blob = { path = "/Users/gav/Core/substrate/primitives/maybe-compressed-blob" } -sc-executor-wasmi = { path = "/Users/gav/Core/substrate/client/executor/wasmi" } -sc-executor-wasmtime = { path = "/Users/gav/Core/substrate/client/executor/wasmtime" } -sc-runtime-test = { path = "/Users/gav/Core/substrate/client/executor/runtime-test" } -substrate-wasm-builder = { path = "/Users/gav/Core/substrate/utils/wasm-builder" } -sp-version = { path = "/Users/gav/Core/substrate/primitives/version" } -sp-core-hashing-proc-macro = { path = "/Users/gav/Core/substrate/primitives/core/hashing/proc-macro" } -sp-version-proc-macro = { path = "/Users/gav/Core/substrate/primitives/version/proc-macro" } -sc-tracing = { path = "/Users/gav/Core/substrate/client/tracing" } -sc-rpc-server = { path = "/Users/gav/Core/substrate/client/rpc-servers" } -sc-tracing-proc-macro = { path = "/Users/gav/Core/substrate/client/tracing/proc-macro" } -sp-blockchain = { path = "/Users/gav/Core/substrate/primitives/blockchain" } -sp-consensus = { path = "/Users/gav/Core/substrate/primitives/consensus/common" } -sp-inherents = { path = "/Users/gav/Core/substrate/primitives/inherents" } -sp-test-primitives = { path = "/Users/gav/Core/substrate/primitives/test-primitives" } -sp-database = { path = "/Users/gav/Core/substrate/primitives/database" } -sp-rpc = { path = "/Users/gav/Core/substrate/primitives/rpc" } -substrate-test-runtime = { path = "/Users/gav/Core/substrate/test-utils/runtime" } -frame-system = { path = "/Users/gav/Core/substrate/frame/system" } -frame-system-rpc-runtime-api = { path = "/Users/gav/Core/substrate/frame/system/rpc/runtime-api" } -pallet-babe = { path = "/Users/gav/Core/substrate/frame/babe" } -pallet-authorship = { path = "/Users/gav/Core/substrate/frame/authorship" } -pallet-session = { path = "/Users/gav/Core/substrate/frame/session" } -pallet-timestamp = { path = "/Users/gav/Core/substrate/frame/timestamp" } -sp-timestamp = { path = "/Users/gav/Core/substrate/primitives/timestamp" } -sp-session = { path = "/Users/gav/Core/substrate/primitives/session" } -sp-staking = { path = "/Users/gav/Core/substrate/primitives/staking" } -sp-consensus-babe = { path = "/Users/gav/Core/substrate/primitives/consensus/babe" } -sp-consensus-slots = { path = "/Users/gav/Core/substrate/primitives/consensus/slots" } -sp-consensus-vrf = { path = "/Users/gav/Core/substrate/primitives/consensus/vrf" } -frame-election-provider-support = { path = "/Users/gav/Core/substrate/frame/election-provider-support" } -frame-election-provider-solution-type = { path = "/Users/gav/Core/substrate/frame/election-provider-support/solution-type" } -sp-npos-elections = { path = "/Users/gav/Core/substrate/primitives/npos-elections" } -substrate-test-utils = { path = "/Users/gav/Core/substrate/test-utils" } -substrate-test-utils-derive = { path = "/Users/gav/Core/substrate/test-utils/derive" } -sc-service = { path = "/Users/gav/Core/substrate/client/service" } -sc-chain-spec = { path = "/Users/gav/Core/substrate/client/chain-spec" } -sc-chain-spec-derive = { path = "/Users/gav/Core/substrate/client/chain-spec/derive" } -sc-network = { path = "/Users/gav/Core/substrate/client/network" } -sc-consensus = { path = "/Users/gav/Core/substrate/client/consensus/common" } -sc-utils = { path = "/Users/gav/Core/substrate/client/utils" } -sc-network-common = { path = "/Users/gav/Core/substrate/client/network/common" } -sc-peerset = { path = "/Users/gav/Core/substrate/client/peerset" } -sp-consensus-grandpa = { path = "/Users/gav/Core/substrate/primitives/consensus/grandpa" } -sc-network-light = { path = "/Users/gav/Core/substrate/client/network/light" } -sc-network-sync = { path = "/Users/gav/Core/substrate/client/network/sync" } -fork-tree = { path = "/Users/gav/Core/substrate/utils/fork-tree" } -sc-telemetry = { path = "/Users/gav/Core/substrate/client/telemetry" } -sc-client-db = { path = "/Users/gav/Core/substrate/client/db" } -sc-state-db = { path = "/Users/gav/Core/substrate/client/state-db" } -kitchensink-runtime = { path = "/Users/gav/Core/substrate/bin/node/runtime" } -frame-benchmarking-pallet-pov = { path = "/Users/gav/Core/substrate/frame/benchmarking/pov" } -frame-executive = { path = "/Users/gav/Core/substrate/frame/executive" } -frame-try-runtime = { path = "/Users/gav/Core/substrate/frame/try-runtime" } -pallet-balances = { path = "/Users/gav/Core/substrate/frame/balances" } -pallet-transaction-payment = { path = "/Users/gav/Core/substrate/frame/transaction-payment" } -frame-system-benchmarking = { path = "/Users/gav/Core/substrate/frame/system/benchmarking" } -node-primitives = { path = "/Users/gav/Core/substrate/bin/node/primitives" } -pallet-alliance = { path = "/Users/gav/Core/substrate/frame/alliance" } -pallet-collective = { path = "/Users/gav/Core/substrate/frame/collective" } -pallet-identity = { path = "/Users/gav/Core/substrate/frame/identity" } -pallet-asset-tx-payment = { path = "/Users/gav/Core/substrate/frame/transaction-payment/asset-tx-payment" } -pallet-assets = { path = "/Users/gav/Core/substrate/frame/assets" } -pallet-authority-discovery = { path = "/Users/gav/Core/substrate/frame/authority-discovery" } -sp-authority-discovery = { path = "/Users/gav/Core/substrate/primitives/authority-discovery" } -pallet-bags-list = { path = "/Users/gav/Core/substrate/frame/bags-list" } -pallet-bounties = { path = "/Users/gav/Core/substrate/frame/bounties" } -pallet-treasury = { path = "/Users/gav/Core/substrate/frame/treasury" } -pallet-utility = { path = "/Users/gav/Core/substrate/frame/utility" } -pallet-root-testing = { path = "/Users/gav/Core/substrate/frame/root-testing" } -pallet-child-bounties = { path = "/Users/gav/Core/substrate/frame/child-bounties" } -pallet-contracts = { path = "/Users/gav/Core/substrate/frame/contracts" } -pallet-contracts-primitives = { path = "/Users/gav/Core/substrate/frame/contracts/primitives" } -pallet-contracts-proc-macro = { path = "/Users/gav/Core/substrate/frame/contracts/proc-macro" } -pallet-insecure-randomness-collective-flip = { path = "/Users/gav/Core/substrate/frame/insecure-randomness-collective-flip" } -pallet-conviction-voting = { path = "/Users/gav/Core/substrate/frame/conviction-voting" } -pallet-scheduler = { path = "/Users/gav/Core/substrate/frame/scheduler" } -pallet-preimage = { path = "/Users/gav/Core/substrate/frame/preimage" } -pallet-core-fellowship = { path = "/Users/gav/Core/substrate/frame/core-fellowship" } -pallet-ranked-collective = { path = "/Users/gav/Core/substrate/frame/ranked-collective" } -pallet-salary = { path = "/Users/gav/Core/substrate/frame/salary" } -pallet-democracy = { path = "/Users/gav/Core/substrate/frame/democracy" } -pallet-election-provider-multi-phase = { path = "/Users/gav/Core/substrate/frame/election-provider-multi-phase" } -pallet-election-provider-support-benchmarking = { path = "/Users/gav/Core/substrate/frame/election-provider-support/benchmarking" } -pallet-elections-phragmen = { path = "/Users/gav/Core/substrate/frame/elections-phragmen" } -pallet-fast-unstake = { path = "/Users/gav/Core/substrate/frame/fast-unstake" } -pallet-staking = { path = "/Users/gav/Core/substrate/frame/staking" } -pallet-staking-reward-curve = { path = "/Users/gav/Core/substrate/frame/staking/reward-curve" } -pallet-glutton = { path = "/Users/gav/Core/substrate/frame/glutton" } -pallet-grandpa = { path = "/Users/gav/Core/substrate/frame/grandpa" } -pallet-offences = { path = "/Users/gav/Core/substrate/frame/offences" } -sp-keyring = { path = "/Users/gav/Core/substrate/primitives/keyring" } -pallet-im-online = { path = "/Users/gav/Core/substrate/frame/im-online" } -pallet-indices = { path = "/Users/gav/Core/substrate/frame/indices" } -pallet-lottery = { path = "/Users/gav/Core/substrate/frame/lottery" } -frame-support-test = { path = "/Users/gav/Core/substrate/frame/support/test" } -frame-support-test-pallet = { path = "/Users/gav/Core/substrate/frame/support/test/pallet" } -pallet-membership = { path = "/Users/gav/Core/substrate/frame/membership" } -pallet-message-queue = { path = "/Users/gav/Core/substrate/frame/message-queue" } -pallet-mmr = { path = "/Users/gav/Core/substrate/frame/merkle-mountain-range" } -sp-mmr-primitives = { path = "/Users/gav/Core/substrate/primitives/merkle-mountain-range" } -pallet-multisig = { path = "/Users/gav/Core/substrate/frame/multisig" } -pallet-nfts = { path = "/Users/gav/Core/substrate/frame/nfts" } -pallet-nfts-runtime-api = { path = "/Users/gav/Core/substrate/frame/nfts/runtime-api" } -pallet-nis = { path = "/Users/gav/Core/substrate/frame/nis" } -pallet-nomination-pools = { path = "/Users/gav/Core/substrate/frame/nomination-pools" } -pallet-nomination-pools-benchmarking = { path = "/Users/gav/Core/substrate/frame/nomination-pools/benchmarking" } -pallet-nomination-pools-runtime-api = { path = "/Users/gav/Core/substrate/frame/nomination-pools/runtime-api" } -pallet-offences-benchmarking = { path = "/Users/gav/Core/substrate/frame/offences/benchmarking" } -pallet-proxy = { path = "/Users/gav/Core/substrate/frame/proxy" } -pallet-recovery = { path = "/Users/gav/Core/substrate/frame/recovery" } -pallet-referenda = { path = "/Users/gav/Core/substrate/frame/referenda" } -pallet-remark = { path = "/Users/gav/Core/substrate/frame/remark" } -pallet-session-benchmarking = { path = "/Users/gav/Core/substrate/frame/session/benchmarking" } -pallet-society = { path = "/Users/gav/Core/substrate/frame/society" } -pallet-staking-runtime-api = { path = "/Users/gav/Core/substrate/frame/staking/runtime-api" } -pallet-state-trie-migration = { path = "/Users/gav/Core/substrate/frame/state-trie-migration" } -frame-remote-externalities = { path = "/Users/gav/Core/substrate/utils/frame/remote-externalities" } -substrate-rpc-client = { path = "/Users/gav/Core/substrate/utils/frame/rpc/client" } -sc-rpc-api = { path = "/Users/gav/Core/substrate/client/rpc-api" } -sc-transaction-pool-api = { path = "/Users/gav/Core/substrate/client/transaction-pool/api" } -substrate-state-trie-migration-rpc = { path = "/Users/gav/Core/substrate/utils/frame/rpc/state-trie-migration-rpc" } -pallet-sudo = { path = "/Users/gav/Core/substrate/frame/sudo" } -pallet-tips = { path = "/Users/gav/Core/substrate/frame/tips" } -pallet-transaction-payment-rpc-runtime-api = { path = "/Users/gav/Core/substrate/frame/transaction-payment/rpc/runtime-api" } -pallet-transaction-storage = { path = "/Users/gav/Core/substrate/frame/transaction-storage" } -sp-transaction-storage-proof = { path = "/Users/gav/Core/substrate/primitives/transaction-storage-proof" } -pallet-uniques = { path = "/Users/gav/Core/substrate/frame/uniques" } -pallet-vesting = { path = "/Users/gav/Core/substrate/frame/vesting" } -pallet-whitelist = { path = "/Users/gav/Core/substrate/frame/whitelist" } -sp-block-builder = { path = "/Users/gav/Core/substrate/primitives/block-builder" } -sp-offchain = { path = "/Users/gav/Core/substrate/primitives/offchain" } -sp-transaction-pool = { path = "/Users/gav/Core/substrate/primitives/transaction-pool" } -sc-informant = { path = "/Users/gav/Core/substrate/client/informant" } -sc-keystore = { path = "/Users/gav/Core/substrate/client/keystore" } -sc-network-bitswap = { path = "/Users/gav/Core/substrate/client/network/bitswap" } -sc-network-transactions = { path = "/Users/gav/Core/substrate/client/network/transactions" } -sc-offchain = { path = "/Users/gav/Core/substrate/client/offchain" } -sc-transaction-pool = { path = "/Users/gav/Core/substrate/client/transaction-pool" } -substrate-test-runtime-transaction-pool = { path = "/Users/gav/Core/substrate/test-utils/runtime/transaction-pool" } -sc-rpc = { path = "/Users/gav/Core/substrate/client/rpc" } -sc-rpc-spec-v2 = { path = "/Users/gav/Core/substrate/client/rpc-spec-v2" } -sc-storage-monitor = { path = "/Users/gav/Core/substrate/client/storage-monitor" } -sc-sysinfo = { path = "/Users/gav/Core/substrate/client/sysinfo" } -pallet-beefy-mmr = { path = "/Users/gav/Core/substrate/frame/beefy-mmr" } -binary-merkle-tree = { path = "/Users/gav/Core/substrate/utils/binary-merkle-tree" } -pallet-beefy = { path = "/Users/gav/Core/substrate/frame/beefy" } -sp-consensus-beefy = { path = "/Users/gav/Core/substrate/primitives/consensus/beefy" } -sp-consensus-aura = { path = "/Users/gav/Core/substrate/primitives/consensus/aura" } -substrate-test-client = { path = "/Users/gav/Core/substrate/test-utils/client" } -sp-runtime-interface-test-wasm = { path = "/Users/gav/Core/substrate/primitives/runtime-interface/test-wasm" } -sp-serializer = { path = "/Users/gav/Core/substrate/primitives/serializer" } -frame-benchmarking-cli = { path = "/Users/gav/Core/substrate/utils/frame/benchmarking-cli" } -sc-cli = { path = "/Users/gav/Core/substrate/client/cli" } -node-template-runtime = { path = "/Users/gav/Core/substrate/bin/node-template/runtime" } -pallet-aura = { path = "/Users/gav/Core/substrate/frame/aura" } -pallet-template = { path = "/Users/gav/Core/substrate/bin/node-template/pallets/template" } -pallet-transaction-payment-rpc = { path = "/Users/gav/Core/substrate/frame/transaction-payment/rpc" } -sc-basic-authorship = { path = "/Users/gav/Core/substrate/client/basic-authorship" } -sc-proposer-metrics = { path = "/Users/gav/Core/substrate/client/proposer-metrics" } -sc-consensus-aura = { path = "/Users/gav/Core/substrate/client/consensus/aura" } -sc-consensus-slots = { path = "/Users/gav/Core/substrate/client/consensus/slots" } -sc-network-test = { path = "/Users/gav/Core/substrate/client/network/test" } -sc-consensus-grandpa = { path = "/Users/gav/Core/substrate/client/consensus/grandpa" } -sc-network-gossip = { path = "/Users/gav/Core/substrate/client/network-gossip" } -substrate-frame-rpc-system = { path = "/Users/gav/Core/substrate/utils/frame/rpc/system" } -try-runtime-cli = { path = "/Users/gav/Core/substrate/utils/frame/try-runtime/cli" } -substrate-build-script-utils = { path = "/Users/gav/Core/substrate/utils/build-script-utils" } -node-bench = { path = "/Users/gav/Core/substrate/bin/node/bench" } -node-testing = { path = "/Users/gav/Core/substrate/bin/node/testing" } -node-executor = { path = "/Users/gav/Core/substrate/bin/node/executor" } -node-cli = { path = "/Users/gav/Core/substrate/bin/node/cli" } -node-inspect = { path = "/Users/gav/Core/substrate/bin/node/inspect" } -node-rpc = { path = "/Users/gav/Core/substrate/bin/node/rpc" } -mmr-rpc = { path = "/Users/gav/Core/substrate/client/merkle-mountain-range/rpc" } -sc-consensus-babe = { path = "/Users/gav/Core/substrate/client/consensus/babe" } -sc-consensus-epochs = { path = "/Users/gav/Core/substrate/client/consensus/epochs" } -sc-consensus-babe-rpc = { path = "/Users/gav/Core/substrate/client/consensus/babe/rpc" } -sc-consensus-grandpa-rpc = { path = "/Users/gav/Core/substrate/client/consensus/grandpa/rpc" } -sc-sync-state-rpc = { path = "/Users/gav/Core/substrate/client/sync-state-rpc" } -sc-authority-discovery = { path = "/Users/gav/Core/substrate/client/authority-discovery" } -sc-service-test = { path = "/Users/gav/Core/substrate/client/service/test" } -substrate-frame-cli = { path = "/Users/gav/Core/substrate/utils/frame/frame-utilities-cli" } -chain-spec-builder = { path = "/Users/gav/Core/substrate/bin/utils/chain-spec-builder" } -subkey = { path = "/Users/gav/Core/substrate/bin/utils/subkey" } -sc-consensus-beefy = { path = "/Users/gav/Core/substrate/client/consensus/beefy" } -sc-consensus-beefy-rpc = { path = "/Users/gav/Core/substrate/client/consensus/beefy/rpc" } -sc-consensus-manual-seal = { path = "/Users/gav/Core/substrate/client/consensus/manual-seal" } -sc-consensus-pow = { path = "/Users/gav/Core/substrate/client/consensus/pow" } -sp-consensus-pow = { path = "/Users/gav/Core/substrate/primitives/consensus/pow" } -mmr-gadget = { path = "/Users/gav/Core/substrate/client/merkle-mountain-range" } -pallet-atomic-swap = { path = "/Users/gav/Core/substrate/frame/atomic-swap" } -pallet-bags-list-fuzzer = { path = "/Users/gav/Core/substrate/frame/bags-list/fuzzer" } -pallet-bags-list-remote-tests = { path = "/Users/gav/Core/substrate/frame/bags-list/remote-tests" } -frame-election-solution-type-fuzzer = { path = "/Users/gav/Core/substrate/frame/election-provider-support/solution-type/fuzzer" } -pallet-example-basic = { path = "/Users/gav/Core/substrate/frame/examples/basic" } -pallet-example-offchain-worker = { path = "/Users/gav/Core/substrate/frame/examples/offchain-worker" } -pallet-nicks = { path = "/Users/gav/Core/substrate/frame/nicks" } -pallet-node-authorization = { path = "/Users/gav/Core/substrate/frame/node-authorization" } -pallet-nomination-pools-fuzzer = { path = "/Users/gav/Core/substrate/frame/nomination-pools/fuzzer" } -pallet-nomination-pools-test-staking = { path = "/Users/gav/Core/substrate/frame/nomination-pools/test-staking" } -pallet-scored-pool = { path = "/Users/gav/Core/substrate/frame/scored-pool" } -pallet-staking-reward-fn = { path = "/Users/gav/Core/substrate/frame/staking/reward-fn" } -pallet-root-offences = { path = "/Users/gav/Core/substrate/frame/root-offences" } -frame-support-test-compile-pass = { path = "/Users/gav/Core/substrate/frame/support/test/compile_pass" } -sp-api-test = { path = "/Users/gav/Core/substrate/primitives/api/test" } -sp-application-crypto-test = { path = "/Users/gav/Core/substrate/primitives/application-crypto/test" } -sp-arithmetic-fuzzer = { path = "/Users/gav/Core/substrate/primitives/arithmetic/fuzzer" } -sp-npos-elections-fuzzer = { path = "/Users/gav/Core/substrate/primitives/npos-elections/fuzzer" } -sp-runtime-interface-test = { path = "/Users/gav/Core/substrate/primitives/runtime-interface/test" } -sp-runtime-interface-test-wasm-deprecated = { path = "/Users/gav/Core/substrate/primitives/runtime-interface/test-wasm-deprecated" } -substrate-test-utils-test-crate = { path = "/Users/gav/Core/substrate/test-utils/test-crate" } -substrate-frame-rpc-support = { path = "/Users/gav/Core/substrate/utils/frame/rpc/support" } -generate-bags = { path = "/Users/gav/Core/substrate/utils/frame/generate-bags" } -node-runtime-generate-bags = { path = "/Users/gav/Core/substrate/utils/frame/generate-bags/node-runtime" } - # Configuration for building a .deb package - for use with `cargo-deb` [package.metadata.deb] name = "polkadot" diff --git a/node/test/service/src/lib.rs b/node/test/service/src/lib.rs index 4b8b489a87e2..c895bd707b86 100644 --- a/node/test/service/src/lib.rs +++ b/node/test/service/src/lib.rs @@ -395,10 +395,11 @@ pub fn construct_transfer_extrinsic( dest: sp_keyring::AccountKeyring, value: Balance, ) -> UncheckedExtrinsic { - let function = polkadot_test_runtime::RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death { - dest: MultiSigner::from(dest.public()).into_account().into(), - value, - }); + let function = + polkadot_test_runtime::RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death { + dest: MultiSigner::from(dest.public()).into_account().into(), + value, + }); construct_extrinsic(client, function, origin, 0) } diff --git a/node/test/service/tests/call-function.rs b/node/test/service/tests/call-function.rs index 4e3c71778b7b..7e36f18d763c 100644 --- a/node/test/service/tests/call-function.rs +++ b/node/test/service/tests/call-function.rs @@ -24,10 +24,11 @@ async fn call_function_actually_work() { let alice = run_validator_node(alice_config, None); - let function = polkadot_test_runtime::RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death { - dest: Charlie.to_account_id().into(), - value: 1, - }); + let function = + polkadot_test_runtime::RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death { + dest: Charlie.to_account_id().into(), + value: 1, + }); let output = alice.send_extrinsic(function, Bob).await.unwrap(); let res = output.result; diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index cee6be4c7524..53400cb481b5 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -20,7 +20,6 @@ // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit = "256"] -use scale_info::TypeInfo; use pallet_nis::WithMaximumOf; use parity_scale_codec::{Decode, Encode, MaxEncodedLen}; use primitives::{ @@ -35,6 +34,7 @@ use runtime_common::{ prod_or_fast, slots, BalanceToU256, BlockHashCount, BlockLength, CurrencyToVote, SlowAdjustingFeeUpdate, U256ToBalance, }; +use scale_info::TypeInfo; use sp_std::{cmp::Ordering, collections::btree_map::BTreeMap, prelude::*}; use runtime_parachains::{ diff --git a/runtime/rococo/src/lib.rs b/runtime/rococo/src/lib.rs index e62c8ccf72c8..62316e57ecad 100644 --- a/runtime/rococo/src/lib.rs +++ b/runtime/rococo/src/lib.rs @@ -20,7 +20,6 @@ // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit = "256"] -use scale_info::TypeInfo; use pallet_nis::WithMaximumOf; use parity_scale_codec::{Decode, Encode, MaxEncodedLen}; use primitives::{ @@ -35,6 +34,7 @@ use runtime_common::{ paras_registrar, paras_sudo_wrapper, prod_or_fast, slots, BlockHashCount, BlockLength, SlowAdjustingFeeUpdate, }; +use scale_info::TypeInfo; use sp_std::{cmp::Ordering, collections::btree_map::BTreeMap, prelude::*}; use runtime_parachains::{ diff --git a/runtime/test-runtime/src/lib.rs b/runtime/test-runtime/src/lib.rs index 0f791f0db0b8..c1d84ad444fb 100644 --- a/runtime/test-runtime/src/lib.rs +++ b/runtime/test-runtime/src/lib.rs @@ -56,7 +56,7 @@ use runtime_common::{ claims, impl_runtime_weights, paras_sudo_wrapper, BlockHashCount, BlockLength, SlowAdjustingFeeUpdate, }; -use sp_core::{OpaqueMetadata, ConstU32}; +use sp_core::{ConstU32, OpaqueMetadata}; use sp_mmr_primitives as mmr; use sp_runtime::{ create_runtime_str, diff --git a/xcm/xcm-builder/src/fungibles_adapter.rs b/xcm/xcm-builder/src/fungibles_adapter.rs index d182facccbe4..33e451393106 100644 --- a/xcm/xcm-builder/src/fungibles_adapter.rs +++ b/xcm/xcm-builder/src/fungibles_adapter.rs @@ -16,7 +16,12 @@ //! Adapters to work with `frame_support::traits::tokens::fungibles` through XCM. -use frame_support::traits::{tokens::{fungibles, Preservation::Preserve, Provenance::Minted, Precision::Exact, Fortitude::Polite}, Contains, Get}; +use frame_support::traits::{ + tokens::{ + fungibles, Fortitude::Polite, Precision::Exact, Preservation::Preserve, Provenance::Minted, + }, + Contains, Get, +}; use sp_std::{marker::PhantomData, prelude::*, result}; use xcm::latest::prelude::*; use xcm_executor::traits::{Convert, Error as MatchError, MatchesFungibles, TransactAsset}; diff --git a/xcm/xcm-simulator/example/src/parachain.rs b/xcm/xcm-simulator/example/src/parachain.rs index 1e82d822f059..0b8f483df4a8 100644 --- a/xcm/xcm-simulator/example/src/parachain.rs +++ b/xcm/xcm-simulator/example/src/parachain.rs @@ -22,7 +22,7 @@ use frame_support::{ traits::{EnsureOrigin, EnsureOriginWithArg, Everything, EverythingBut, Nothing}, weights::{constants::WEIGHT_REF_TIME_PER_SECOND, Weight}, }; -use sp_core::{H256, ConstU32}; +use sp_core::{ConstU32, H256}; use sp_runtime::{ testing::Header, traits::{Hash, IdentityLookup}, diff --git a/xcm/xcm-simulator/example/src/relay_chain.rs b/xcm/xcm-simulator/example/src/relay_chain.rs index 5d4f7f94a099..e34adef99d68 100644 --- a/xcm/xcm-simulator/example/src/relay_chain.rs +++ b/xcm/xcm-simulator/example/src/relay_chain.rs @@ -21,7 +21,7 @@ use frame_support::{ traits::{AsEnsureOriginWithArg, Everything, Nothing}, weights::Weight, }; -use sp_core::{H256, ConstU32}; +use sp_core::{ConstU32, H256}; use sp_runtime::{testing::Header, traits::IdentityLookup, AccountId32}; use polkadot_parachain::primitives::Id as ParaId; diff --git a/xcm/xcm-simulator/fuzzer/src/parachain.rs b/xcm/xcm-simulator/fuzzer/src/parachain.rs index ec353dc88527..1738ac1046df 100644 --- a/xcm/xcm-simulator/fuzzer/src/parachain.rs +++ b/xcm/xcm-simulator/fuzzer/src/parachain.rs @@ -22,7 +22,7 @@ use frame_support::{ traits::{Everything, Nothing}, weights::{constants::WEIGHT_REF_TIME_PER_SECOND, Weight}, }; -use sp_core::{H256, ConstU32}; +use sp_core::{ConstU32, H256}; use sp_runtime::{ testing::Header, traits::{Hash, IdentityLookup}, diff --git a/xcm/xcm-simulator/fuzzer/src/relay_chain.rs b/xcm/xcm-simulator/fuzzer/src/relay_chain.rs index 3fe13b265ca7..9b2c8d5d419f 100644 --- a/xcm/xcm-simulator/fuzzer/src/relay_chain.rs +++ b/xcm/xcm-simulator/fuzzer/src/relay_chain.rs @@ -21,7 +21,7 @@ use frame_support::{ traits::{Everything, Nothing}, weights::Weight, }; -use sp_core::{H256, ConstU32}; +use sp_core::{ConstU32, H256}; use sp_runtime::{testing::Header, traits::IdentityLookup, AccountId32}; use polkadot_parachain::primitives::Id as ParaId; From 00ed87d90837f7c0ed09a0c147878f84f4c06e11 Mon Sep 17 00:00:00 2001 From: Gav Date: Wed, 15 Mar 2023 20:05:11 +0000 Subject: [PATCH 05/17] Fixes --- Cargo.lock | 447 +++++++++++++++++++-------------- Cargo.toml | 5 +- runtime/parachains/src/mock.rs | 11 +- 3 files changed, 274 insertions(+), 189 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a0575be8540a..2746ce6149cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -466,7 +466,6 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "log", @@ -2295,7 +2294,6 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", ] @@ -2318,7 +2316,6 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-support-procedural", @@ -2343,7 +2340,6 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "array-bytes", @@ -2390,7 +2386,6 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2401,7 +2396,6 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2418,7 +2412,6 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -2447,7 +2440,6 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "log", @@ -2463,7 +2455,6 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "bitflags", "environmental", @@ -2496,7 +2487,6 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "cfg-expr", @@ -2511,7 +2501,6 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2523,7 +2512,6 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro2", "quote", @@ -2533,7 +2521,6 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -2557,7 +2544,6 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -2568,7 +2554,6 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "log", @@ -2586,7 +2571,6 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -2601,7 +2585,6 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-api", @@ -2610,7 +2593,6 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "parity-scale-codec", @@ -2792,7 +2774,6 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "chrono", "frame-election-provider-support", @@ -4571,7 +4552,6 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "log", @@ -4590,7 +4570,6 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "anyhow", "jsonrpsee", @@ -5152,7 +5131,6 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5167,7 +5145,6 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5183,7 +5160,6 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5197,7 +5173,6 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5221,7 +5196,6 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5241,7 +5215,6 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-election-provider-support", "frame-remote-externalities", @@ -5260,7 +5233,6 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5275,7 +5247,6 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5294,7 +5265,6 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -5318,7 +5288,6 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5336,7 +5305,6 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5355,7 +5323,6 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5372,7 +5339,6 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5389,7 +5355,6 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5407,7 +5372,6 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5430,7 +5394,6 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5443,7 +5406,6 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5461,7 +5423,6 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5479,7 +5440,6 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5502,7 +5462,6 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5518,7 +5477,6 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5538,7 +5496,6 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5555,7 +5512,6 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5572,7 +5528,6 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5589,7 +5544,6 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5605,7 +5559,6 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5621,7 +5574,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5638,7 +5590,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5658,7 +5609,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -5669,7 +5619,6 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5686,7 +5635,6 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5710,7 +5658,6 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5727,7 +5674,6 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5742,7 +5688,6 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5760,7 +5705,6 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5775,7 +5719,6 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5794,7 +5737,6 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5811,7 +5753,6 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5832,7 +5773,6 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5848,7 +5788,6 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5862,7 +5801,6 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5885,7 +5823,6 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5896,7 +5833,6 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "sp-arithmetic", @@ -5905,7 +5841,6 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-api", @@ -5914,7 +5849,6 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5931,7 +5865,6 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5945,7 +5878,6 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5963,7 +5895,6 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5982,7 +5913,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5998,7 +5928,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6014,7 +5943,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6026,7 +5954,6 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -6043,7 +5970,6 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -6058,7 +5984,6 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -6074,7 +5999,6 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -6089,7 +6013,6 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -9014,7 +8937,6 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "sp-core", @@ -9025,7 +8947,6 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9053,7 +8974,6 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "futures-timer", @@ -9076,7 +8996,6 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9091,7 +9010,6 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -9110,7 +9028,6 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9121,7 +9038,6 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "chrono", @@ -9161,7 +9077,6 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "fnv", "futures", @@ -9187,7 +9102,6 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "kvdb", @@ -9213,7 +9127,6 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9238,7 +9151,6 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "fork-tree", @@ -9277,7 +9189,6 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "jsonrpsee", @@ -9299,7 +9210,6 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9334,7 +9244,6 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "jsonrpsee", @@ -9353,7 +9262,6 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9366,7 +9274,6 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ahash 0.8.2", "array-bytes", @@ -9406,7 +9313,6 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "finality-grandpa", "futures", @@ -9426,7 +9332,6 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9449,7 +9354,6 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "lru 0.8.1", "parity-scale-codec", @@ -9473,7 +9377,6 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -9486,7 +9389,6 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "sc-allocator", @@ -9499,7 +9401,6 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "anyhow", "cfg-if", @@ -9517,7 +9418,6 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ansi_term", "futures", @@ -9533,7 +9433,6 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9548,7 +9447,6 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-channel", @@ -9592,7 +9490,6 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "cid", "futures", @@ -9612,7 +9509,6 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9640,7 +9536,6 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ahash 0.8.2", "futures", @@ -9659,7 +9554,6 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "futures", @@ -9681,7 +9575,6 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9715,7 +9608,6 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "futures", @@ -9735,7 +9627,6 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "bytes", @@ -9766,7 +9657,6 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "libp2p", @@ -9779,7 +9669,6 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9788,7 +9677,6 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "jsonrpsee", @@ -9818,7 +9706,6 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9837,7 +9724,6 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "http", "jsonrpsee", @@ -9852,7 +9738,6 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "futures", @@ -9878,7 +9763,6 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "directories", @@ -9944,7 +9828,6 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "parity-scale-codec", @@ -9955,7 +9838,6 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "clap 4.0.15", "fs4", @@ -9971,7 +9853,6 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9990,7 +9871,6 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "libc", @@ -10009,7 +9889,6 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "chrono", "futures", @@ -10028,7 +9907,6 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ansi_term", "atty", @@ -10059,7 +9937,6 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10070,7 +9947,6 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -10097,7 +9973,6 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -10111,7 +9986,6 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-channel", "futures", @@ -10626,7 +10500,6 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "log", @@ -10644,7 +10517,6 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "blake2", @@ -10658,7 +10530,6 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10671,7 +10542,6 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "integer-sqrt", "num-traits", @@ -10685,7 +10555,6 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10698,7 +10567,6 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-api", @@ -10710,7 +10578,6 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "log", @@ -10728,7 +10595,6 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -10743,7 +10609,6 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "parity-scale-codec", @@ -10761,7 +10626,6 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "merlin", @@ -10784,7 +10648,6 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "lazy_static", "parity-scale-codec", @@ -10803,7 +10666,6 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "finality-grandpa", "log", @@ -10821,7 +10683,6 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10833,7 +10694,6 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10846,7 +10706,6 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "base58", @@ -10889,7 +10748,6 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "blake2b_simd", "byteorder", @@ -10903,7 +10761,6 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro2", "quote", @@ -10914,7 +10771,6 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10923,7 +10779,6 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro2", "quote", @@ -10933,7 +10788,6 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "environmental", "parity-scale-codec", @@ -10944,7 +10798,6 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10959,7 +10812,6 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "bytes", "ed25519", @@ -10984,7 +10836,6 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "lazy_static", "sp-core", @@ -10995,7 +10846,6 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -11012,7 +10862,6 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "thiserror", "zstd", @@ -11021,7 +10870,6 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -11039,7 +10887,6 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -11053,7 +10900,6 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "sp-api", "sp-core", @@ -11063,7 +10909,6 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "backtrace", "lazy_static", @@ -11073,7 +10918,6 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "rustc-hash", "serde", @@ -11083,7 +10927,6 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "either", "hash256-std-hasher", @@ -11105,7 +10948,6 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11123,7 +10965,6 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "proc-macro-crate", @@ -11135,7 +10976,6 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -11149,7 +10989,6 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -11161,7 +11000,6 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "log", @@ -11181,12 +11019,10 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" [[package]] name = "sp-storage" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11199,7 +11035,6 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures-timer", @@ -11214,7 +11049,6 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-std", @@ -11226,7 +11060,6 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "sp-api", "sp-runtime", @@ -11235,7 +11068,6 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "log", @@ -11251,7 +11083,6 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ahash 0.8.2", "hash-db", @@ -11274,7 +11105,6 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11291,7 +11121,6 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11302,7 +11131,6 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -11316,7 +11144,6 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -11536,7 +11363,6 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "platforms", ] @@ -11544,7 +11370,6 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11563,7 +11388,6 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hyper", "log", @@ -11575,7 +11399,6 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "jsonrpsee", @@ -11588,7 +11411,6 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "log", @@ -11607,7 +11429,6 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -11633,7 +11454,6 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11643,7 +11463,6 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11654,7 +11473,6 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ansi_term", "build-helper", @@ -12455,7 +12273,6 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "clap 4.0.15", @@ -14038,3 +13855,267 @@ dependencies = [ "cc", "libc", ] + +[[patch.unused]] +name = "chain-spec-builder" +version = "2.0.0" + +[[patch.unused]] +name = "frame-benchmarking-pallet-pov" +version = "4.0.0-dev" + +[[patch.unused]] +name = "frame-election-solution-type-fuzzer" +version = "2.0.0-alpha.5" + +[[patch.unused]] +name = "frame-support-test-compile-pass" +version = "4.0.0-dev" + +[[patch.unused]] +name = "kitchensink-runtime" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-bench" +version = "0.9.0-dev" + +[[patch.unused]] +name = "node-cli" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-executor" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-inspect" +version = "0.9.0-dev" + +[[patch.unused]] +name = "node-primitives" +version = "2.0.0" + +[[patch.unused]] +name = "node-rpc" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-runtime-generate-bags" +version = "3.0.0" + +[[patch.unused]] +name = "node-template" +version = "4.0.0-dev" + +[[patch.unused]] +name = "node-template-runtime" +version = "4.0.0-dev" + +[[patch.unused]] +name = "node-testing" +version = "3.0.0-dev" + +[[patch.unused]] +name = "pallet-alliance" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-asset-tx-payment" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-atomic-swap" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-aura" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-bags-list-fuzzer" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-contracts" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-contracts-primitives" +version = "7.0.0" + +[[patch.unused]] +name = "pallet-contracts-proc-macro" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-core-fellowship" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-example-basic" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-example-offchain-worker" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-glutton" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-insecure-randomness-collective-flip" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-lottery" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-message-queue" +version = "7.0.0-dev" + +[[patch.unused]] +name = "pallet-nfts" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-nfts-runtime-api" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-nicks" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-node-authorization" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-nomination-pools-fuzzer" +version = "2.0.0" + +[[patch.unused]] +name = "pallet-nomination-pools-test-staking" +version = "1.0.0" + +[[patch.unused]] +name = "pallet-remark" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-root-offences" +version = "1.0.0-dev" + +[[patch.unused]] +name = "pallet-root-testing" +version = "1.0.0-dev" + +[[patch.unused]] +name = "pallet-salary" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-scored-pool" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-template" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-transaction-storage" +version = "4.0.0-dev" + +[[patch.unused]] +name = "sc-consensus-aura" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sc-consensus-manual-seal" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sc-consensus-pow" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sc-network-test" +version = "0.8.0" + +[[patch.unused]] +name = "sc-runtime-test" +version = "2.0.0" + +[[patch.unused]] +name = "sc-service-test" +version = "2.0.0" + +[[patch.unused]] +name = "sp-api-test" +version = "2.0.1" + +[[patch.unused]] +name = "sp-application-crypto-test" +version = "2.0.0" + +[[patch.unused]] +name = "sp-arithmetic-fuzzer" +version = "2.0.0" + +[[patch.unused]] +name = "sp-consensus-pow" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sp-npos-elections-fuzzer" +version = "2.0.0-alpha.5" + +[[patch.unused]] +name = "sp-runtime-interface-test" +version = "2.0.0" + +[[patch.unused]] +name = "sp-runtime-interface-test-wasm" +version = "2.0.0" + +[[patch.unused]] +name = "sp-runtime-interface-test-wasm-deprecated" +version = "2.0.0" + +[[patch.unused]] +name = "sp-serializer" +version = "4.0.0-dev" + +[[patch.unused]] +name = "sp-test-primitives" +version = "2.0.0" + +[[patch.unused]] +name = "subkey" +version = "3.0.0" + +[[patch.unused]] +name = "substrate-frame-cli" +version = "4.0.0-dev" + +[[patch.unused]] +name = "substrate-frame-rpc-support" +version = "3.0.0" + +[[patch.unused]] +name = "substrate-test-runtime" +version = "2.0.0" + +[[patch.unused]] +name = "substrate-test-runtime-client" +version = "2.0.0" + +[[patch.unused]] +name = "substrate-test-runtime-transaction-pool" +version = "2.0.0" + +[[patch.unused]] +name = "substrate-test-utils-test-crate" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index 5ec0a74d5cac..4e0cf7a41c6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,9 +23,6 @@ color-eyre = { version = "0.6.1", default-features = false } tikv-jemallocator = "0.5.0" # Crates in our workspace, defined as dependencies so we can pass them feature flags. -polkadot-cli = { path = "cli", features = [ "kusama-native", "westend-native", "rococo-native" ] } -polkadot-node-core-pvf = { path = "node/core/pvf" } -polkadot-overseer = { path = "node/overseer" } [dev-dependencies] assert_cmd = "2.0.4" @@ -33,7 +30,6 @@ nix = { version = "0.26.1", features = ["signal"] } tempfile = "3.2.0" tokio = "1.24.2" substrate-rpc-client = { git = "https://github.com/paritytech/substrate", branch = "master" } -polkadot-core-primitives = { path = "core-primitives" } [workspace] members = [ @@ -208,6 +204,7 @@ runtime-metrics = [ "polkadot-cli/runtime-metrics" ] pyroscope = ["polkadot-cli/pyroscope"] jemalloc-allocator = ["polkadot-node-core-pvf/jemalloc-allocator", "polkadot-overseer/jemalloc-allocator"] + # Configuration for building a .deb package - for use with `cargo-deb` [package.metadata.deb] name = "polkadot" diff --git a/runtime/parachains/src/mock.rs b/runtime/parachains/src/mock.rs index 501e8b1a3079..dfb8bb6ff5bc 100644 --- a/runtime/parachains/src/mock.rs +++ b/runtime/parachains/src/mock.rs @@ -25,7 +25,7 @@ use crate::{ use frame_support::{ parameter_types, - traits::{GenesisBuild, ValidatorSet, ValidatorSetWithIdentification}, + traits::{GenesisBuild, ValidatorSet, ValidatorSetWithIdentification, ConstU32}, weights::Weight, }; use frame_support_test::TestRandomness; @@ -113,7 +113,7 @@ impl frame_system::Config for Test { type SystemWeightInfo = (); type SS58Prefix = (); type OnSetCode = (); - type MaxConsumers = frame_support::traits::ConstU32<16>; + type MaxConsumers = ConstU32<16>; } parameter_types! { @@ -130,6 +130,10 @@ impl pallet_balances::Config for Test { type ExistentialDeposit = ExistentialDeposit; type AccountStore = System; type WeightInfo = (); + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } parameter_types! { @@ -459,3 +463,6 @@ pub fn assert_last_event(generic_event: RuntimeEvent) { let frame_system::EventRecord { event, .. } = &events[events.len() - 1]; assert_eq!(event, &system_event); } + +#[test] +fn do_test() {} \ No newline at end of file From 5f0dc3593b796ad2774bdb4dca445fa068736ce9 Mon Sep 17 00:00:00 2001 From: Gav Date: Wed, 15 Mar 2023 20:07:05 +0000 Subject: [PATCH 06/17] Fixes --- Cargo.lock | 447 ++++++++++++++------------------- Cargo.toml | 4 + runtime/parachains/src/mock.rs | 5 +- 3 files changed, 188 insertions(+), 268 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2746ce6149cb..a0575be8540a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -466,6 +466,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "log", @@ -2294,6 +2295,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", ] @@ -2316,6 +2318,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-support-procedural", @@ -2340,6 +2343,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "array-bytes", @@ -2386,6 +2390,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2396,6 +2401,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2412,6 +2418,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -2440,6 +2447,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "log", @@ -2455,6 +2463,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "bitflags", "environmental", @@ -2487,6 +2496,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "cfg-expr", @@ -2501,6 +2511,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2512,6 +2523,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro2", "quote", @@ -2521,6 +2533,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -2544,6 +2557,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -2554,6 +2568,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "log", @@ -2571,6 +2586,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -2585,6 +2601,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-api", @@ -2593,6 +2610,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "parity-scale-codec", @@ -2774,6 +2792,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "chrono", "frame-election-provider-support", @@ -4552,6 +4571,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "log", @@ -4570,6 +4590,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "anyhow", "jsonrpsee", @@ -5131,6 +5152,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5145,6 +5167,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5160,6 +5183,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5173,6 +5197,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5196,6 +5221,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5215,6 +5241,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-election-provider-support", "frame-remote-externalities", @@ -5233,6 +5260,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5247,6 +5275,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5265,6 +5294,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -5288,6 +5318,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5305,6 +5336,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5323,6 +5355,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5339,6 +5372,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5355,6 +5389,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5372,6 +5407,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5394,6 +5430,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5406,6 +5443,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5423,6 +5461,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5440,6 +5479,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5462,6 +5502,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5477,6 +5518,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5496,6 +5538,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5512,6 +5555,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5528,6 +5572,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5544,6 +5589,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5559,6 +5605,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5574,6 +5621,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5590,6 +5638,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5609,6 +5658,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -5619,6 +5669,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5635,6 +5686,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5658,6 +5710,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5674,6 +5727,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5688,6 +5742,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5705,6 +5760,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5719,6 +5775,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5737,6 +5794,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5753,6 +5811,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5773,6 +5832,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5788,6 +5848,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5801,6 +5862,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5823,6 +5885,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5833,6 +5896,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "sp-arithmetic", @@ -5841,6 +5905,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-api", @@ -5849,6 +5914,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5865,6 +5931,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5878,6 +5945,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5895,6 +5963,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5913,6 +5982,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5928,6 +5998,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -5943,6 +6014,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5954,6 +6026,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5970,6 +6043,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5984,6 +6058,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5999,6 +6074,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -6013,6 +6089,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8937,6 +9014,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "sp-core", @@ -8947,6 +9025,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -8974,6 +9053,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "futures-timer", @@ -8996,6 +9076,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9010,6 +9091,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -9028,6 +9110,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9038,6 +9121,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "chrono", @@ -9077,6 +9161,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "fnv", "futures", @@ -9102,6 +9187,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "kvdb", @@ -9127,6 +9213,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9151,6 +9238,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "fork-tree", @@ -9189,6 +9277,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "jsonrpsee", @@ -9210,6 +9299,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9244,6 +9334,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "jsonrpsee", @@ -9262,6 +9353,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9274,6 +9366,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ahash 0.8.2", "array-bytes", @@ -9313,6 +9406,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "finality-grandpa", "futures", @@ -9332,6 +9426,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9354,6 +9449,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "lru 0.8.1", "parity-scale-codec", @@ -9377,6 +9473,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -9389,6 +9486,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "sc-allocator", @@ -9401,6 +9499,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "anyhow", "cfg-if", @@ -9418,6 +9517,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ansi_term", "futures", @@ -9433,6 +9533,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9447,6 +9548,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-channel", @@ -9490,6 +9592,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "cid", "futures", @@ -9509,6 +9612,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9536,6 +9640,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ahash 0.8.2", "futures", @@ -9554,6 +9659,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "futures", @@ -9575,6 +9681,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9608,6 +9715,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "futures", @@ -9627,6 +9735,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "bytes", @@ -9657,6 +9766,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "libp2p", @@ -9669,6 +9779,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9677,6 +9788,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "jsonrpsee", @@ -9706,6 +9818,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9724,6 +9837,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "http", "jsonrpsee", @@ -9738,6 +9852,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "futures", @@ -9763,6 +9878,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "directories", @@ -9828,6 +9944,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "parity-scale-codec", @@ -9838,6 +9955,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "clap 4.0.15", "fs4", @@ -9853,6 +9971,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9871,6 +9990,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "libc", @@ -9889,6 +10009,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "chrono", "futures", @@ -9907,6 +10028,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ansi_term", "atty", @@ -9937,6 +10059,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9947,6 +10070,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9973,6 +10097,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9986,6 +10111,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-channel", "futures", @@ -10500,6 +10626,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "log", @@ -10517,6 +10644,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "blake2", @@ -10530,6 +10658,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10542,6 +10671,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "integer-sqrt", "num-traits", @@ -10555,6 +10685,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10567,6 +10698,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-api", @@ -10578,6 +10710,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "log", @@ -10595,6 +10728,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -10609,6 +10743,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "parity-scale-codec", @@ -10626,6 +10761,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "merlin", @@ -10648,6 +10784,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "lazy_static", "parity-scale-codec", @@ -10666,6 +10803,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "finality-grandpa", "log", @@ -10683,6 +10821,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10694,6 +10833,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10706,6 +10846,7 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "base58", @@ -10748,6 +10889,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "blake2b_simd", "byteorder", @@ -10761,6 +10903,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro2", "quote", @@ -10771,6 +10914,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10779,6 +10923,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro2", "quote", @@ -10788,6 +10933,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "environmental", "parity-scale-codec", @@ -10798,6 +10944,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10812,6 +10959,7 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "bytes", "ed25519", @@ -10836,6 +10984,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "lazy_static", "sp-core", @@ -10846,6 +10995,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -10862,6 +11012,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "thiserror", "zstd", @@ -10870,6 +11021,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -10887,6 +11039,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10900,6 +11053,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "sp-api", "sp-core", @@ -10909,6 +11063,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "backtrace", "lazy_static", @@ -10918,6 +11073,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "rustc-hash", "serde", @@ -10927,6 +11083,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "either", "hash256-std-hasher", @@ -10948,6 +11105,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -10965,6 +11123,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "proc-macro-crate", @@ -10976,6 +11135,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10989,6 +11149,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -11000,6 +11161,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "log", @@ -11019,10 +11181,12 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" [[package]] name = "sp-storage" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11035,6 +11199,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures-timer", @@ -11049,6 +11214,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-std", @@ -11060,6 +11226,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "sp-api", "sp-runtime", @@ -11068,6 +11235,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "log", @@ -11083,6 +11251,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ahash 0.8.2", "hash-db", @@ -11105,6 +11274,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11121,6 +11291,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11131,6 +11302,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -11144,6 +11316,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -11363,6 +11536,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "platforms", ] @@ -11370,6 +11544,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11388,6 +11563,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hyper", "log", @@ -11399,6 +11575,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "jsonrpsee", @@ -11411,6 +11588,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "log", @@ -11429,6 +11607,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -11454,6 +11633,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11463,6 +11643,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11473,6 +11654,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ansi_term", "build-helper", @@ -12273,6 +12455,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "clap 4.0.15", @@ -13855,267 +14038,3 @@ dependencies = [ "cc", "libc", ] - -[[patch.unused]] -name = "chain-spec-builder" -version = "2.0.0" - -[[patch.unused]] -name = "frame-benchmarking-pallet-pov" -version = "4.0.0-dev" - -[[patch.unused]] -name = "frame-election-solution-type-fuzzer" -version = "2.0.0-alpha.5" - -[[patch.unused]] -name = "frame-support-test-compile-pass" -version = "4.0.0-dev" - -[[patch.unused]] -name = "kitchensink-runtime" -version = "3.0.0-dev" - -[[patch.unused]] -name = "node-bench" -version = "0.9.0-dev" - -[[patch.unused]] -name = "node-cli" -version = "3.0.0-dev" - -[[patch.unused]] -name = "node-executor" -version = "3.0.0-dev" - -[[patch.unused]] -name = "node-inspect" -version = "0.9.0-dev" - -[[patch.unused]] -name = "node-primitives" -version = "2.0.0" - -[[patch.unused]] -name = "node-rpc" -version = "3.0.0-dev" - -[[patch.unused]] -name = "node-runtime-generate-bags" -version = "3.0.0" - -[[patch.unused]] -name = "node-template" -version = "4.0.0-dev" - -[[patch.unused]] -name = "node-template-runtime" -version = "4.0.0-dev" - -[[patch.unused]] -name = "node-testing" -version = "3.0.0-dev" - -[[patch.unused]] -name = "pallet-alliance" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-asset-tx-payment" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-atomic-swap" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-aura" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-bags-list-fuzzer" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-contracts" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-contracts-primitives" -version = "7.0.0" - -[[patch.unused]] -name = "pallet-contracts-proc-macro" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-core-fellowship" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-example-basic" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-example-offchain-worker" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-glutton" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-insecure-randomness-collective-flip" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-lottery" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-message-queue" -version = "7.0.0-dev" - -[[patch.unused]] -name = "pallet-nfts" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-nfts-runtime-api" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-nicks" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-node-authorization" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-nomination-pools-fuzzer" -version = "2.0.0" - -[[patch.unused]] -name = "pallet-nomination-pools-test-staking" -version = "1.0.0" - -[[patch.unused]] -name = "pallet-remark" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-root-offences" -version = "1.0.0-dev" - -[[patch.unused]] -name = "pallet-root-testing" -version = "1.0.0-dev" - -[[patch.unused]] -name = "pallet-salary" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-scored-pool" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-template" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-transaction-storage" -version = "4.0.0-dev" - -[[patch.unused]] -name = "sc-consensus-aura" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sc-consensus-manual-seal" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sc-consensus-pow" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sc-network-test" -version = "0.8.0" - -[[patch.unused]] -name = "sc-runtime-test" -version = "2.0.0" - -[[patch.unused]] -name = "sc-service-test" -version = "2.0.0" - -[[patch.unused]] -name = "sp-api-test" -version = "2.0.1" - -[[patch.unused]] -name = "sp-application-crypto-test" -version = "2.0.0" - -[[patch.unused]] -name = "sp-arithmetic-fuzzer" -version = "2.0.0" - -[[patch.unused]] -name = "sp-consensus-pow" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sp-npos-elections-fuzzer" -version = "2.0.0-alpha.5" - -[[patch.unused]] -name = "sp-runtime-interface-test" -version = "2.0.0" - -[[patch.unused]] -name = "sp-runtime-interface-test-wasm" -version = "2.0.0" - -[[patch.unused]] -name = "sp-runtime-interface-test-wasm-deprecated" -version = "2.0.0" - -[[patch.unused]] -name = "sp-serializer" -version = "4.0.0-dev" - -[[patch.unused]] -name = "sp-test-primitives" -version = "2.0.0" - -[[patch.unused]] -name = "subkey" -version = "3.0.0" - -[[patch.unused]] -name = "substrate-frame-cli" -version = "4.0.0-dev" - -[[patch.unused]] -name = "substrate-frame-rpc-support" -version = "3.0.0" - -[[patch.unused]] -name = "substrate-test-runtime" -version = "2.0.0" - -[[patch.unused]] -name = "substrate-test-runtime-client" -version = "2.0.0" - -[[patch.unused]] -name = "substrate-test-runtime-transaction-pool" -version = "2.0.0" - -[[patch.unused]] -name = "substrate-test-utils-test-crate" -version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index 4e0cf7a41c6d..e7d61a567768 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,6 +23,9 @@ color-eyre = { version = "0.6.1", default-features = false } tikv-jemallocator = "0.5.0" # Crates in our workspace, defined as dependencies so we can pass them feature flags. +polkadot-cli = { path = "cli", features = [ "kusama-native", "westend-native", "rococo-native" ] } +polkadot-node-core-pvf = { path = "node/core/pvf" } +polkadot-overseer = { path = "node/overseer" } [dev-dependencies] assert_cmd = "2.0.4" @@ -30,6 +33,7 @@ nix = { version = "0.26.1", features = ["signal"] } tempfile = "3.2.0" tokio = "1.24.2" substrate-rpc-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +polkadot-core-primitives = { path = "core-primitives" } [workspace] members = [ diff --git a/runtime/parachains/src/mock.rs b/runtime/parachains/src/mock.rs index dfb8bb6ff5bc..2b6ca2c67ea9 100644 --- a/runtime/parachains/src/mock.rs +++ b/runtime/parachains/src/mock.rs @@ -25,7 +25,7 @@ use crate::{ use frame_support::{ parameter_types, - traits::{GenesisBuild, ValidatorSet, ValidatorSetWithIdentification, ConstU32}, + traits::{ConstU32, GenesisBuild, ValidatorSet, ValidatorSetWithIdentification}, weights::Weight, }; use frame_support_test::TestRandomness; @@ -463,6 +463,3 @@ pub fn assert_last_event(generic_event: RuntimeEvent) { let frame_system::EventRecord { event, .. } = &events[events.len() - 1]; assert_eq!(event, &system_event); } - -#[test] -fn do_test() {} \ No newline at end of file From e0261ebf602364d09015ab47de5f8efe94fdd76d Mon Sep 17 00:00:00 2001 From: Gav Date: Thu, 16 Mar 2023 04:49:21 +0000 Subject: [PATCH 07/17] Fix integration tests --- Cargo.lock | 447 +++++++++++------- Cargo.toml | 1 + runtime/common/src/integration_tests.rs | 4 + .../src/fungible/mock.rs | 8 +- xcm/pallet-xcm/src/mock.rs | 4 + xcm/xcm-builder/tests/mock/mod.rs | 4 + 6 files changed, 283 insertions(+), 185 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a0575be8540a..2746ce6149cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -466,7 +466,6 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "log", @@ -2295,7 +2294,6 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", ] @@ -2318,7 +2316,6 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-support-procedural", @@ -2343,7 +2340,6 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "array-bytes", @@ -2390,7 +2386,6 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2401,7 +2396,6 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2418,7 +2412,6 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -2447,7 +2440,6 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "log", @@ -2463,7 +2455,6 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "bitflags", "environmental", @@ -2496,7 +2487,6 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "cfg-expr", @@ -2511,7 +2501,6 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2523,7 +2512,6 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro2", "quote", @@ -2533,7 +2521,6 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -2557,7 +2544,6 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -2568,7 +2554,6 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "log", @@ -2586,7 +2571,6 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -2601,7 +2585,6 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-api", @@ -2610,7 +2593,6 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "parity-scale-codec", @@ -2792,7 +2774,6 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "chrono", "frame-election-provider-support", @@ -4571,7 +4552,6 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "log", @@ -4590,7 +4570,6 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "anyhow", "jsonrpsee", @@ -5152,7 +5131,6 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5167,7 +5145,6 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5183,7 +5160,6 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5197,7 +5173,6 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5221,7 +5196,6 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5241,7 +5215,6 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-election-provider-support", "frame-remote-externalities", @@ -5260,7 +5233,6 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5275,7 +5247,6 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5294,7 +5265,6 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -5318,7 +5288,6 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5336,7 +5305,6 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5355,7 +5323,6 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5372,7 +5339,6 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5389,7 +5355,6 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5407,7 +5372,6 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5430,7 +5394,6 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5443,7 +5406,6 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5461,7 +5423,6 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5479,7 +5440,6 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5502,7 +5462,6 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5518,7 +5477,6 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5538,7 +5496,6 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5555,7 +5512,6 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5572,7 +5528,6 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5589,7 +5544,6 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5605,7 +5559,6 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5621,7 +5574,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5638,7 +5590,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5658,7 +5609,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -5669,7 +5619,6 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5686,7 +5635,6 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5710,7 +5658,6 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5727,7 +5674,6 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5742,7 +5688,6 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5760,7 +5705,6 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5775,7 +5719,6 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5794,7 +5737,6 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5811,7 +5753,6 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5832,7 +5773,6 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5848,7 +5788,6 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5862,7 +5801,6 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5885,7 +5823,6 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5896,7 +5833,6 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "sp-arithmetic", @@ -5905,7 +5841,6 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-api", @@ -5914,7 +5849,6 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5931,7 +5865,6 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5945,7 +5878,6 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5963,7 +5895,6 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5982,7 +5913,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-support", "frame-system", @@ -5998,7 +5928,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6014,7 +5943,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6026,7 +5954,6 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -6043,7 +5970,6 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -6058,7 +5984,6 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -6074,7 +5999,6 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -6089,7 +6013,6 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-benchmarking", "frame-support", @@ -9014,7 +8937,6 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "sp-core", @@ -9025,7 +8947,6 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9053,7 +8974,6 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "futures-timer", @@ -9076,7 +8996,6 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9091,7 +9010,6 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -9110,7 +9028,6 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9121,7 +9038,6 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "chrono", @@ -9161,7 +9077,6 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "fnv", "futures", @@ -9187,7 +9102,6 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "kvdb", @@ -9213,7 +9127,6 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9238,7 +9151,6 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "fork-tree", @@ -9277,7 +9189,6 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "jsonrpsee", @@ -9299,7 +9210,6 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9334,7 +9244,6 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "jsonrpsee", @@ -9353,7 +9262,6 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9366,7 +9274,6 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ahash 0.8.2", "array-bytes", @@ -9406,7 +9313,6 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "finality-grandpa", "futures", @@ -9426,7 +9332,6 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -9449,7 +9354,6 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "lru 0.8.1", "parity-scale-codec", @@ -9473,7 +9377,6 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -9486,7 +9389,6 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "sc-allocator", @@ -9499,7 +9401,6 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "anyhow", "cfg-if", @@ -9517,7 +9418,6 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ansi_term", "futures", @@ -9533,7 +9433,6 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9548,7 +9447,6 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-channel", @@ -9592,7 +9490,6 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "cid", "futures", @@ -9612,7 +9509,6 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9640,7 +9536,6 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ahash 0.8.2", "futures", @@ -9659,7 +9554,6 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "futures", @@ -9681,7 +9575,6 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -9715,7 +9608,6 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "futures", @@ -9735,7 +9627,6 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "bytes", @@ -9766,7 +9657,6 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "libp2p", @@ -9779,7 +9669,6 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9788,7 +9677,6 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "jsonrpsee", @@ -9818,7 +9706,6 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9837,7 +9724,6 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "http", "jsonrpsee", @@ -9852,7 +9738,6 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "futures", @@ -9878,7 +9763,6 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "directories", @@ -9944,7 +9828,6 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "log", "parity-scale-codec", @@ -9955,7 +9838,6 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "clap 4.0.15", "fs4", @@ -9971,7 +9853,6 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9990,7 +9871,6 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "libc", @@ -10009,7 +9889,6 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "chrono", "futures", @@ -10028,7 +9907,6 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ansi_term", "atty", @@ -10059,7 +9937,6 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10070,7 +9947,6 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -10097,7 +9973,6 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -10111,7 +9986,6 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-channel", "futures", @@ -10626,7 +10500,6 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "log", @@ -10644,7 +10517,6 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "blake2", @@ -10658,7 +10530,6 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10671,7 +10542,6 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "integer-sqrt", "num-traits", @@ -10685,7 +10555,6 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10698,7 +10567,6 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-api", @@ -10710,7 +10578,6 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "log", @@ -10728,7 +10595,6 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -10743,7 +10609,6 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "parity-scale-codec", @@ -10761,7 +10626,6 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "merlin", @@ -10784,7 +10648,6 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "lazy_static", "parity-scale-codec", @@ -10803,7 +10666,6 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "finality-grandpa", "log", @@ -10821,7 +10683,6 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10833,7 +10694,6 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10846,7 +10706,6 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "base58", @@ -10889,7 +10748,6 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "blake2b_simd", "byteorder", @@ -10903,7 +10761,6 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro2", "quote", @@ -10914,7 +10771,6 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10923,7 +10779,6 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro2", "quote", @@ -10933,7 +10788,6 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "environmental", "parity-scale-codec", @@ -10944,7 +10798,6 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10959,7 +10812,6 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "bytes", "ed25519", @@ -10984,7 +10836,6 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "lazy_static", "sp-core", @@ -10995,7 +10846,6 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures", @@ -11012,7 +10862,6 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "thiserror", "zstd", @@ -11021,7 +10870,6 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -11039,7 +10887,6 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -11053,7 +10900,6 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "sp-api", "sp-core", @@ -11063,7 +10909,6 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "backtrace", "lazy_static", @@ -11073,7 +10918,6 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "rustc-hash", "serde", @@ -11083,7 +10927,6 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "either", "hash256-std-hasher", @@ -11105,7 +10948,6 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11123,7 +10965,6 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "Inflector", "proc-macro-crate", @@ -11135,7 +10976,6 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -11149,7 +10989,6 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -11161,7 +11000,6 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hash-db", "log", @@ -11181,12 +11019,10 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" [[package]] name = "sp-storage" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11199,7 +11035,6 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "futures-timer", @@ -11214,7 +11049,6 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "sp-std", @@ -11226,7 +11060,6 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "sp-api", "sp-runtime", @@ -11235,7 +11068,6 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "log", @@ -11251,7 +11083,6 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ahash 0.8.2", "hash-db", @@ -11274,7 +11105,6 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11291,7 +11121,6 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11302,7 +11131,6 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -11316,7 +11144,6 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "parity-scale-codec", "scale-info", @@ -11536,7 +11363,6 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "platforms", ] @@ -11544,7 +11370,6 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11563,7 +11388,6 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "hyper", "log", @@ -11575,7 +11399,6 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "jsonrpsee", @@ -11588,7 +11411,6 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "jsonrpsee", "log", @@ -11607,7 +11429,6 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "array-bytes", "async-trait", @@ -11633,7 +11454,6 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11643,7 +11463,6 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11654,7 +11473,6 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "ansi_term", "build-helper", @@ -12455,7 +12273,6 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#36ed84069343c55ec4280b2d3cc49c49e3b019d2" dependencies = [ "async-trait", "clap 4.0.15", @@ -14038,3 +13855,267 @@ dependencies = [ "cc", "libc", ] + +[[patch.unused]] +name = "chain-spec-builder" +version = "2.0.0" + +[[patch.unused]] +name = "frame-benchmarking-pallet-pov" +version = "4.0.0-dev" + +[[patch.unused]] +name = "frame-election-solution-type-fuzzer" +version = "2.0.0-alpha.5" + +[[patch.unused]] +name = "frame-support-test-compile-pass" +version = "4.0.0-dev" + +[[patch.unused]] +name = "kitchensink-runtime" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-bench" +version = "0.9.0-dev" + +[[patch.unused]] +name = "node-cli" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-executor" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-inspect" +version = "0.9.0-dev" + +[[patch.unused]] +name = "node-primitives" +version = "2.0.0" + +[[patch.unused]] +name = "node-rpc" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-runtime-generate-bags" +version = "3.0.0" + +[[patch.unused]] +name = "node-template" +version = "4.0.0-dev" + +[[patch.unused]] +name = "node-template-runtime" +version = "4.0.0-dev" + +[[patch.unused]] +name = "node-testing" +version = "3.0.0-dev" + +[[patch.unused]] +name = "pallet-alliance" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-asset-tx-payment" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-atomic-swap" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-aura" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-bags-list-fuzzer" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-contracts" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-contracts-primitives" +version = "7.0.0" + +[[patch.unused]] +name = "pallet-contracts-proc-macro" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-core-fellowship" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-example-basic" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-example-offchain-worker" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-glutton" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-insecure-randomness-collective-flip" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-lottery" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-message-queue" +version = "7.0.0-dev" + +[[patch.unused]] +name = "pallet-nfts" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-nfts-runtime-api" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-nicks" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-node-authorization" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-nomination-pools-fuzzer" +version = "2.0.0" + +[[patch.unused]] +name = "pallet-nomination-pools-test-staking" +version = "1.0.0" + +[[patch.unused]] +name = "pallet-remark" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-root-offences" +version = "1.0.0-dev" + +[[patch.unused]] +name = "pallet-root-testing" +version = "1.0.0-dev" + +[[patch.unused]] +name = "pallet-salary" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-scored-pool" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-template" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-transaction-storage" +version = "4.0.0-dev" + +[[patch.unused]] +name = "sc-consensus-aura" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sc-consensus-manual-seal" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sc-consensus-pow" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sc-network-test" +version = "0.8.0" + +[[patch.unused]] +name = "sc-runtime-test" +version = "2.0.0" + +[[patch.unused]] +name = "sc-service-test" +version = "2.0.0" + +[[patch.unused]] +name = "sp-api-test" +version = "2.0.1" + +[[patch.unused]] +name = "sp-application-crypto-test" +version = "2.0.0" + +[[patch.unused]] +name = "sp-arithmetic-fuzzer" +version = "2.0.0" + +[[patch.unused]] +name = "sp-consensus-pow" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sp-npos-elections-fuzzer" +version = "2.0.0-alpha.5" + +[[patch.unused]] +name = "sp-runtime-interface-test" +version = "2.0.0" + +[[patch.unused]] +name = "sp-runtime-interface-test-wasm" +version = "2.0.0" + +[[patch.unused]] +name = "sp-runtime-interface-test-wasm-deprecated" +version = "2.0.0" + +[[patch.unused]] +name = "sp-serializer" +version = "4.0.0-dev" + +[[patch.unused]] +name = "sp-test-primitives" +version = "2.0.0" + +[[patch.unused]] +name = "subkey" +version = "3.0.0" + +[[patch.unused]] +name = "substrate-frame-cli" +version = "4.0.0-dev" + +[[patch.unused]] +name = "substrate-frame-rpc-support" +version = "3.0.0" + +[[patch.unused]] +name = "substrate-test-runtime" +version = "2.0.0" + +[[patch.unused]] +name = "substrate-test-runtime-client" +version = "2.0.0" + +[[patch.unused]] +name = "substrate-test-runtime-transaction-pool" +version = "2.0.0" + +[[patch.unused]] +name = "substrate-test-utils-test-crate" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index e7d61a567768..af9237054750 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -209,6 +209,7 @@ pyroscope = ["polkadot-cli/pyroscope"] jemalloc-allocator = ["polkadot-node-core-pvf/jemalloc-allocator", "polkadot-overseer/jemalloc-allocator"] + # Configuration for building a .deb package - for use with `cargo-deb` [package.metadata.deb] name = "polkadot" diff --git a/runtime/common/src/integration_tests.rs b/runtime/common/src/integration_tests.rs index 84efd48b3849..d333d5eeca6e 100644 --- a/runtime/common/src/integration_tests.rs +++ b/runtime/common/src/integration_tests.rs @@ -178,6 +178,10 @@ impl pallet_balances::Config for Test { type WeightInfo = (); type MaxReserves = MaxReserves; type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } impl configuration::Config for Test { diff --git a/xcm/pallet-xcm-benchmarks/src/fungible/mock.rs b/xcm/pallet-xcm-benchmarks/src/fungible/mock.rs index e3a02a9bcf94..7ec90deb465b 100644 --- a/xcm/pallet-xcm-benchmarks/src/fungible/mock.rs +++ b/xcm/pallet-xcm-benchmarks/src/fungible/mock.rs @@ -20,7 +20,7 @@ use crate::{fungible as xcm_balances_benchmark, mock::*}; use frame_benchmarking::BenchmarkError; use frame_support::{ parameter_types, - traits::{Everything, Nothing}, + traits::{ConstU32, Everything, Nothing}, weights::Weight, }; use sp_core::H256; @@ -77,7 +77,7 @@ impl frame_system::Config for Test { type SystemWeightInfo = (); type SS58Prefix = (); type OnSetCode = (); - type MaxConsumers = frame_support::traits::ConstU32<16>; + type MaxConsumers = ConstU32<16>; } parameter_types! { @@ -94,6 +94,10 @@ impl pallet_balances::Config for Test { type ExistentialDeposit = ExistentialDeposit; type AccountStore = System; type WeightInfo = (); + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } parameter_types! { diff --git a/xcm/pallet-xcm/src/mock.rs b/xcm/pallet-xcm/src/mock.rs index 74e69c55b31c..54fa2c98e423 100644 --- a/xcm/pallet-xcm/src/mock.rs +++ b/xcm/pallet-xcm/src/mock.rs @@ -242,6 +242,10 @@ impl pallet_balances::Config for Test { type WeightInfo = (); type MaxReserves = MaxReserves; type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } parameter_types! { diff --git a/xcm/xcm-builder/tests/mock/mod.rs b/xcm/xcm-builder/tests/mock/mod.rs index a265bff1e352..ffef8c3faec7 100644 --- a/xcm/xcm-builder/tests/mock/mod.rs +++ b/xcm/xcm-builder/tests/mock/mod.rs @@ -116,6 +116,10 @@ impl pallet_balances::Config for Runtime { type WeightInfo = (); type MaxReserves = MaxReserves; type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } impl shared::Config for Runtime {} From 7f0c17effc88fefd1d9238caa5dae4d9547bbbc6 Mon Sep 17 00:00:00 2001 From: Gav Date: Thu, 16 Mar 2023 05:38:16 +0000 Subject: [PATCH 08/17] Fixes --- Cargo.toml | 1 + runtime/common/src/assigned_slots.rs | 4 ++++ runtime/common/src/auctions.rs | 6 +++++- runtime/common/src/claims.rs | 6 +++++- runtime/common/src/crowdloan/mod.rs | 6 +++++- runtime/common/src/impls.rs | 6 +++++- runtime/common/src/integration_tests.rs | 2 +- runtime/common/src/paras_registrar.rs | 6 +++++- runtime/common/src/purchase.rs | 4 ++++ runtime/common/src/slots/mod.rs | 4 ++++ xcm/pallet-xcm/src/mock.rs | 2 +- xcm/xcm-builder/tests/mock/mod.rs | 2 +- 12 files changed, 41 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index af9237054750..303fb5da7f5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -210,6 +210,7 @@ jemalloc-allocator = ["polkadot-node-core-pvf/jemalloc-allocator", "polkadot-ove + # Configuration for building a .deb package - for use with `cargo-deb` [package.metadata.deb] name = "polkadot" diff --git a/runtime/common/src/assigned_slots.rs b/runtime/common/src/assigned_slots.rs index 96e14820f751..d766b08e7329 100644 --- a/runtime/common/src/assigned_slots.rs +++ b/runtime/common/src/assigned_slots.rs @@ -631,6 +631,10 @@ mod tests { type MaxLocks = (); type MaxReserves = (); type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } impl parachains_configuration::Config for Test { diff --git a/runtime/common/src/auctions.rs b/runtime/common/src/auctions.rs index a75ca812f7b0..484bf8ae323b 100644 --- a/runtime/common/src/auctions.rs +++ b/runtime/common/src/auctions.rs @@ -25,7 +25,7 @@ use crate::{ use frame_support::{ dispatch::DispatchResult, ensure, - traits::{Currency, Get, Randomness, ReservableCurrency}, + traits::{ConstU32, Currency, Get, Randomness, ReservableCurrency}, weights::Weight, }; pub use pallet::*; @@ -748,6 +748,10 @@ mod tests { type MaxLocks = (); type MaxReserves = MaxReserves; type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } #[derive(Eq, PartialEq, Ord, PartialOrd, Clone, Copy, Debug)] diff --git a/runtime/common/src/claims.rs b/runtime/common/src/claims.rs index 82bca143e18b..27d4189a785e 100644 --- a/runtime/common/src/claims.rs +++ b/runtime/common/src/claims.rs @@ -18,7 +18,7 @@ use frame_support::{ ensure, - traits::{Currency, Get, IsSubType, VestingSchedule}, + traits::{ConstU32, Currency, Get, IsSubType, VestingSchedule}, weights::Weight, }; pub use pallet::*; @@ -786,6 +786,10 @@ mod tests { type MaxReserves = (); type ReserveIdentifier = [u8; 8]; type WeightInfo = (); + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } parameter_types! { diff --git a/runtime/common/src/crowdloan/mod.rs b/runtime/common/src/crowdloan/mod.rs index 3c741db8fe00..96d08c0745f9 100644 --- a/runtime/common/src/crowdloan/mod.rs +++ b/runtime/common/src/crowdloan/mod.rs @@ -60,7 +60,7 @@ use frame_support::{ pallet_prelude::{DispatchResult, Weight}, storage::{child, ChildTriePrefixIterator}, traits::{ - Currency, + ConstU32, Currency, ExistenceRequirement::{self, AllowDeath, KeepAlive}, Get, ReservableCurrency, }, @@ -943,6 +943,10 @@ mod tests { type MaxReserves = (); type ReserveIdentifier = [u8; 8]; type WeightInfo = (); + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } #[derive(Copy, Clone, Eq, PartialEq, Debug)] diff --git a/runtime/common/src/impls.rs b/runtime/common/src/impls.rs index de6e415b8606..bab43e381ff9 100644 --- a/runtime/common/src/impls.rs +++ b/runtime/common/src/impls.rs @@ -17,7 +17,7 @@ //! Auxiliary `struct`/`enum`s for polkadot runtime. use crate::NegativeImbalance; -use frame_support::traits::{Currency, Imbalance, OnUnbalanced}; +use frame_support::traits::{ConstU32, Currency, Imbalance, OnUnbalanced}; use primitives::Balance; use sp_runtime::Perquintill; @@ -182,6 +182,10 @@ mod tests { type MaxReserves = (); type ReserveIdentifier = [u8; 8]; type WeightInfo = (); + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } parameter_types! { diff --git a/runtime/common/src/integration_tests.rs b/runtime/common/src/integration_tests.rs index d333d5eeca6e..1e72532f88a9 100644 --- a/runtime/common/src/integration_tests.rs +++ b/runtime/common/src/integration_tests.rs @@ -24,7 +24,7 @@ use crate::{ }; use frame_support::{ assert_noop, assert_ok, parameter_types, - traits::{Currency, GenesisBuild, OnFinalize, OnInitialize}, + traits::{ConstU32, Currency, GenesisBuild, OnFinalize, OnInitialize}, weights::Weight, PalletId, }; diff --git a/runtime/common/src/paras_registrar.rs b/runtime/common/src/paras_registrar.rs index 2fe16f141683..38b3bbf103a4 100644 --- a/runtime/common/src/paras_registrar.rs +++ b/runtime/common/src/paras_registrar.rs @@ -21,7 +21,7 @@ use frame_support::{ dispatch::DispatchResult, ensure, pallet_prelude::Weight, - traits::{Currency, Get, ReservableCurrency}, + traits::{ConstU32, Currency, Get, ReservableCurrency}, }; use frame_system::{self, ensure_root, ensure_signed}; use primitives::{HeadData, Id as ParaId, ValidationCode, LOWEST_PUBLIC_ID}; @@ -750,6 +750,10 @@ mod tests { type MaxReserves = (); type ReserveIdentifier = [u8; 8]; type WeightInfo = (); + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } impl shared::Config for Test {} diff --git a/runtime/common/src/purchase.rs b/runtime/common/src/purchase.rs index 47190c5f2690..1561a38a4556 100644 --- a/runtime/common/src/purchase.rs +++ b/runtime/common/src/purchase.rs @@ -554,6 +554,10 @@ mod tests { type MaxReserves = (); type ReserveIdentifier = [u8; 8]; type WeightInfo = (); + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } parameter_types! { diff --git a/runtime/common/src/slots/mod.rs b/runtime/common/src/slots/mod.rs index 2c3fd39ae00a..7fb8833925a6 100644 --- a/runtime/common/src/slots/mod.rs +++ b/runtime/common/src/slots/mod.rs @@ -568,6 +568,10 @@ mod tests { type MaxLocks = (); type MaxReserves = (); type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<1>; + type MaxFreezes = ConstU32<1>; } parameter_types! { diff --git a/xcm/pallet-xcm/src/mock.rs b/xcm/pallet-xcm/src/mock.rs index 54fa2c98e423..b7976e000efa 100644 --- a/xcm/pallet-xcm/src/mock.rs +++ b/xcm/pallet-xcm/src/mock.rs @@ -17,7 +17,7 @@ use codec::Encode; use frame_support::{ construct_runtime, parameter_types, - traits::{Everything, Nothing}, + traits::{ConstU32, Everything, Nothing}, weights::Weight, }; use polkadot_parachain::primitives::Id as ParaId; diff --git a/xcm/xcm-builder/tests/mock/mod.rs b/xcm/xcm-builder/tests/mock/mod.rs index ffef8c3faec7..4d50610c084c 100644 --- a/xcm/xcm-builder/tests/mock/mod.rs +++ b/xcm/xcm-builder/tests/mock/mod.rs @@ -16,7 +16,7 @@ use frame_support::{ construct_runtime, parameter_types, - traits::{Everything, Nothing}, + traits::{ConstU32, Everything, Nothing}, weights::Weight, }; use parity_scale_codec::Encode; From ca00465386522141f579e7bd9000aee9725141da Mon Sep 17 00:00:00 2001 From: Gav Date: Thu, 16 Mar 2023 06:33:03 +0000 Subject: [PATCH 09/17] fix nis issuance --- Cargo.toml | 1 + runtime/common/src/auctions.rs | 4 ++-- runtime/common/src/claims.rs | 4 ++-- runtime/common/src/crowdloan/mod.rs | 4 ++-- runtime/common/src/impls.rs | 8 ++++++-- runtime/common/src/paras_registrar.rs | 4 ++-- runtime/kusama/src/lib.rs | 3 +-- runtime/rococo/src/lib.rs | 3 +-- 8 files changed, 17 insertions(+), 14 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 303fb5da7f5a..008454e00c98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -211,6 +211,7 @@ jemalloc-allocator = ["polkadot-node-core-pvf/jemalloc-allocator", "polkadot-ove + # Configuration for building a .deb package - for use with `cargo-deb` [package.metadata.deb] name = "polkadot" diff --git a/runtime/common/src/auctions.rs b/runtime/common/src/auctions.rs index 484bf8ae323b..57732cb2e63e 100644 --- a/runtime/common/src/auctions.rs +++ b/runtime/common/src/auctions.rs @@ -25,7 +25,7 @@ use crate::{ use frame_support::{ dispatch::DispatchResult, ensure, - traits::{ConstU32, Currency, Get, Randomness, ReservableCurrency}, + traits::{Currency, Get, Randomness, ReservableCurrency}, weights::Weight, }; pub use pallet::*; @@ -679,7 +679,7 @@ mod tests { assert_noop, assert_ok, assert_storage_noop, dispatch::DispatchError::BadOrigin, ord_parameter_types, parameter_types, - traits::{EitherOfDiverse, OnFinalize, OnInitialize}, + traits::{ConstU32, EitherOfDiverse, OnFinalize, OnInitialize}, }; use frame_system::{EnsureRoot, EnsureSignedBy}; use pallet_balances; diff --git a/runtime/common/src/claims.rs b/runtime/common/src/claims.rs index 27d4189a785e..e2933442ce2d 100644 --- a/runtime/common/src/claims.rs +++ b/runtime/common/src/claims.rs @@ -18,7 +18,7 @@ use frame_support::{ ensure, - traits::{ConstU32, Currency, Get, IsSubType, VestingSchedule}, + traits::{Currency, Get, IsSubType, VestingSchedule}, weights::Weight, }; pub use pallet::*; @@ -717,7 +717,7 @@ mod tests { assert_err, assert_noop, assert_ok, dispatch::{DispatchError::BadOrigin, GetDispatchInfo, Pays}, ord_parameter_types, parameter_types, - traits::{ExistenceRequirement, GenesisBuild, WithdrawReasons}, + traits::{ConstU32, ExistenceRequirement, GenesisBuild, WithdrawReasons}, }; use pallet_balances; use sp_runtime::{ diff --git a/runtime/common/src/crowdloan/mod.rs b/runtime/common/src/crowdloan/mod.rs index 96d08c0745f9..0c4f51adbd60 100644 --- a/runtime/common/src/crowdloan/mod.rs +++ b/runtime/common/src/crowdloan/mod.rs @@ -60,7 +60,7 @@ use frame_support::{ pallet_prelude::{DispatchResult, Weight}, storage::{child, ChildTriePrefixIterator}, traits::{ - ConstU32, Currency, + Currency, ExistenceRequirement::{self, AllowDeath, KeepAlive}, Get, ReservableCurrency, }, @@ -861,7 +861,7 @@ mod tests { use frame_support::{ assert_noop, assert_ok, parameter_types, - traits::{OnFinalize, OnInitialize}, + traits::{ConstU32, OnFinalize, OnInitialize}, }; use primitives::Id as ParaId; use sp_core::H256; diff --git a/runtime/common/src/impls.rs b/runtime/common/src/impls.rs index bab43e381ff9..19e57a0c4747 100644 --- a/runtime/common/src/impls.rs +++ b/runtime/common/src/impls.rs @@ -17,7 +17,7 @@ //! Auxiliary `struct`/`enum`s for polkadot runtime. use crate::NegativeImbalance; -use frame_support::traits::{ConstU32, Currency, Imbalance, OnUnbalanced}; +use frame_support::traits::{Currency, Imbalance, OnUnbalanced}; use primitives::Balance; use sp_runtime::Perquintill; @@ -102,7 +102,11 @@ pub fn era_payout( mod tests { use super::*; use frame_support::{ - dispatch::DispatchClass, parameter_types, traits::FindAuthor, weights::Weight, PalletId, + dispatch::DispatchClass, + parameter_types, + traits::{ConstU32, FindAuthor}, + weights::Weight, + PalletId, }; use frame_system::limits; use primitives::AccountId; diff --git a/runtime/common/src/paras_registrar.rs b/runtime/common/src/paras_registrar.rs index 38b3bbf103a4..b41a5c555967 100644 --- a/runtime/common/src/paras_registrar.rs +++ b/runtime/common/src/paras_registrar.rs @@ -21,7 +21,7 @@ use frame_support::{ dispatch::DispatchResult, ensure, pallet_prelude::Weight, - traits::{ConstU32, Currency, Get, ReservableCurrency}, + traits::{Currency, Get, ReservableCurrency}, }; use frame_system::{self, ensure_root, ensure_signed}; use primitives::{HeadData, Id as ParaId, ValidationCode, LOWEST_PUBLIC_ID}; @@ -658,7 +658,7 @@ mod tests { assert_noop, assert_ok, error::BadOrigin, parameter_types, - traits::{GenesisBuild, OnFinalize, OnInitialize}, + traits::{ConstU32, GenesisBuild, OnFinalize, OnInitialize}, }; use frame_system::limits; use pallet_balances::Error as BalancesError; diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 53400cb481b5..eaaafa27c11d 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1255,7 +1255,6 @@ impl pallet_balances::Config for Runtime { } parameter_types! { - pub IgnoredIssuance: Balance = Treasury::pot(); pub const NisBasePeriod: BlockNumber = 7 * DAYS; pub const MinBid: Balance = 100 * QUID; pub MinReceipt: Perquintill = Perquintill::from_rational(1u64, 10_000_000u64); @@ -1296,7 +1295,7 @@ impl pallet_nis::Config for Runtime { type Counterpart = NisCounterpartBalances; type CounterpartAmount = WithMaximumOf>; type Deficit = (); // Mint - type IgnoredIssuance = IgnoredIssuance; + type IgnoredIssuance = (); type Target = NisTarget; type PalletId = NisPalletId; type QueueCount = ConstU32<500>; diff --git a/runtime/rococo/src/lib.rs b/runtime/rococo/src/lib.rs index 62316e57ecad..0e6d70af4b04 100644 --- a/runtime/rococo/src/lib.rs +++ b/runtime/rococo/src/lib.rs @@ -1188,7 +1188,6 @@ impl pallet_balances::Config for Runtime { } parameter_types! { - pub IgnoredIssuance: Balance = Treasury::pot(); pub const NisBasePeriod: BlockNumber = 30 * DAYS; pub const MinBid: Balance = 100 * UNITS; pub MinReceipt: Perquintill = Perquintill::from_rational(1u64, 10_000_000u64); @@ -1229,7 +1228,7 @@ impl pallet_nis::Config for Runtime { type Counterpart = NisCounterpartBalances; type CounterpartAmount = WithMaximumOf>; type Deficit = (); // Mint - type IgnoredIssuance = IgnoredIssuance; + type IgnoredIssuance = (); type Target = NisTarget; type PalletId = NisPalletId; type QueueCount = ConstU32<300>; From bef1c622103cc304dd58d93088edf73f2bc7e864 Mon Sep 17 00:00:00 2001 From: Gavin Wood Date: Thu, 16 Mar 2023 19:37:44 +0000 Subject: [PATCH 10/17] Update Cargo.toml --- Cargo.toml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 008454e00c98..5ec0a74d5cac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -208,10 +208,6 @@ runtime-metrics = [ "polkadot-cli/runtime-metrics" ] pyroscope = ["polkadot-cli/pyroscope"] jemalloc-allocator = ["polkadot-node-core-pvf/jemalloc-allocator", "polkadot-overseer/jemalloc-allocator"] - - - - # Configuration for building a .deb package - for use with `cargo-deb` [package.metadata.deb] name = "polkadot" From d1bcd59d1486a937eb309869a69d69209d203f16 Mon Sep 17 00:00:00 2001 From: Gav Date: Sat, 18 Mar 2023 14:23:09 +0000 Subject: [PATCH 11/17] Polkadot doesn't have freezes/holds yet --- runtime/polkadot/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 4933c1c34878..12441342f852 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -298,8 +298,8 @@ impl pallet_balances::Config for Runtime { type WeightInfo = weights::pallet_balances::WeightInfo; type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } parameter_types! { From c76c9de64e4c4299c1d0c45c7afd5dbcc32ae52b Mon Sep 17 00:00:00 2001 From: Gav Date: Sat, 18 Mar 2023 14:26:14 +0000 Subject: [PATCH 12/17] No networks use freezes/holds --- runtime/common/src/integration_tests.rs | 4 ++-- runtime/kusama/src/lib.rs | 4 ++-- runtime/parachains/src/mock.rs | 4 ++-- runtime/rococo/src/lib.rs | 4 ++-- runtime/test-runtime/src/lib.rs | 4 ++-- runtime/westend/src/lib.rs | 4 ++-- xcm/pallet-xcm-benchmarks/src/fungible/mock.rs | 4 ++-- xcm/pallet-xcm/src/mock.rs | 4 ++-- xcm/xcm-builder/tests/mock/mod.rs | 4 ++-- xcm/xcm-simulator/example/src/parachain.rs | 4 ++-- xcm/xcm-simulator/example/src/relay_chain.rs | 4 ++-- xcm/xcm-simulator/fuzzer/src/parachain.rs | 4 ++-- xcm/xcm-simulator/fuzzer/src/relay_chain.rs | 4 ++-- 13 files changed, 26 insertions(+), 26 deletions(-) diff --git a/runtime/common/src/integration_tests.rs b/runtime/common/src/integration_tests.rs index 7354f8e77aaa..8f0d27c122ec 100644 --- a/runtime/common/src/integration_tests.rs +++ b/runtime/common/src/integration_tests.rs @@ -180,8 +180,8 @@ impl pallet_balances::Config for Test { type ReserveIdentifier = [u8; 8]; type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } impl configuration::Config for Test { diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index eaaafa27c11d..54a3f648f39a 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1250,8 +1250,8 @@ impl pallet_balances::Config for Runtime { type WeightInfo = weights::pallet_balances_nis_counterpart_balances::WeightInfo; type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } parameter_types! { diff --git a/runtime/parachains/src/mock.rs b/runtime/parachains/src/mock.rs index 15a6aceaa0b0..c2bf8095e3be 100644 --- a/runtime/parachains/src/mock.rs +++ b/runtime/parachains/src/mock.rs @@ -132,8 +132,8 @@ impl pallet_balances::Config for Test { type WeightInfo = (); type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } parameter_types! { diff --git a/runtime/rococo/src/lib.rs b/runtime/rococo/src/lib.rs index 0e6d70af4b04..0d5f9a74a603 100644 --- a/runtime/rococo/src/lib.rs +++ b/runtime/rococo/src/lib.rs @@ -1183,8 +1183,8 @@ impl pallet_balances::Config for Runtime { type WeightInfo = weights::pallet_balances_nis_counterpart_balances::WeightInfo; type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } parameter_types! { diff --git a/runtime/test-runtime/src/lib.rs b/runtime/test-runtime/src/lib.rs index c1d84ad444fb..e2d881b429bc 100644 --- a/runtime/test-runtime/src/lib.rs +++ b/runtime/test-runtime/src/lib.rs @@ -219,8 +219,8 @@ impl pallet_balances::Config for Runtime { type WeightInfo = (); type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } parameter_types! { diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 9a2e148265d1..9b213e00786a 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -260,8 +260,8 @@ impl pallet_balances::Config for Runtime { type WeightInfo = weights::pallet_balances::WeightInfo; type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } parameter_types! { diff --git a/xcm/pallet-xcm-benchmarks/src/fungible/mock.rs b/xcm/pallet-xcm-benchmarks/src/fungible/mock.rs index 7ec90deb465b..56bbd913a010 100644 --- a/xcm/pallet-xcm-benchmarks/src/fungible/mock.rs +++ b/xcm/pallet-xcm-benchmarks/src/fungible/mock.rs @@ -96,8 +96,8 @@ impl pallet_balances::Config for Test { type WeightInfo = (); type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } parameter_types! { diff --git a/xcm/pallet-xcm/src/mock.rs b/xcm/pallet-xcm/src/mock.rs index b7976e000efa..1e23af66b2fc 100644 --- a/xcm/pallet-xcm/src/mock.rs +++ b/xcm/pallet-xcm/src/mock.rs @@ -244,8 +244,8 @@ impl pallet_balances::Config for Test { type ReserveIdentifier = [u8; 8]; type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } parameter_types! { diff --git a/xcm/xcm-builder/tests/mock/mod.rs b/xcm/xcm-builder/tests/mock/mod.rs index 4d50610c084c..450ef181869d 100644 --- a/xcm/xcm-builder/tests/mock/mod.rs +++ b/xcm/xcm-builder/tests/mock/mod.rs @@ -118,8 +118,8 @@ impl pallet_balances::Config for Runtime { type ReserveIdentifier = [u8; 8]; type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } impl shared::Config for Runtime {} diff --git a/xcm/xcm-simulator/example/src/parachain.rs b/xcm/xcm-simulator/example/src/parachain.rs index 0b8f483df4a8..344ccfb9dbcc 100644 --- a/xcm/xcm-simulator/example/src/parachain.rs +++ b/xcm/xcm-simulator/example/src/parachain.rs @@ -106,8 +106,8 @@ impl pallet_balances::Config for Runtime { type ReserveIdentifier = [u8; 8]; type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } #[cfg(feature = "runtime-benchmarks")] diff --git a/xcm/xcm-simulator/example/src/relay_chain.rs b/xcm/xcm-simulator/example/src/relay_chain.rs index e34adef99d68..b44200378a8b 100644 --- a/xcm/xcm-simulator/example/src/relay_chain.rs +++ b/xcm/xcm-simulator/example/src/relay_chain.rs @@ -88,8 +88,8 @@ impl pallet_balances::Config for Runtime { type ReserveIdentifier = [u8; 8]; type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } impl pallet_uniques::Config for Runtime { diff --git a/xcm/xcm-simulator/fuzzer/src/parachain.rs b/xcm/xcm-simulator/fuzzer/src/parachain.rs index 1738ac1046df..66e9673394af 100644 --- a/xcm/xcm-simulator/fuzzer/src/parachain.rs +++ b/xcm/xcm-simulator/fuzzer/src/parachain.rs @@ -96,8 +96,8 @@ impl pallet_balances::Config for Runtime { type ReserveIdentifier = [u8; 8]; type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } parameter_types! { diff --git a/xcm/xcm-simulator/fuzzer/src/relay_chain.rs b/xcm/xcm-simulator/fuzzer/src/relay_chain.rs index 9b2c8d5d419f..3d49a71cc98a 100644 --- a/xcm/xcm-simulator/fuzzer/src/relay_chain.rs +++ b/xcm/xcm-simulator/fuzzer/src/relay_chain.rs @@ -87,8 +87,8 @@ impl pallet_balances::Config for Runtime { type ReserveIdentifier = [u8; 8]; type HoldIdentifier = (); type FreezeIdentifier = (); - type MaxHolds = ConstU32<1>; - type MaxFreezes = ConstU32<1>; + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } impl shared::Config for Runtime {} From e89f75f11a2d7f53c2af42255348eb733db3373a Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Sat, 18 Mar 2023 14:48:13 +0000 Subject: [PATCH 13/17] update lockfile for {"substrate"} --- Cargo.lock | 370 ++++++++++++++++++++++++++--------------------------- 1 file changed, 185 insertions(+), 185 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2e8855b7f025..fa14310c2cb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -466,7 +466,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "hash-db", "log", @@ -2205,9 +2205,9 @@ dependencies = [ [[package]] name = "finality-grandpa" -version = "0.16.1" +version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e24e6c429951433ccb7c87fd528c60084834dcd14763182c1f83291bcde24c34" +checksum = "36530797b9bf31cd4ff126dcfee8170f86b00cfdcea3269d73133cc0415945c3" dependencies = [ "either", "futures", @@ -2295,7 +2295,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", ] @@ -2318,7 +2318,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "frame-support-procedural", @@ -2343,7 +2343,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "Inflector", "array-bytes", @@ -2390,7 +2390,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2401,7 +2401,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2418,7 +2418,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "frame-system", @@ -2447,7 +2447,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "futures", "log", @@ -2463,7 +2463,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "bitflags", "environmental", @@ -2496,7 +2496,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "Inflector", "cfg-expr", @@ -2511,7 +2511,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2523,7 +2523,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "proc-macro2", "quote", @@ -2533,7 +2533,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -2557,7 +2557,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "frame-system", @@ -2568,7 +2568,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "log", @@ -2586,7 +2586,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -2601,7 +2601,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "sp-api", @@ -2610,7 +2610,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "parity-scale-codec", @@ -2792,7 +2792,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "chrono", "frame-election-provider-support", @@ -4571,7 +4571,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "futures", "log", @@ -4590,7 +4590,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "anyhow", "jsonrpsee", @@ -5152,7 +5152,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5167,7 +5167,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "frame-system", @@ -5183,7 +5183,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "frame-system", @@ -5197,7 +5197,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5221,7 +5221,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5241,7 +5241,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-election-provider-support", "frame-remote-externalities", @@ -5260,7 +5260,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5275,7 +5275,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "frame-system", @@ -5294,7 +5294,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -5318,7 +5318,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5336,7 +5336,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5355,7 +5355,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5372,7 +5372,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5389,7 +5389,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5407,7 +5407,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5430,7 +5430,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5443,7 +5443,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5461,7 +5461,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5479,7 +5479,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5502,7 +5502,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5518,7 +5518,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5538,7 +5538,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5555,7 +5555,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5572,7 +5572,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5589,7 +5589,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5605,7 +5605,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5621,7 +5621,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "frame-system", @@ -5638,7 +5638,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5658,7 +5658,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -5669,7 +5669,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "frame-system", @@ -5686,7 +5686,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5710,7 +5710,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5727,7 +5727,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5742,7 +5742,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5760,7 +5760,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5775,7 +5775,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5794,7 +5794,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5811,7 +5811,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "frame-system", @@ -5832,7 +5832,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5848,7 +5848,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "frame-system", @@ -5862,7 +5862,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5885,7 +5885,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5896,7 +5896,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "log", "sp-arithmetic", @@ -5905,7 +5905,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "sp-api", @@ -5914,7 +5914,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5931,7 +5931,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "frame-system", @@ -5945,7 +5945,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5963,7 +5963,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -5982,7 +5982,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-support", "frame-system", @@ -5998,7 +5998,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6014,7 +6014,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6026,7 +6026,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -6043,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -6058,7 +6058,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -6074,7 +6074,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -6089,7 +6089,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-benchmarking", "frame-support", @@ -9014,7 +9014,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "log", "sp-core", @@ -9025,7 +9025,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "futures", @@ -9053,7 +9053,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "futures", "futures-timer", @@ -9076,7 +9076,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9091,7 +9091,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -9110,7 +9110,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9121,7 +9121,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "array-bytes", "chrono", @@ -9161,7 +9161,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "fnv", "futures", @@ -9187,7 +9187,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "hash-db", "kvdb", @@ -9213,7 +9213,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "futures", @@ -9238,7 +9238,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "fork-tree", @@ -9277,7 +9277,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "futures", "jsonrpsee", @@ -9299,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "array-bytes", "async-trait", @@ -9334,7 +9334,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "futures", "jsonrpsee", @@ -9353,7 +9353,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9366,7 +9366,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "ahash 0.8.2", "array-bytes", @@ -9406,7 +9406,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "finality-grandpa", "futures", @@ -9426,7 +9426,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "futures", @@ -9449,7 +9449,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "lru 0.8.1", "parity-scale-codec", @@ -9473,7 +9473,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -9486,7 +9486,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "log", "sc-allocator", @@ -9499,7 +9499,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "anyhow", "cfg-if", @@ -9517,7 +9517,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "ansi_term", "futures", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "array-bytes", "async-trait", @@ -9548,7 +9548,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "array-bytes", "async-channel", @@ -9592,7 +9592,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "cid", "futures", @@ -9612,7 +9612,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "array-bytes", "async-trait", @@ -9640,7 +9640,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "ahash 0.8.2", "futures", @@ -9659,7 +9659,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "array-bytes", "futures", @@ -9681,7 +9681,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "array-bytes", "async-trait", @@ -9715,7 +9715,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "array-bytes", "futures", @@ -9735,7 +9735,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "array-bytes", "bytes", @@ -9766,7 +9766,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "futures", "libp2p", @@ -9779,7 +9779,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9788,7 +9788,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "futures", "jsonrpsee", @@ -9818,7 +9818,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9837,7 +9837,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "http", "jsonrpsee", @@ -9852,7 +9852,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "array-bytes", "futures", @@ -9878,7 +9878,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "directories", @@ -9944,7 +9944,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "log", "parity-scale-codec", @@ -9955,7 +9955,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "clap 4.0.15", "fs4", @@ -9971,7 +9971,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9990,7 +9990,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "futures", "libc", @@ -10009,7 +10009,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "chrono", "futures", @@ -10028,7 +10028,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "ansi_term", "atty", @@ -10059,7 +10059,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10070,7 +10070,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "futures", @@ -10097,7 +10097,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "futures", @@ -10111,7 +10111,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-channel", "futures", @@ -10626,7 +10626,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "hash-db", "log", @@ -10644,7 +10644,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "Inflector", "blake2", @@ -10658,7 +10658,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "scale-info", @@ -10671,7 +10671,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "integer-sqrt", "num-traits", @@ -10685,7 +10685,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "scale-info", @@ -10698,7 +10698,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "sp-api", @@ -10710,7 +10710,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "futures", "log", @@ -10728,7 +10728,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "futures", @@ -10743,7 +10743,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "parity-scale-codec", @@ -10761,7 +10761,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "merlin", @@ -10784,7 +10784,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "lazy_static", "parity-scale-codec", @@ -10803,7 +10803,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "finality-grandpa", "log", @@ -10821,7 +10821,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "scale-info", @@ -10833,7 +10833,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "scale-info", @@ -10846,7 +10846,7 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "array-bytes", "base58", @@ -10889,7 +10889,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "blake2b_simd", "byteorder", @@ -10903,7 +10903,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "proc-macro2", "quote", @@ -10914,7 +10914,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10923,7 +10923,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "proc-macro2", "quote", @@ -10933,7 +10933,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "environmental", "parity-scale-codec", @@ -10944,7 +10944,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10959,7 +10959,7 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "bytes", "ed25519", @@ -10984,7 +10984,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "lazy_static", "sp-core", @@ -10995,7 +10995,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "futures", "merlin", @@ -11011,7 +11011,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "thiserror", "zstd", @@ -11020,7 +11020,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -11038,7 +11038,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "scale-info", @@ -11052,7 +11052,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "sp-api", "sp-core", @@ -11062,7 +11062,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "backtrace", "lazy_static", @@ -11072,7 +11072,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "rustc-hash", "serde", @@ -11082,7 +11082,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "either", "hash256-std-hasher", @@ -11104,7 +11104,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11122,7 +11122,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "Inflector", "proc-macro-crate", @@ -11134,7 +11134,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "scale-info", @@ -11148,7 +11148,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "scale-info", @@ -11160,7 +11160,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "hash-db", "log", @@ -11180,12 +11180,12 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" [[package]] name = "sp-storage" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11198,7 +11198,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "futures-timer", @@ -11213,7 +11213,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "sp-std", @@ -11225,7 +11225,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "sp-api", "sp-runtime", @@ -11234,7 +11234,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "log", @@ -11250,7 +11250,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "ahash 0.8.2", "hash-db", @@ -11273,7 +11273,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11290,7 +11290,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11301,7 +11301,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -11315,7 +11315,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "parity-scale-codec", "scale-info", @@ -11535,7 +11535,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "platforms", ] @@ -11543,7 +11543,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11562,7 +11562,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "hyper", "log", @@ -11574,7 +11574,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "jsonrpsee", @@ -11587,7 +11587,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "jsonrpsee", "log", @@ -11606,7 +11606,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "array-bytes", "async-trait", @@ -11632,7 +11632,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11642,7 +11642,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11653,7 +11653,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "ansi_term", "build-helper", @@ -12454,7 +12454,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a2d4f7dfa97c1496f964c6fe833d5128f8319c77" +source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" dependencies = [ "async-trait", "clap 4.0.15", From c1dbcde740a384b5a6d99db074648980c0a89cb7 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Sat, 18 Mar 2023 20:01:05 +0100 Subject: [PATCH 14/17] Fix tests There are more failing tests; just starting with the easy ones. Reserved balance does not count towards ED anymore, therefore reducing all the reserves by ED (1). Signed-off-by: Oliver Tale-Yazdi --- runtime/common/src/auctions.rs | 46 +++++++++++++++-------------- runtime/common/src/crowdloan/mod.rs | 8 +++-- 2 files changed, 29 insertions(+), 25 deletions(-) diff --git a/runtime/common/src/auctions.rs b/runtime/common/src/auctions.rs index 57732cb2e63e..03ceea703532 100644 --- a/runtime/common/src/auctions.rs +++ b/runtime/common/src/auctions.rs @@ -1416,24 +1416,25 @@ mod tests { let para_2 = ParaId::from(2_u32); // Make a bid and reserve a balance - assert_ok!(Auctions::bid(RuntimeOrigin::signed(1), para_1, 1, 1, 4, 10)); - assert_eq!(Balances::reserved_balance(1), 10); - assert_eq!(ReservedAmounts::::get((1, para_1)), Some(10)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(1), para_1, 1, 1, 4, 9)); + assert_eq!(Balances::reserved_balance(1), 9); + assert_eq!(ReservedAmounts::::get((1, para_1)), Some(9)); assert_eq!(Balances::reserved_balance(2), 0); assert_eq!(ReservedAmounts::::get((2, para_2)), None); // Bigger bid, reserves new balance and returns funds - assert_ok!(Auctions::bid(RuntimeOrigin::signed(2), para_2, 1, 1, 4, 20)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(2), para_2, 1, 1, 4, 19)); assert_eq!(Balances::reserved_balance(1), 0); assert_eq!(ReservedAmounts::::get((1, para_1)), None); - assert_eq!(Balances::reserved_balance(2), 20); - assert_eq!(ReservedAmounts::::get((2, para_2)), Some(20)); + assert_eq!(Balances::reserved_balance(2), 19); + assert_eq!(ReservedAmounts::::get((2, para_2)), Some(19)); }); } #[test] fn initialize_winners_in_ending_period_works() { new_test_ext().execute_with(|| { + assert_eq!(::ExistentialDeposit::get(), 1); run_to_block(1); assert_ok!(Auctions::new_auction(RuntimeOrigin::signed(6), 9, 1)); let para_1 = ParaId::from(1_u32); @@ -1441,16 +1442,16 @@ mod tests { let para_3 = ParaId::from(3_u32); // Make bids - assert_ok!(Auctions::bid(RuntimeOrigin::signed(1), para_1, 1, 1, 4, 10)); - assert_ok!(Auctions::bid(RuntimeOrigin::signed(2), para_2, 1, 3, 4, 20)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(1), para_1, 1, 1, 4, 9)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(2), para_2, 1, 3, 4, 19)); assert_eq!( Auctions::auction_status(System::block_number()), AuctionStatus::::StartingPeriod ); let mut winning = [None; SlotRange::SLOT_RANGE_COUNT]; - winning[SlotRange::ZeroThree as u8 as usize] = Some((1, para_1, 10)); - winning[SlotRange::TwoThree as u8 as usize] = Some((2, para_2, 20)); + winning[SlotRange::ZeroThree as u8 as usize] = Some((1, para_1, 9)); + winning[SlotRange::TwoThree as u8 as usize] = Some((2, para_2, 19)); assert_eq!(Auctions::winning(0), Some(winning)); run_to_block(9); @@ -1472,14 +1473,14 @@ mod tests { AuctionStatus::::EndingPeriod(1, 0) ); assert_eq!(Auctions::winning(1), Some(winning)); - assert_ok!(Auctions::bid(RuntimeOrigin::signed(3), para_3, 1, 3, 4, 30)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(3), para_3, 1, 3, 4, 29)); run_to_block(12); assert_eq!( Auctions::auction_status(System::block_number()), AuctionStatus::::EndingPeriod(2, 0) ); - winning[SlotRange::TwoThree as u8 as usize] = Some((3, para_3, 30)); + winning[SlotRange::TwoThree as u8 as usize] = Some((3, para_3, 29)); assert_eq!(Auctions::winning(2), Some(winning)); }); } @@ -1546,6 +1547,7 @@ mod tests { #[test] fn less_winning_samples_work() { new_test_ext().execute_with(|| { + assert_eq!(::ExistentialDeposit::get(), 1); EndingPeriod::set(30); SampleLength::set(10); @@ -1556,16 +1558,16 @@ mod tests { let para_3 = ParaId::from(3_u32); // Make bids - assert_ok!(Auctions::bid(RuntimeOrigin::signed(1), para_1, 1, 11, 14, 10)); - assert_ok!(Auctions::bid(RuntimeOrigin::signed(2), para_2, 1, 13, 14, 20)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(1), para_1, 1, 11, 14, 9)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(2), para_2, 1, 13, 14, 19)); assert_eq!( Auctions::auction_status(System::block_number()), AuctionStatus::::StartingPeriod ); let mut winning = [None; SlotRange::SLOT_RANGE_COUNT]; - winning[SlotRange::ZeroThree as u8 as usize] = Some((1, para_1, 10)); - winning[SlotRange::TwoThree as u8 as usize] = Some((2, para_2, 20)); + winning[SlotRange::ZeroThree as u8 as usize] = Some((1, para_1, 9)); + winning[SlotRange::TwoThree as u8 as usize] = Some((2, para_2, 19)); assert_eq!(Auctions::winning(0), Some(winning)); run_to_block(9); @@ -1582,8 +1584,8 @@ mod tests { assert_eq!(Auctions::winning(0), Some(winning)); // New bids update the current winning - assert_ok!(Auctions::bid(RuntimeOrigin::signed(3), para_3, 1, 14, 14, 30)); - winning[SlotRange::ThreeThree as u8 as usize] = Some((3, para_3, 30)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(3), para_3, 1, 14, 14, 29)); + winning[SlotRange::ThreeThree as u8 as usize] = Some((3, para_3, 29)); assert_eq!(Auctions::winning(0), Some(winning)); run_to_block(20); @@ -1594,8 +1596,8 @@ mod tests { assert_eq!(Auctions::winning(1), Some(winning)); run_to_block(25); // Overbid mid sample - assert_ok!(Auctions::bid(RuntimeOrigin::signed(3), para_3, 1, 13, 14, 30)); - winning[SlotRange::TwoThree as u8 as usize] = Some((3, para_3, 30)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(3), para_3, 1, 13, 14, 29)); + winning[SlotRange::TwoThree as u8 as usize] = Some((3, para_3, 29)); assert_eq!(Auctions::winning(1), Some(winning)); run_to_block(30); @@ -1615,8 +1617,8 @@ mod tests { assert_eq!( leases(), vec![ - ((3.into(), 13), LeaseData { leaser: 3, amount: 30 }), - ((3.into(), 14), LeaseData { leaser: 3, amount: 30 }), + ((3.into(), 13), LeaseData { leaser: 3, amount: 29 }), + ((3.into(), 14), LeaseData { leaser: 3, amount: 29 }), ] ); }); diff --git a/runtime/common/src/crowdloan/mod.rs b/runtime/common/src/crowdloan/mod.rs index 30f40ec3febb..e456f2087aaf 100644 --- a/runtime/common/src/crowdloan/mod.rs +++ b/runtime/common/src/crowdloan/mod.rs @@ -991,9 +991,10 @@ mod tests { let fund = Funds::::get(para).unwrap(); let account_id = Crowdloan::fund_account_id(fund.fund_index); if winner { + let ed = ::ExistentialDeposit::get(); let free_balance = Balances::free_balance(&account_id); - Balances::reserve(&account_id, free_balance) - .expect("should be able to reserve free balance"); + Balances::reserve(&account_id, free_balance - ed) + .expect("should be able to reserve free balance minus ED"); } else { let reserved_balance = Balances::reserved_balance(&account_id); Balances::unreserve(&account_id, reserved_balance); @@ -1786,6 +1787,7 @@ mod tests { #[test] fn withdraw_from_finished_works() { new_test_ext().execute_with(|| { + assert_eq!(::ExistentialDeposit::get(), 1); let para = new_para(); let index = NextFundIndex::::get(); let account_id = Crowdloan::fund_account_id(index); @@ -1797,7 +1799,7 @@ mod tests { assert_ok!(Crowdloan::contribute(RuntimeOrigin::signed(2), para, 100, None)); assert_ok!(Crowdloan::contribute(RuntimeOrigin::signed(3), para, 50, None)); // simulate the reserving of para's funds. this actually happens in the Slots pallet. - assert_ok!(Balances::reserve(&account_id, 150)); + assert_ok!(Balances::reserve(&account_id, 149)); run_to_block(19); assert_noop!( From a5c22223b79ad0f45939bd30332b94869aca1b29 Mon Sep 17 00:00:00 2001 From: Gav Date: Sun, 19 Mar 2023 11:43:03 +0000 Subject: [PATCH 15/17] Fixes for Polkadot pallets --- runtime/common/src/auctions.rs | 44 ++++++++++++++--------------- runtime/common/src/claims.rs | 7 +++-- runtime/common/src/crowdloan/mod.rs | 2 ++ runtime/common/src/impls.rs | 4 +-- runtime/common/src/purchase.rs | 9 +++--- runtime/common/src/slots/mod.rs | 6 ++-- runtime/parachains/src/mock.rs | 2 +- 7 files changed, 39 insertions(+), 35 deletions(-) diff --git a/runtime/common/src/auctions.rs b/runtime/common/src/auctions.rs index 57732cb2e63e..741980a15d61 100644 --- a/runtime/common/src/auctions.rs +++ b/runtime/common/src/auctions.rs @@ -1416,18 +1416,18 @@ mod tests { let para_2 = ParaId::from(2_u32); // Make a bid and reserve a balance - assert_ok!(Auctions::bid(RuntimeOrigin::signed(1), para_1, 1, 1, 4, 10)); - assert_eq!(Balances::reserved_balance(1), 10); - assert_eq!(ReservedAmounts::::get((1, para_1)), Some(10)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(1), para_1, 1, 1, 4, 9)); + assert_eq!(Balances::reserved_balance(1), 9); + assert_eq!(ReservedAmounts::::get((1, para_1)), Some(9)); assert_eq!(Balances::reserved_balance(2), 0); assert_eq!(ReservedAmounts::::get((2, para_2)), None); // Bigger bid, reserves new balance and returns funds - assert_ok!(Auctions::bid(RuntimeOrigin::signed(2), para_2, 1, 1, 4, 20)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(2), para_2, 1, 1, 4, 19)); assert_eq!(Balances::reserved_balance(1), 0); assert_eq!(ReservedAmounts::::get((1, para_1)), None); - assert_eq!(Balances::reserved_balance(2), 20); - assert_eq!(ReservedAmounts::::get((2, para_2)), Some(20)); + assert_eq!(Balances::reserved_balance(2), 19); + assert_eq!(ReservedAmounts::::get((2, para_2)), Some(19)); }); } @@ -1441,16 +1441,16 @@ mod tests { let para_3 = ParaId::from(3_u32); // Make bids - assert_ok!(Auctions::bid(RuntimeOrigin::signed(1), para_1, 1, 1, 4, 10)); - assert_ok!(Auctions::bid(RuntimeOrigin::signed(2), para_2, 1, 3, 4, 20)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(1), para_1, 1, 1, 4, 9)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(2), para_2, 1, 3, 4, 19)); assert_eq!( Auctions::auction_status(System::block_number()), AuctionStatus::::StartingPeriod ); let mut winning = [None; SlotRange::SLOT_RANGE_COUNT]; - winning[SlotRange::ZeroThree as u8 as usize] = Some((1, para_1, 10)); - winning[SlotRange::TwoThree as u8 as usize] = Some((2, para_2, 20)); + winning[SlotRange::ZeroThree as u8 as usize] = Some((1, para_1, 9)); + winning[SlotRange::TwoThree as u8 as usize] = Some((2, para_2, 19)); assert_eq!(Auctions::winning(0), Some(winning)); run_to_block(9); @@ -1472,14 +1472,14 @@ mod tests { AuctionStatus::::EndingPeriod(1, 0) ); assert_eq!(Auctions::winning(1), Some(winning)); - assert_ok!(Auctions::bid(RuntimeOrigin::signed(3), para_3, 1, 3, 4, 30)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(3), para_3, 1, 3, 4, 29)); run_to_block(12); assert_eq!( Auctions::auction_status(System::block_number()), AuctionStatus::::EndingPeriod(2, 0) ); - winning[SlotRange::TwoThree as u8 as usize] = Some((3, para_3, 30)); + winning[SlotRange::TwoThree as u8 as usize] = Some((3, para_3, 29)); assert_eq!(Auctions::winning(2), Some(winning)); }); } @@ -1556,16 +1556,16 @@ mod tests { let para_3 = ParaId::from(3_u32); // Make bids - assert_ok!(Auctions::bid(RuntimeOrigin::signed(1), para_1, 1, 11, 14, 10)); - assert_ok!(Auctions::bid(RuntimeOrigin::signed(2), para_2, 1, 13, 14, 20)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(1), para_1, 1, 11, 14, 9)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(2), para_2, 1, 13, 14, 19)); assert_eq!( Auctions::auction_status(System::block_number()), AuctionStatus::::StartingPeriod ); let mut winning = [None; SlotRange::SLOT_RANGE_COUNT]; - winning[SlotRange::ZeroThree as u8 as usize] = Some((1, para_1, 10)); - winning[SlotRange::TwoThree as u8 as usize] = Some((2, para_2, 20)); + winning[SlotRange::ZeroThree as u8 as usize] = Some((1, para_1, 9)); + winning[SlotRange::TwoThree as u8 as usize] = Some((2, para_2, 19)); assert_eq!(Auctions::winning(0), Some(winning)); run_to_block(9); @@ -1582,8 +1582,8 @@ mod tests { assert_eq!(Auctions::winning(0), Some(winning)); // New bids update the current winning - assert_ok!(Auctions::bid(RuntimeOrigin::signed(3), para_3, 1, 14, 14, 30)); - winning[SlotRange::ThreeThree as u8 as usize] = Some((3, para_3, 30)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(3), para_3, 1, 14, 14, 29)); + winning[SlotRange::ThreeThree as u8 as usize] = Some((3, para_3, 29)); assert_eq!(Auctions::winning(0), Some(winning)); run_to_block(20); @@ -1594,8 +1594,8 @@ mod tests { assert_eq!(Auctions::winning(1), Some(winning)); run_to_block(25); // Overbid mid sample - assert_ok!(Auctions::bid(RuntimeOrigin::signed(3), para_3, 1, 13, 14, 30)); - winning[SlotRange::TwoThree as u8 as usize] = Some((3, para_3, 30)); + assert_ok!(Auctions::bid(RuntimeOrigin::signed(3), para_3, 1, 13, 14, 29)); + winning[SlotRange::TwoThree as u8 as usize] = Some((3, para_3, 29)); assert_eq!(Auctions::winning(1), Some(winning)); run_to_block(30); @@ -1615,8 +1615,8 @@ mod tests { assert_eq!( leases(), vec![ - ((3.into(), 13), LeaseData { leaser: 3, amount: 30 }), - ((3.into(), 14), LeaseData { leaser: 3, amount: 30 }), + ((3.into(), 13), LeaseData { leaser: 3, amount: 29 }), + ((3.into(), 14), LeaseData { leaser: 3, amount: 29 }), ] ); }); diff --git a/runtime/common/src/claims.rs b/runtime/common/src/claims.rs index e2933442ce2d..7d3cdcb47d39 100644 --- a/runtime/common/src/claims.rs +++ b/runtime/common/src/claims.rs @@ -724,6 +724,7 @@ mod tests { testing::Header, traits::{BlakeTwo256, Identity, IdentityLookup}, transaction_validity::TransactionLongevity, + TokenError, }; type UncheckedExtrinsic = frame_system::mocking::MockUncheckedExtrinsic; @@ -1210,7 +1211,7 @@ mod tests { 180, ExistenceRequirement::AllowDeath ), - pallet_balances::Error::::LiquidityRestrictions, + TokenError::Frozen, ); }); } @@ -1298,6 +1299,8 @@ mod tests { #[test] fn claiming_while_vested_doesnt_work() { new_test_ext().execute_with(|| { + CurrencyOf::::make_free_balance_be(&69, total_claims()); + assert_eq!(Balances::free_balance(69), total_claims()); // A user is already vested assert_ok!(::VestingSchedule::add_vesting_schedule( &69, @@ -1305,8 +1308,6 @@ mod tests { 100, 10 )); - CurrencyOf::::make_free_balance_be(&69, total_claims()); - assert_eq!(Balances::free_balance(69), total_claims()); assert_ok!(Claims::mint_claim( RuntimeOrigin::root(), eth(&bob()), diff --git a/runtime/common/src/crowdloan/mod.rs b/runtime/common/src/crowdloan/mod.rs index 30f40ec3febb..c1f77e7c0ba4 100644 --- a/runtime/common/src/crowdloan/mod.rs +++ b/runtime/common/src/crowdloan/mod.rs @@ -419,6 +419,7 @@ pub mod pallet { let deposit = T::SubmissionDeposit::get(); + frame_system::Pallet::::inc_providers(&Self::fund_account_id(fund_index)); CurrencyOf::::reserve(&depositor, deposit)?; Funds::::insert( @@ -575,6 +576,7 @@ pub mod pallet { // can take care of that. debug_assert!(Self::contribution_iterator(fund.fund_index).count().is_zero()); + frame_system::Pallet::::dec_providers(&Self::fund_account_id(fund.fund_index))?; CurrencyOf::::unreserve(&fund.depositor, fund.deposit); Funds::::remove(index); Self::deposit_event(Event::::Dissolved { para_id: index }); diff --git a/runtime/common/src/impls.rs b/runtime/common/src/impls.rs index 19e57a0c4747..42760eab105a 100644 --- a/runtime/common/src/impls.rs +++ b/runtime/common/src/impls.rs @@ -110,7 +110,7 @@ mod tests { }; use frame_system::limits; use primitives::AccountId; - use sp_core::H256; + use sp_core::{ConstU64, H256}; use sp_runtime::{ testing::Header, traits::{BlakeTwo256, IdentityLookup}, @@ -180,7 +180,7 @@ mod tests { type Balance = u64; type RuntimeEvent = RuntimeEvent; type DustRemoval = (); - type ExistentialDeposit = (); + type ExistentialDeposit = ConstU64<1>; type AccountStore = System; type MaxLocks = (); type MaxReserves = (); diff --git a/runtime/common/src/purchase.rs b/runtime/common/src/purchase.rs index 1561a38a4556..95e279499840 100644 --- a/runtime/common/src/purchase.rs +++ b/runtime/common/src/purchase.rs @@ -485,11 +485,10 @@ mod tests { ord_parameter_types, parameter_types, traits::{Currency, WithdrawReasons}, }; - use pallet_balances::Error as BalancesError; use sp_runtime::{ testing::Header, traits::{BlakeTwo256, Dispatchable, IdentifyAccount, Identity, IdentityLookup, Verify}, - MultiSignature, + ArithmeticError, MultiSignature, }; type UncheckedExtrinsic = frame_system::mocking::MockUncheckedExtrinsic; @@ -819,6 +818,7 @@ mod tests { ); // Account with vesting + Balances::make_free_balance_be(&alice(), 100); assert_ok!(::VestingSchedule::add_vesting_schedule( &alice(), 100, @@ -1131,6 +1131,7 @@ mod tests { // Wrong Origin assert_noop!(Purchase::payout(RuntimeOrigin::signed(alice()), alice(),), BadOrigin); // Account with Existing Vesting Schedule + Balances::make_free_balance_be(&bob(), 100); assert_ok!( ::VestingSchedule::add_vesting_schedule(&bob(), 100, 1, 50,) ); @@ -1167,8 +1168,8 @@ mod tests { Permill::zero(), )); assert_noop!( - Purchase::payout(RuntimeOrigin::signed(payment_account()), alice(),), - BalancesError::::InsufficientBalance + Purchase::payout(RuntimeOrigin::signed(payment_account()), alice()), + ArithmeticError::Underflow ); }); } diff --git a/runtime/common/src/slots/mod.rs b/runtime/common/src/slots/mod.rs index 7fb8833925a6..c9f3388e66ff 100644 --- a/runtime/common/src/slots/mod.rs +++ b/runtime/common/src/slots/mod.rs @@ -848,9 +848,9 @@ mod tests { // max_num different people are reserved for leases to Para ID 1 for i in 1u32..=max_num { let j: u64 = i.into(); - assert_ok!(Slots::lease_out(1.into(), &j, j * 10, i * i, i)); - assert_eq!(Slots::deposit_held(1.into(), &j), j * 10); - assert_eq!(Balances::reserved_balance(j), j * 10); + assert_ok!(Slots::lease_out(1.into(), &j, j * 10 - 1, i * i, i)); + assert_eq!(Slots::deposit_held(1.into(), &j), j * 10 - 1); + assert_eq!(Balances::reserved_balance(j), j * 10 - 1); } assert_ok!(Slots::clear_all_leases(RuntimeOrigin::root(), 1.into())); diff --git a/runtime/parachains/src/mock.rs b/runtime/parachains/src/mock.rs index c2bf8095e3be..fb6946a0161d 100644 --- a/runtime/parachains/src/mock.rs +++ b/runtime/parachains/src/mock.rs @@ -117,7 +117,7 @@ impl frame_system::Config for Test { } parameter_types! { - pub static ExistentialDeposit: u64 = 0; + pub static ExistentialDeposit: u64 = 1; } impl pallet_balances::Config for Test { From f19c4cb47c88cca0ae243863a45b56f7d0c85cd8 Mon Sep 17 00:00:00 2001 From: Gav Date: Sun, 19 Mar 2023 12:48:37 +0000 Subject: [PATCH 16/17] Fix parachains benchmarks --- runtime/parachains/src/hrmp/benchmarking.rs | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/runtime/parachains/src/hrmp/benchmarking.rs b/runtime/parachains/src/hrmp/benchmarking.rs index 562e735e6a50..a2d0e0a2c5a4 100644 --- a/runtime/parachains/src/hrmp/benchmarking.rs +++ b/runtime/parachains/src/hrmp/benchmarking.rs @@ -69,6 +69,7 @@ where ::RuntimeOrigin: From, { let config = Configuration::::config(); + let ed = T::Currency::minimum_balance(); let deposit: BalanceOf = config.hrmp_sender_deposit.unique_saturated_into(); let capacity = config.hrmp_channel_max_capacity; let message_size = config.hrmp_channel_max_message_size; @@ -83,10 +84,10 @@ where // Make both a parachain if they are already not. if !Paras::::is_parachain(sender) { - register_parachain_with_balance::(sender, deposit); + register_parachain_with_balance::(sender, deposit + ed); } if !Paras::::is_parachain(recipient) { - register_parachain_with_balance::(recipient, deposit); + register_parachain_with_balance::(recipient, deposit + ed); } assert_ok!(Hrmp::::hrmp_init_open_channel( @@ -147,9 +148,10 @@ frame_benchmarking::benchmarks! { let recipient_id: ParaId = 2u32.into(); // make sure para is registered, and has enough balance. + let ed = T::Currency::minimum_balance(); let deposit: BalanceOf = Configuration::::config().hrmp_sender_deposit.unique_saturated_into(); - register_parachain_with_balance::(sender_id, deposit); - register_parachain_with_balance::(recipient_id, deposit); + register_parachain_with_balance::(sender_id, deposit + ed); + register_parachain_with_balance::(recipient_id, deposit + ed); let capacity = Configuration::::config().hrmp_channel_max_capacity; let message_size = Configuration::::config().hrmp_channel_max_message_size; @@ -302,12 +304,13 @@ frame_benchmarking::benchmarks! { let recipient_id: ParaId = 2u32.into(); // make sure para is registered, and has enough balance. + let ed = T::Currency::minimum_balance(); let sender_deposit: BalanceOf = Configuration::::config().hrmp_sender_deposit.unique_saturated_into(); let recipient_deposit: BalanceOf = Configuration::::config().hrmp_recipient_deposit.unique_saturated_into(); - register_parachain_with_balance::(sender_id, sender_deposit); - register_parachain_with_balance::(recipient_id, recipient_deposit); + register_parachain_with_balance::(sender_id, sender_deposit + ed); + register_parachain_with_balance::(recipient_id, recipient_deposit + ed); let capacity = Configuration::::config().hrmp_channel_max_capacity; let message_size = Configuration::::config().hrmp_channel_max_message_size; From 7190e8726e8df53bda1193c55880f17719c8ef20 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Mon, 20 Mar 2023 13:36:26 +0100 Subject: [PATCH 17/17] Update Substrate Signed-off-by: Oliver Tale-Yazdi --- Cargo.lock | 368 ++++++++++++++++++++++++++--------------------------- 1 file changed, 184 insertions(+), 184 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fa14310c2cb3..0fab811021cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -466,7 +466,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "hash-db", "log", @@ -2295,7 +2295,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", ] @@ -2318,7 +2318,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "frame-support-procedural", @@ -2343,7 +2343,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "Inflector", "array-bytes", @@ -2390,7 +2390,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2401,7 +2401,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2418,7 +2418,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "frame-system", @@ -2447,7 +2447,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "futures", "log", @@ -2463,7 +2463,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "bitflags", "environmental", @@ -2496,7 +2496,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "Inflector", "cfg-expr", @@ -2511,7 +2511,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2523,7 +2523,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "proc-macro2", "quote", @@ -2533,7 +2533,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -2557,7 +2557,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "frame-system", @@ -2568,7 +2568,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "log", @@ -2586,7 +2586,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -2601,7 +2601,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "sp-api", @@ -2610,7 +2610,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "parity-scale-codec", @@ -2792,7 +2792,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "chrono", "frame-election-provider-support", @@ -4571,7 +4571,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "futures", "log", @@ -4590,7 +4590,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "anyhow", "jsonrpsee", @@ -5152,7 +5152,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5167,7 +5167,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "frame-system", @@ -5183,7 +5183,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "frame-system", @@ -5197,7 +5197,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5221,7 +5221,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5241,7 +5241,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-election-provider-support", "frame-remote-externalities", @@ -5260,7 +5260,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5275,7 +5275,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "frame-system", @@ -5294,7 +5294,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -5318,7 +5318,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5336,7 +5336,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5355,7 +5355,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5372,7 +5372,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5389,7 +5389,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5407,7 +5407,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5430,7 +5430,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5443,7 +5443,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5461,7 +5461,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5479,7 +5479,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5502,7 +5502,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5518,7 +5518,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5538,7 +5538,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5555,7 +5555,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5572,7 +5572,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5589,7 +5589,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5605,7 +5605,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5621,7 +5621,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "frame-system", @@ -5638,7 +5638,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5658,7 +5658,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -5669,7 +5669,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "frame-system", @@ -5686,7 +5686,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5710,7 +5710,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5727,7 +5727,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5742,7 +5742,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5760,7 +5760,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5775,7 +5775,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5794,7 +5794,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5811,7 +5811,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "frame-system", @@ -5832,7 +5832,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5848,7 +5848,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "frame-system", @@ -5862,7 +5862,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5885,7 +5885,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5896,7 +5896,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "log", "sp-arithmetic", @@ -5905,7 +5905,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "sp-api", @@ -5914,7 +5914,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5931,7 +5931,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "frame-system", @@ -5945,7 +5945,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5963,7 +5963,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -5982,7 +5982,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-support", "frame-system", @@ -5998,7 +5998,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6014,7 +6014,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6026,7 +6026,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -6043,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -6058,7 +6058,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -6074,7 +6074,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -6089,7 +6089,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-benchmarking", "frame-support", @@ -9014,7 +9014,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "log", "sp-core", @@ -9025,7 +9025,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "futures", @@ -9053,7 +9053,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "futures", "futures-timer", @@ -9076,7 +9076,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9091,7 +9091,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -9110,7 +9110,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9121,7 +9121,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "array-bytes", "chrono", @@ -9161,7 +9161,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "fnv", "futures", @@ -9187,7 +9187,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "hash-db", "kvdb", @@ -9213,7 +9213,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "futures", @@ -9238,7 +9238,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "fork-tree", @@ -9277,7 +9277,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "futures", "jsonrpsee", @@ -9299,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "array-bytes", "async-trait", @@ -9334,7 +9334,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "futures", "jsonrpsee", @@ -9353,7 +9353,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9366,7 +9366,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "ahash 0.8.2", "array-bytes", @@ -9406,7 +9406,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "finality-grandpa", "futures", @@ -9426,7 +9426,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "futures", @@ -9449,7 +9449,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "lru 0.8.1", "parity-scale-codec", @@ -9473,7 +9473,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -9486,7 +9486,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "log", "sc-allocator", @@ -9499,7 +9499,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "anyhow", "cfg-if", @@ -9517,7 +9517,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "ansi_term", "futures", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "array-bytes", "async-trait", @@ -9548,7 +9548,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "array-bytes", "async-channel", @@ -9592,7 +9592,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "cid", "futures", @@ -9612,7 +9612,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "array-bytes", "async-trait", @@ -9640,7 +9640,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "ahash 0.8.2", "futures", @@ -9659,7 +9659,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "array-bytes", "futures", @@ -9681,7 +9681,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "array-bytes", "async-trait", @@ -9715,7 +9715,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "array-bytes", "futures", @@ -9735,7 +9735,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "array-bytes", "bytes", @@ -9766,7 +9766,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "futures", "libp2p", @@ -9779,7 +9779,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9788,7 +9788,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "futures", "jsonrpsee", @@ -9818,7 +9818,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9837,7 +9837,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "http", "jsonrpsee", @@ -9852,7 +9852,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "array-bytes", "futures", @@ -9878,7 +9878,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "directories", @@ -9944,7 +9944,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "log", "parity-scale-codec", @@ -9955,7 +9955,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "clap 4.0.15", "fs4", @@ -9971,7 +9971,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9990,7 +9990,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "futures", "libc", @@ -10009,7 +10009,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "chrono", "futures", @@ -10028,7 +10028,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "ansi_term", "atty", @@ -10059,7 +10059,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10070,7 +10070,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "futures", @@ -10097,7 +10097,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "futures", @@ -10111,7 +10111,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-channel", "futures", @@ -10626,7 +10626,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "hash-db", "log", @@ -10644,7 +10644,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "Inflector", "blake2", @@ -10658,7 +10658,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "scale-info", @@ -10671,7 +10671,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "integer-sqrt", "num-traits", @@ -10685,7 +10685,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "scale-info", @@ -10698,7 +10698,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "sp-api", @@ -10710,7 +10710,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "futures", "log", @@ -10728,7 +10728,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "futures", @@ -10743,7 +10743,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "parity-scale-codec", @@ -10761,7 +10761,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "merlin", @@ -10784,7 +10784,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "lazy_static", "parity-scale-codec", @@ -10803,7 +10803,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "finality-grandpa", "log", @@ -10821,7 +10821,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "scale-info", @@ -10833,7 +10833,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "scale-info", @@ -10846,7 +10846,7 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "array-bytes", "base58", @@ -10889,7 +10889,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "blake2b_simd", "byteorder", @@ -10903,7 +10903,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "proc-macro2", "quote", @@ -10914,7 +10914,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10923,7 +10923,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "proc-macro2", "quote", @@ -10933,7 +10933,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "environmental", "parity-scale-codec", @@ -10944,7 +10944,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10959,7 +10959,7 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "bytes", "ed25519", @@ -10984,7 +10984,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "lazy_static", "sp-core", @@ -10995,7 +10995,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "futures", "merlin", @@ -11011,7 +11011,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "thiserror", "zstd", @@ -11020,7 +11020,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -11038,7 +11038,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "scale-info", @@ -11052,7 +11052,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "sp-api", "sp-core", @@ -11062,7 +11062,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "backtrace", "lazy_static", @@ -11072,7 +11072,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "rustc-hash", "serde", @@ -11082,7 +11082,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "either", "hash256-std-hasher", @@ -11104,7 +11104,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11122,7 +11122,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "Inflector", "proc-macro-crate", @@ -11134,7 +11134,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "scale-info", @@ -11148,7 +11148,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "scale-info", @@ -11160,7 +11160,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "hash-db", "log", @@ -11180,12 +11180,12 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" [[package]] name = "sp-storage" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11198,7 +11198,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "futures-timer", @@ -11213,7 +11213,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "sp-std", @@ -11225,7 +11225,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "sp-api", "sp-runtime", @@ -11234,7 +11234,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "log", @@ -11250,11 +11250,11 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "ahash 0.8.2", "hash-db", - "hashbrown 0.12.3", + "hashbrown 0.13.2", "lazy_static", "memory-db", "nohash-hasher", @@ -11273,7 +11273,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11290,7 +11290,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11301,7 +11301,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -11315,7 +11315,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "parity-scale-codec", "scale-info", @@ -11535,7 +11535,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "platforms", ] @@ -11543,7 +11543,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11562,7 +11562,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "hyper", "log", @@ -11574,7 +11574,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "jsonrpsee", @@ -11587,7 +11587,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "jsonrpsee", "log", @@ -11606,7 +11606,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "array-bytes", "async-trait", @@ -11632,7 +11632,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11642,7 +11642,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11653,7 +11653,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "ansi_term", "build-helper", @@ -12454,7 +12454,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f8a1dd4c836d7d29382ba66fc2fce40fc1364546" +source = "git+https://github.com/paritytech/substrate?branch=master#9795fa31435426137d91936a52cab8e50ebe2f50" dependencies = [ "async-trait", "clap 4.0.15",