From ad5d721dbbc9c7ed6f91b3aa41ed2a5039be5879 Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 30 Sep 2022 13:38:07 +0200 Subject: [PATCH 01/40] zombienet/pov-recovery: do not setup reserved connection for collators --- zombienet_tests/0002-pov_recovery.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index fc62d94595a..9ede9d98738 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -33,7 +33,7 @@ cumulus_based = true validator = true image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--reserved-only", "--reserved-nodes {{'charlie'|zombie('multiAddress')}}", "--use-null-consensus", "--disable-block-announcements"] + args = ["--use-null-consensus", "--disable-block-announcements"] # run eve as parachain full node that is only connected to dave [[parachains.collators]] @@ -41,4 +41,4 @@ cumulus_based = true validator = false image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--reserved-only", "--reserved-nodes {{'charlie'|zombie('multiAddress')}}", "--use-null-consensus", "--disable-block-announcements"] + args = ["--use-null-consensus", "--disable-block-announcements"] From 8e1ba07c109d22205e9b6f5f9ffc0749e3d9dd97 Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 30 Sep 2022 13:48:53 +0200 Subject: [PATCH 02/40] connect eve to dave --- zombienet_tests/0002-pov_recovery.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index 9ede9d98738..9b3ea378cdb 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -41,4 +41,4 @@ cumulus_based = true validator = false image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--use-null-consensus", "--disable-block-announcements"] + args = ["--reserved-only", "--reserved-nodes {{'dave'|zombie('multiAddress')}}", "--use-null-consensus", "--disable-block-announcements"] From 8ae8d5347b787ce5e08d6fdb5e7f266299fd70dd Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 30 Sep 2022 13:38:46 +0200 Subject: [PATCH 03/40] REVERTME: diener update --polkadot --branch ao-recovery-try-connect --- client/collator/Cargo.toml | 10 +++++----- client/consensus/common/Cargo.toml | 2 +- client/network/Cargo.toml | 12 ++++++------ client/pov-recovery/Cargo.toml | 8 ++++---- .../relay-chain-inprocess-interface/Cargo.toml | 10 +++++----- client/relay-chain-interface/Cargo.toml | 4 ++-- client/relay-chain-rpc-interface/Cargo.toml | 2 +- client/service/Cargo.toml | 2 +- pallets/dmp-queue/Cargo.toml | 2 +- pallets/parachain-system/Cargo.toml | 2 +- pallets/solo-to-para/Cargo.toml | 2 +- pallets/xcm/Cargo.toml | 2 +- pallets/xcmp-queue/Cargo.toml | 6 +++--- parachain-template/node/Cargo.toml | 8 ++++---- parachain-template/runtime/Cargo.toml | 12 ++++++------ parachains/common/Cargo.toml | 6 +++--- parachains/pallets/ping/Cargo.toml | 2 +- .../runtimes/assets/statemine/Cargo.toml | 18 +++++++++--------- .../runtimes/assets/statemint/Cargo.toml | 18 +++++++++--------- parachains/runtimes/assets/westmint/Cargo.toml | 18 +++++++++--------- .../collectives-polkadot/Cargo.toml | 16 ++++++++-------- .../contracts/contracts-rococo/Cargo.toml | 16 ++++++++-------- parachains/runtimes/starters/shell/Cargo.toml | 6 +++--- parachains/runtimes/testing/penpal/Cargo.toml | 14 +++++++------- .../testing/rococo-parachain/Cargo.toml | 10 +++++----- polkadot-parachain/Cargo.toml | 10 +++++----- primitives/core/Cargo.toml | 6 +++--- primitives/utility/Cargo.toml | 6 +++--- test/client/Cargo.toml | 4 ++-- test/relay-sproof-builder/Cargo.toml | 2 +- .../Cargo.toml | 2 +- test/service/Cargo.toml | 10 +++++----- 32 files changed, 124 insertions(+), 124 deletions(-) diff --git a/client/collator/Cargo.toml b/client/collator/Cargo.toml index b8e05fd37c5..100f2622a85 100644 --- a/client/collator/Cargo.toml +++ b/client/collator/Cargo.toml @@ -18,10 +18,10 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-client-consensus-common = { path = "../consensus/common" } @@ -37,7 +37,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = " sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-test-client = { path = "../../test/client" } diff --git a/client/consensus/common/Cargo.toml b/client/consensus/common/Cargo.toml index 42fa2fb53b2..1f42ce25537 100644 --- a/client/consensus/common/Cargo.toml +++ b/client/consensus/common/Cargo.toml @@ -21,7 +21,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-relay-chain-interface = { path = "../../relay-chain-interface" } diff --git a/client/network/Cargo.toml b/client/network/Cargo.toml index 76b75fbd575..b2546823940 100644 --- a/client/network/Cargo.toml +++ b/client/network/Cargo.toml @@ -22,9 +22,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-relay-chain-interface = { path = "../relay-chain-interface" } @@ -44,9 +44,9 @@ sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "maste substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core" } diff --git a/client/pov-recovery/Cargo.toml b/client/pov-recovery/Cargo.toml index 5bc5adc87da..2558bdc2465 100644 --- a/client/pov-recovery/Cargo.toml +++ b/client/pov-recovery/Cargo.toml @@ -20,10 +20,10 @@ sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", br sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core" } diff --git a/client/relay-chain-inprocess-interface/Cargo.toml b/client/relay-chain-inprocess-interface/Cargo.toml index e2c38c87de7..97bd2b47a17 100644 --- a/client/relay-chain-inprocess-interface/Cargo.toml +++ b/client/relay-chain-inprocess-interface/Cargo.toml @@ -22,9 +22,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, features = ["cli"] } -polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", default-features = false, features = ["cli"] , branch = "ao-recovery-try-connect" } +polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core" } @@ -36,5 +36,5 @@ cumulus-relay-chain-interface = { path = "../relay-chain-interface" } sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } diff --git a/client/relay-chain-interface/Cargo.toml b/client/relay-chain-interface/Cargo.toml index 8dd6771f20a..14423badcc5 100644 --- a/client/relay-chain-interface/Cargo.toml +++ b/client/relay-chain-interface/Cargo.toml @@ -5,8 +5,8 @@ version = "0.1.0" edition = "2021" [dependencies] -polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } cumulus-primitives-core = { path = "../../primitives/core" } diff --git a/client/relay-chain-rpc-interface/Cargo.toml b/client/relay-chain-rpc-interface/Cargo.toml index fe2f9570100..e2c217f7e3a 100644 --- a/client/relay-chain-rpc-interface/Cargo.toml +++ b/client/relay-chain-rpc-interface/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } cumulus-primitives-core = { path = "../../primitives/core" } cumulus-relay-chain-interface = { path = "../relay-chain-interface" } diff --git a/client/service/Cargo.toml b/client/service/Cargo.toml index e705364a1c8..aa3a3eb39d1 100644 --- a/client/service/Cargo.toml +++ b/client/service/Cargo.toml @@ -18,7 +18,7 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-client-cli = { path = "../cli" } diff --git a/pallets/dmp-queue/Cargo.toml b/pallets/dmp-queue/Cargo.toml index 5f423e84fc3..01fc946098d 100644 --- a/pallets/dmp-queue/Cargo.toml +++ b/pallets/dmp-queue/Cargo.toml @@ -16,7 +16,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core", default-features = false } diff --git a/pallets/parachain-system/Cargo.toml b/pallets/parachain-system/Cargo.toml index 8b203135610..d7889b55e73 100644 --- a/pallets/parachain-system/Cargo.toml +++ b/pallets/parachain-system/Cargo.toml @@ -27,7 +27,7 @@ sp-trie = { git = "https://github.com/paritytech/substrate", default-features = sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, features = [ "wasm-api" ], branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, features = [ "wasm-api" ], branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-parachain-system-proc-macro = { path = "proc-macro", default-features = false } diff --git a/pallets/solo-to-para/Cargo.toml b/pallets/solo-to-para/Cargo.toml index 090ea3660d1..a2d7d6d5b61 100644 --- a/pallets/solo-to-para/Cargo.toml +++ b/pallets/solo-to-para/Cargo.toml @@ -17,7 +17,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-parachain-system = { default-features = false, path = "../parachain-system" } diff --git a/pallets/xcm/Cargo.toml b/pallets/xcm/Cargo.toml index c90a3fd8245..a9323c419a4 100644 --- a/pallets/xcm/Cargo.toml +++ b/pallets/xcm/Cargo.toml @@ -14,7 +14,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } cumulus-primitives-core = { path = "../../primitives/core", default-features = false } diff --git a/pallets/xcmp-queue/Cargo.toml b/pallets/xcmp-queue/Cargo.toml index 8c7aef6a354..6e7b6157600 100644 --- a/pallets/xcmp-queue/Cargo.toml +++ b/pallets/xcmp-queue/Cargo.toml @@ -17,8 +17,8 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core", default-features = false } @@ -34,7 +34,7 @@ sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-parachain-system = { path = "../parachain-system" } diff --git a/parachain-template/node/Cargo.toml b/parachain-template/node/Cargo.toml index a1b1408936e..5492e775cc4 100644 --- a/parachain-template/node/Cargo.toml +++ b/parachain-template/node/Cargo.toml @@ -54,10 +54,10 @@ substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-client-cli = { path = "../../client/cli" } diff --git a/parachain-template/runtime/Cargo.toml b/parachain-template/runtime/Cargo.toml index 5e9b88e2f17..b2ac03cfeaf 100644 --- a/parachain-template/runtime/Cargo.toml +++ b/parachain-template/runtime/Cargo.toml @@ -53,12 +53,12 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../pallets/aura-ext", default-features = false } diff --git a/parachains/common/Cargo.toml b/parachains/common/Cargo.toml index 300f8683d87..a9f1339c29c 100644 --- a/parachains/common/Cargo.toml +++ b/parachains/common/Cargo.toml @@ -26,9 +26,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus pallet-collator-selection = { path = "../../pallets/collator-selection", default-features = false } diff --git a/parachains/pallets/ping/Cargo.toml b/parachains/pallets/ping/Cargo.toml index 544a43ebceb..edaf9bb217e 100644 --- a/parachains/pallets/ping/Cargo.toml +++ b/parachains/pallets/ping/Cargo.toml @@ -13,7 +13,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } cumulus-primitives-core = { path = "../../../primitives/core", default-features = false } cumulus-pallet-xcm = { path = "../../../pallets/xcm", default-features = false } diff --git a/parachains/runtimes/assets/statemine/Cargo.toml b/parachains/runtimes/assets/statemine/Cargo.toml index 7c47a42a4fe..1f45a58e5b0 100644 --- a/parachains/runtimes/assets/statemine/Cargo.toml +++ b/parachains/runtimes/assets/statemine/Cargo.toml @@ -46,14 +46,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } @@ -68,7 +68,7 @@ cumulus-primitives-utility = { path = "../../../../primitives/utility", default- pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false } parachain-info = { path = "../../../pallets/parachain-info", default-features = false } parachains-common = { path = "../../../common", default-features = false } -pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, optional = true } +pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", default-features = false, optional = true , branch = "ao-recovery-try-connect" } [dev-dependencies] diff --git a/parachains/runtimes/assets/statemint/Cargo.toml b/parachains/runtimes/assets/statemint/Cargo.toml index 127bba217ac..2a8638dee16 100644 --- a/parachains/runtimes/assets/statemint/Cargo.toml +++ b/parachains/runtimes/assets/statemint/Cargo.toml @@ -46,14 +46,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } @@ -68,7 +68,7 @@ cumulus-primitives-utility = { path = "../../../../primitives/utility", default- pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false } parachain-info = { path = "../../../pallets/parachain-info", default-features = false } parachains-common = { path = "../../../common", default-features = false } -pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, optional = true } +pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", default-features = false, optional = true , branch = "ao-recovery-try-connect" } [dev-dependencies] hex-literal = "0.3.4" diff --git a/parachains/runtimes/assets/westmint/Cargo.toml b/parachains/runtimes/assets/westmint/Cargo.toml index b8b06231155..96e33c0a689 100644 --- a/parachains/runtimes/assets/westmint/Cargo.toml +++ b/parachains/runtimes/assets/westmint/Cargo.toml @@ -46,14 +46,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -westend-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +westend-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } @@ -68,7 +68,7 @@ cumulus-primitives-utility = { path = "../../../../primitives/utility", default- pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false } parachain-info = { path = "../../../pallets/parachain-info", default-features = false } parachains-common = { path = "../../../common", default-features = false } -pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, optional = true } +pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", default-features = false, optional = true , branch = "ao-recovery-try-connect" } [dev-dependencies] hex-literal = "0.3.4" diff --git a/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml b/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml index 4a6939b7c0f..75f1e74733d 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml +++ b/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml @@ -45,14 +45,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml index 1d4b48b415a..cd2cb94826e 100644 --- a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml +++ b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml @@ -52,14 +52,14 @@ pallet-contracts-primitives = { git = "https://github.com/paritytech/substrate", pallet-contracts-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/parachains/runtimes/starters/shell/Cargo.toml b/parachains/runtimes/starters/shell/Cargo.toml index 2588990a382..ae165a30919 100644 --- a/parachains/runtimes/starters/shell/Cargo.toml +++ b/parachains/runtimes/starters/shell/Cargo.toml @@ -25,9 +25,9 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false } diff --git a/parachains/runtimes/testing/penpal/Cargo.toml b/parachains/runtimes/testing/penpal/Cargo.toml index 7aa20c46320..e2cf3aee412 100644 --- a/parachains/runtimes/testing/penpal/Cargo.toml +++ b/parachains/runtimes/testing/penpal/Cargo.toml @@ -52,13 +52,13 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/parachains/runtimes/testing/rococo-parachain/Cargo.toml b/parachains/runtimes/testing/rococo-parachain/Cargo.toml index d16847a8cd3..0444a13c92f 100644 --- a/parachains/runtimes/testing/rococo-parachain/Cargo.toml +++ b/parachains/runtimes/testing/rococo-parachain/Cargo.toml @@ -34,11 +34,11 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/polkadot-parachain/Cargo.toml b/polkadot-parachain/Cargo.toml index 68b5830bd0c..f4a97598a59 100644 --- a/polkadot-parachain/Cargo.toml +++ b/polkadot-parachain/Cargo.toml @@ -66,10 +66,10 @@ frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://gith pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-client-cli = { path = "../client/cli" } @@ -94,7 +94,7 @@ tempfile = "3.3.0" tokio = { version = "1.21.1", features = ["macros", "time", "parking_lot"] } wait-timeout = "0.2" # purge_chain_works works with rococo-local and needs to allow this -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master", features = ["rococo-native"] } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", features = ["rococo-native"] , branch = "ao-recovery-try-connect" } [features] default = [] diff --git a/primitives/core/Cargo.toml b/primitives/core/Cargo.toml index 9a67cac16c5..8d3febecf63 100644 --- a/primitives/core/Cargo.toml +++ b/primitives/core/Cargo.toml @@ -14,9 +14,9 @@ sp-std = { git = "https://github.com/paritytech/substrate", default-features = f sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } [features] default = [ "std" ] diff --git a/primitives/utility/Cargo.toml b/primitives/utility/Cargo.toml index 6278025e1db..4f9637a0f22 100644 --- a/primitives/utility/Cargo.toml +++ b/primitives/utility/Cargo.toml @@ -14,9 +14,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus diff --git a/test/client/Cargo.toml b/test/client/Cargo.toml index 490730b7519..aa69c3ba256 100644 --- a/test/client/Cargo.toml +++ b/test/client/Cargo.toml @@ -27,8 +27,8 @@ pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-test-runtime = { path = "../runtime" } diff --git a/test/relay-sproof-builder/Cargo.toml b/test/relay-sproof-builder/Cargo.toml index 32e12ee25cc..ca5cca6f547 100644 --- a/test/relay-sproof-builder/Cargo.toml +++ b/test/relay-sproof-builder/Cargo.toml @@ -13,7 +13,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", default-fe sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core", default-features = false } diff --git a/test/relay-validation-worker-provider/Cargo.toml b/test/relay-validation-worker-provider/Cargo.toml index 8d1be981559..b11b469a0a0 100644 --- a/test/relay-validation-worker-provider/Cargo.toml +++ b/test/relay-validation-worker-provider/Cargo.toml @@ -8,7 +8,7 @@ build = "build.rs" [dependencies] # Polkadot -polkadot-node-core-pvf = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-core-pvf = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } [build-dependencies] toml = "0.5.9" diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index 8d9c9c04fa7..8897db20543 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -50,10 +50,10 @@ substrate-test-client = { git = "https://github.com/paritytech/substrate", branc sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-client-cli = { path = "../../client/cli" } @@ -75,7 +75,7 @@ futures = "0.3.24" portpicker = "0.1.1" # Polkadot dependencies -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Substrate dependencies sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } From f8d16c375afd41b8e0c84b59fe62019b86ba95b9 Mon Sep 17 00:00:00 2001 From: Andronik Date: Tue, 4 Oct 2022 10:00:56 +0200 Subject: [PATCH 04/40] REVERTME: cargo update -p sp-io --- Cargo.lock | 581 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 328 insertions(+), 253 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 17b6139822e..03ddcf38d85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "beefy-primitives", "sp-api", @@ -535,7 +535,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -2747,7 +2747,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", ] @@ -2764,7 +2764,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -2787,7 +2787,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "Inflector", "array-bytes", @@ -2838,7 +2838,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2849,7 +2849,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2865,7 +2865,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -2894,7 +2894,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "bitflags", "frame-metadata", @@ -2926,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "Inflector", "cfg-expr", @@ -2940,7 +2940,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2952,7 +2952,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro2", "quote", @@ -2962,7 +2962,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "log", @@ -2980,7 +2980,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -2995,7 +2995,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "sp-api", @@ -3004,7 +3004,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "parity-scale-codec", @@ -3883,7 +3883,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-primitives", "bitvec", @@ -3906,6 +3906,7 @@ dependencies = [ "pallet-bounties", "pallet-child-bounties", "pallet-collective", + "pallet-conviction-voting", "pallet-democracy", "pallet-election-provider-multi-phase", "pallet-election-provider-support-benchmarking", @@ -3925,7 +3926,9 @@ dependencies = [ "pallet-offences-benchmarking", "pallet-preimage", "pallet-proxy", + "pallet-ranked-collective", "pallet-recovery", + "pallet-referenda", "pallet-scheduler", "pallet-session", "pallet-session-benchmarking", @@ -3939,6 +3942,7 @@ dependencies = [ "pallet-treasury", "pallet-utility", "pallet-vesting", + "pallet-whitelist", "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", @@ -3977,7 +3981,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "polkadot-primitives", @@ -5315,8 +5319,9 @@ checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" [[package]] name = "orchestra" -version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +version = "0.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0aab54694ddaa8a9b703724c6ef04272b2d27bc32d2c855aae5cdd1857216b43" dependencies = [ "async-trait", "dyn-clonable", @@ -5331,8 +5336,9 @@ dependencies = [ [[package]] name = "orchestra-proc-macro" -version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +version = "0.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a702b2f6bf592b3eb06c00d80d05afaf7a8eff6b41bb361e397d799acc21b45a" dependencies = [ "expander 0.0.6", "itertools", @@ -5370,7 +5376,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5391,7 +5397,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -5408,7 +5414,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5422,7 +5428,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -5438,7 +5444,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -5454,7 +5460,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -5469,7 +5475,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5493,7 +5499,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5513,7 +5519,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5528,7 +5534,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "beefy-primitives", "frame-support", @@ -5544,7 +5550,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5567,7 +5573,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5585,7 +5591,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5629,7 +5635,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5646,7 +5652,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "bitflags", "frame-benchmarking", @@ -5674,7 +5680,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "bitflags", "parity-scale-codec", @@ -5685,7 +5691,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro2", "quote", @@ -5695,7 +5701,7 @@ dependencies = [ [[package]] name = "pallet-contracts-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "pallet-contracts-primitives", "parity-scale-codec", @@ -5705,10 +5711,27 @@ dependencies = [ "sp-std", ] +[[package]] +name = "pallet-conviction-voting" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +dependencies = [ + "assert_matches", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "serde", + "sp-io", + "sp-runtime", + "sp-std", +] + [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5724,7 +5747,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5748,7 +5771,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5761,7 +5784,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5779,7 +5802,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5800,7 +5823,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5815,7 +5838,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5838,7 +5861,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5854,7 +5877,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5874,7 +5897,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5891,7 +5914,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5908,7 +5931,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5926,7 +5949,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5941,7 +5964,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5956,7 +5979,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -5973,7 +5996,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5993,7 +6016,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "sp-api", @@ -6003,7 +6026,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -6020,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6043,7 +6066,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6059,7 +6082,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6074,7 +6097,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -6085,16 +6108,52 @@ dependencies = [ "sp-std", ] +[[package]] +name = "pallet-ranked-collective" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", +] + [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-io", + "sp-runtime", + "sp-std", +] + +[[package]] +name = "pallet-referenda" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ + "assert_matches", "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", + "serde", + "sp-arithmetic", "sp-io", "sp-runtime", "sp-std", @@ -6103,7 +6162,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6119,7 +6178,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -6140,7 +6199,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6156,7 +6215,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -6170,7 +6229,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6193,7 +6252,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6204,7 +6263,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "sp-arithmetic", @@ -6213,7 +6272,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -6242,7 +6301,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6260,7 +6319,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6279,7 +6338,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -6295,7 +6354,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6310,7 +6369,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6321,7 +6380,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6338,7 +6397,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6353,7 +6412,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6369,7 +6428,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6381,10 +6440,25 @@ dependencies = [ "sp-std", ] +[[package]] +name = "pallet-whitelist" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-runtime", + "sp-std", +] + [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "frame-system", @@ -6402,7 +6476,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6955,7 +7029,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6970,7 +7044,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6984,7 +7058,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "derive_more", "fatality", @@ -7007,7 +7081,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "fatality", "futures", @@ -7028,7 +7102,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7054,7 +7128,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7095,7 +7169,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "always-assert", "fatality", @@ -7116,7 +7190,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7129,7 +7203,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "derive_more", "fatality", @@ -7152,7 +7226,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7166,7 +7240,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "futures-timer", @@ -7186,7 +7260,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "always-assert", "async-trait", @@ -7210,7 +7284,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "parity-scale-codec", @@ -7228,7 +7302,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bitvec", "derive_more", @@ -7257,7 +7331,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bitvec", "futures", @@ -7277,7 +7351,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bitvec", "fatality", @@ -7296,7 +7370,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7311,7 +7385,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "futures", @@ -7329,7 +7403,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7344,7 +7418,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "futures-timer", @@ -7361,7 +7435,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "fatality", "futures", @@ -7380,7 +7454,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "futures", @@ -7397,7 +7471,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bitvec", "fatality", @@ -7415,7 +7489,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "always-assert", "assert_matches", @@ -7447,7 +7521,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "polkadot-node-primitives", @@ -7463,7 +7537,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "memory-lru", @@ -7479,7 +7553,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-std", "lazy_static", @@ -7497,7 +7571,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bs58", "futures", @@ -7516,7 +7590,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "derive_more", @@ -7539,7 +7613,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bounded-vec", "futures", @@ -7561,7 +7635,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7571,7 +7645,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "futures", @@ -7589,7 +7663,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "derive_more", @@ -7612,7 +7686,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "derive_more", @@ -7645,7 +7719,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "futures", @@ -7668,7 +7742,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "derive_more", "frame-support", @@ -7765,7 +7839,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7780,7 +7854,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bitvec", "frame-system", @@ -7810,7 +7884,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7842,7 +7916,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-primitives", "bitvec", @@ -7931,7 +8005,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-primitives", "bitvec", @@ -7978,7 +8052,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "polkadot-primitives", @@ -7990,7 +8064,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bs58", "parity-scale-codec", @@ -8002,7 +8076,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bitflags", "bitvec", @@ -8045,7 +8119,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "beefy-gadget", @@ -8150,7 +8224,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8171,7 +8245,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8181,7 +8255,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8206,7 +8280,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-primitives", "bitvec", @@ -8267,7 +8341,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-benchmarking", "frame-system", @@ -8412,7 +8486,8 @@ dependencies = [ [[package]] name = "prioritized-metered-channel" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "382698e48a268c832d0b181ed438374a6bb708a82a8ca273bb0f61c74cf209c4" dependencies = [ "coarsetime", "crossbeam-queue", @@ -8897,7 +8972,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9016,7 +9091,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9100,7 +9175,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "polkadot-primitives", @@ -9270,7 +9345,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "sp-core", @@ -9281,7 +9356,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures", @@ -9308,7 +9383,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "futures-timer", @@ -9331,7 +9406,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9347,7 +9422,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9364,7 +9439,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9375,7 +9450,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "chrono", @@ -9415,7 +9490,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "fnv", "futures", @@ -9443,7 +9518,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "hash-db", "kvdb", @@ -9468,7 +9543,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures", @@ -9492,7 +9567,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures", @@ -9521,7 +9596,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "fork-tree", @@ -9563,7 +9638,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "jsonrpsee", @@ -9585,7 +9660,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9598,7 +9673,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures", @@ -9622,7 +9697,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9649,7 +9724,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "environmental", "parity-scale-codec", @@ -9665,7 +9740,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "parity-scale-codec", @@ -9680,7 +9755,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9700,7 +9775,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ahash", "array-bytes", @@ -9741,7 +9816,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "finality-grandpa", "futures", @@ -9762,7 +9837,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ansi_term", "futures", @@ -9779,7 +9854,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "async-trait", @@ -9794,7 +9869,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "async-trait", @@ -9841,7 +9916,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "cid", "futures", @@ -9861,7 +9936,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "bitflags", @@ -9887,7 +9962,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ahash", "futures", @@ -9905,7 +9980,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "futures", @@ -9926,7 +10001,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "fork-tree", @@ -9954,7 +10029,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "futures", @@ -9973,7 +10048,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "bytes", @@ -10003,7 +10078,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "libp2p", @@ -10016,7 +10091,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10025,7 +10100,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "hash-db", @@ -10055,7 +10130,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "jsonrpsee", @@ -10078,7 +10153,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "jsonrpsee", @@ -10091,7 +10166,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "directories", @@ -10161,7 +10236,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "parity-scale-codec", @@ -10175,7 +10250,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10194,7 +10269,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "libc", @@ -10213,7 +10288,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "chrono", "futures", @@ -10231,7 +10306,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ansi_term", "atty", @@ -10262,7 +10337,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10273,7 +10348,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "futures-timer", @@ -10299,7 +10374,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "log", @@ -10312,7 +10387,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "futures-timer", @@ -10742,7 +10817,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "enumn", "parity-scale-codec", @@ -10818,7 +10893,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "hash-db", "log", @@ -10836,7 +10911,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "blake2", "proc-macro-crate", @@ -10848,7 +10923,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -10861,7 +10936,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "integer-sqrt", "num-traits", @@ -10876,7 +10951,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -10889,7 +10964,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "parity-scale-codec", @@ -10901,7 +10976,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "sp-api", @@ -10913,7 +10988,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "log", @@ -10931,7 +11006,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures", @@ -10950,7 +11025,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "parity-scale-codec", @@ -10968,7 +11043,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "merlin", @@ -10991,7 +11066,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -11005,7 +11080,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -11018,7 +11093,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "base58", @@ -11064,7 +11139,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "blake2", "byteorder", @@ -11078,7 +11153,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro2", "quote", @@ -11089,7 +11164,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11098,7 +11173,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro2", "quote", @@ -11108,7 +11183,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "environmental", "parity-scale-codec", @@ -11119,7 +11194,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "finality-grandpa", "log", @@ -11137,7 +11212,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11151,7 +11226,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "bytes", "futures", @@ -11177,7 +11252,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "lazy_static", "sp-core", @@ -11188,7 +11263,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures", @@ -11205,7 +11280,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "thiserror", "zstd", @@ -11214,7 +11289,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "parity-scale-codec", @@ -11229,7 +11304,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -11243,7 +11318,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "sp-api", "sp-core", @@ -11253,7 +11328,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "backtrace", "lazy_static", @@ -11263,7 +11338,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "rustc-hash", "serde", @@ -11273,7 +11348,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "either", "hash256-std-hasher", @@ -11296,7 +11371,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11314,7 +11389,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "Inflector", "proc-macro-crate", @@ -11326,7 +11401,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "parity-scale-codec", @@ -11340,7 +11415,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "serde", "serde_json", @@ -11349,7 +11424,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -11363,7 +11438,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -11374,7 +11449,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "hash-db", "log", @@ -11396,12 +11471,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11414,7 +11489,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "sp-core", @@ -11427,7 +11502,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures-timer", @@ -11443,7 +11518,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "sp-std", @@ -11455,7 +11530,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "sp-api", "sp-runtime", @@ -11464,7 +11539,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "log", @@ -11480,7 +11555,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ahash", "hash-db", @@ -11503,7 +11578,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11520,7 +11595,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11531,7 +11606,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "impl-trait-for-tuples", "log", @@ -11544,7 +11619,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11840,7 +11915,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "platforms", ] @@ -11848,7 +11923,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11869,7 +11944,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures-util", "hyper", @@ -11882,7 +11957,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "jsonrpsee", "log", @@ -11903,7 +11978,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "async-trait", @@ -11929,7 +12004,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11939,7 +12014,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11950,7 +12025,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ansi_term", "build-helper", @@ -12058,7 +12133,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "polkadot-primitives", @@ -12339,7 +12414,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12350,7 +12425,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12477,7 +12552,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "clap", "frame-try-runtime", @@ -13065,7 +13140,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-primitives", "bitvec", @@ -13155,7 +13230,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "polkadot-primitives", @@ -13438,7 +13513,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13452,7 +13527,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "frame-system", @@ -13472,7 +13547,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-benchmarking", "frame-support", @@ -13490,7 +13565,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "Inflector", "proc-macro2", From 0d66b70e5ccedc7a35bcf1b30a070e68cd6a8ccc Mon Sep 17 00:00:00 2001 From: Andronik Date: Tue, 4 Oct 2022 11:33:07 +0200 Subject: [PATCH 05/40] REVERTME: cargo update -p sp-io and hope for the best --- Cargo.lock | 505 +++++++++++++++++++++++++++-------------------------- 1 file changed, 253 insertions(+), 252 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 03ddcf38d85..a5ef5aca7f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,16 +526,17 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "beefy-primitives", "sp-api", + "sp-runtime", ] [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "scale-info", @@ -2747,7 +2748,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", ] @@ -2764,7 +2765,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "frame-system", @@ -2787,7 +2788,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "Inflector", "array-bytes", @@ -2838,7 +2839,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2849,7 +2850,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2865,7 +2866,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "frame-system", @@ -2894,7 +2895,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "bitflags", "frame-metadata", @@ -2926,7 +2927,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "Inflector", "cfg-expr", @@ -2940,7 +2941,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2952,7 +2953,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "proc-macro2", "quote", @@ -2962,7 +2963,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "log", @@ -2980,7 +2981,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -2995,7 +2996,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "sp-api", @@ -3004,7 +3005,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "parity-scale-codec", @@ -3883,7 +3884,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "beefy-primitives", "bitvec", @@ -3981,7 +3982,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "frame-support", "polkadot-primitives", @@ -5376,7 +5377,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5397,7 +5398,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "frame-system", @@ -5414,7 +5415,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5428,7 +5429,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "frame-system", @@ -5444,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "frame-system", @@ -5460,7 +5461,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "frame-system", @@ -5475,7 +5476,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5499,7 +5500,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5519,7 +5520,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5534,7 +5535,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "beefy-primitives", "frame-support", @@ -5550,7 +5551,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5573,7 +5574,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5591,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5635,7 +5636,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5652,7 +5653,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "bitflags", "frame-benchmarking", @@ -5680,7 +5681,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "bitflags", "parity-scale-codec", @@ -5691,7 +5692,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "proc-macro2", "quote", @@ -5701,7 +5702,7 @@ dependencies = [ [[package]] name = "pallet-contracts-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "pallet-contracts-primitives", "parity-scale-codec", @@ -5714,7 +5715,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5731,7 +5732,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5747,7 +5748,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5771,7 +5772,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5784,7 +5785,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5802,7 +5803,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5823,7 +5824,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5838,7 +5839,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5861,7 +5862,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5877,7 +5878,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5897,7 +5898,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5914,7 +5915,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5931,7 +5932,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5949,7 +5950,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5964,7 +5965,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -5979,7 +5980,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "frame-system", @@ -5996,7 +5997,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6016,7 +6017,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "sp-api", @@ -6026,7 +6027,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "frame-system", @@ -6043,7 +6044,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6066,7 +6067,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -6082,7 +6083,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -6097,7 +6098,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "frame-system", @@ -6111,7 +6112,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -6129,7 +6130,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -6144,7 +6145,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6162,7 +6163,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -6178,7 +6179,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "frame-system", @@ -6199,7 +6200,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -6215,7 +6216,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "frame-system", @@ -6229,7 +6230,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6252,7 +6253,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6263,7 +6264,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "log", "sp-arithmetic", @@ -6272,7 +6273,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "frame-system", @@ -6301,7 +6302,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -6319,7 +6320,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -6338,7 +6339,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-support", "frame-system", @@ -6354,7 +6355,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6369,7 +6370,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6380,7 +6381,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -6397,7 +6398,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -6412,7 +6413,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -6428,7 +6429,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -6443,7 +6444,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-benchmarking", "frame-support", @@ -6458,7 +6459,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "frame-support", "frame-system", @@ -6476,7 +6477,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "frame-benchmarking", "frame-support", @@ -7029,7 +7030,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7044,7 +7045,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7058,7 +7059,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "derive_more", "fatality", @@ -7081,7 +7082,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "fatality", "futures", @@ -7102,7 +7103,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7128,7 +7129,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7169,7 +7170,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "always-assert", "fatality", @@ -7190,7 +7191,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7203,7 +7204,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "derive_more", "fatality", @@ -7226,7 +7227,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7240,7 +7241,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "futures", "futures-timer", @@ -7260,7 +7261,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "always-assert", "async-trait", @@ -7284,7 +7285,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "futures", "parity-scale-codec", @@ -7302,7 +7303,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "bitvec", "derive_more", @@ -7331,7 +7332,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "bitvec", "futures", @@ -7351,7 +7352,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "bitvec", "fatality", @@ -7370,7 +7371,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7385,7 +7386,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "async-trait", "futures", @@ -7403,7 +7404,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7418,7 +7419,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "futures", "futures-timer", @@ -7435,7 +7436,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "fatality", "futures", @@ -7454,7 +7455,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "async-trait", "futures", @@ -7471,7 +7472,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "bitvec", "fatality", @@ -7489,7 +7490,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "always-assert", "assert_matches", @@ -7521,7 +7522,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "futures", "polkadot-node-primitives", @@ -7537,7 +7538,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "futures", "memory-lru", @@ -7553,7 +7554,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "async-std", "lazy_static", @@ -7571,7 +7572,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "bs58", "futures", @@ -7590,7 +7591,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "async-trait", "derive_more", @@ -7613,7 +7614,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "bounded-vec", "futures", @@ -7635,7 +7636,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7645,7 +7646,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "async-trait", "futures", @@ -7663,7 +7664,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "async-trait", "derive_more", @@ -7686,7 +7687,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "async-trait", "derive_more", @@ -7719,7 +7720,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "async-trait", "futures", @@ -7742,7 +7743,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "derive_more", "frame-support", @@ -7839,7 +7840,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7854,7 +7855,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "bitvec", "frame-system", @@ -7884,7 +7885,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7916,7 +7917,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "beefy-primitives", "bitvec", @@ -8005,7 +8006,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "beefy-primitives", "bitvec", @@ -8052,7 +8053,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "frame-support", "polkadot-primitives", @@ -8064,7 +8065,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "bs58", "parity-scale-codec", @@ -8076,7 +8077,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "bitflags", "bitvec", @@ -8119,7 +8120,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "async-trait", "beefy-gadget", @@ -8224,7 +8225,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8245,7 +8246,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8255,7 +8256,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8280,7 +8281,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "beefy-primitives", "bitvec", @@ -8341,7 +8342,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "frame-benchmarking", "frame-system", @@ -8972,7 +8973,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9091,7 +9092,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9175,7 +9176,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "frame-support", "polkadot-primitives", @@ -9345,7 +9346,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "log", "sp-core", @@ -9356,7 +9357,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "futures", @@ -9383,7 +9384,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "futures", "futures-timer", @@ -9406,7 +9407,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9422,7 +9423,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9439,7 +9440,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9450,7 +9451,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "array-bytes", "chrono", @@ -9490,7 +9491,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "fnv", "futures", @@ -9518,7 +9519,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "hash-db", "kvdb", @@ -9543,7 +9544,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "futures", @@ -9567,7 +9568,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "futures", @@ -9596,7 +9597,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "fork-tree", @@ -9638,7 +9639,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "futures", "jsonrpsee", @@ -9660,7 +9661,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9673,7 +9674,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "futures", @@ -9697,7 +9698,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9724,7 +9725,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "environmental", "parity-scale-codec", @@ -9740,7 +9741,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "log", "parity-scale-codec", @@ -9755,7 +9756,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9775,7 +9776,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "ahash", "array-bytes", @@ -9816,7 +9817,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "finality-grandpa", "futures", @@ -9837,7 +9838,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "ansi_term", "futures", @@ -9854,7 +9855,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "array-bytes", "async-trait", @@ -9869,7 +9870,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "array-bytes", "async-trait", @@ -9916,7 +9917,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "cid", "futures", @@ -9936,7 +9937,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "bitflags", @@ -9962,7 +9963,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "ahash", "futures", @@ -9980,7 +9981,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "array-bytes", "futures", @@ -10001,7 +10002,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "array-bytes", "fork-tree", @@ -10029,7 +10030,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "array-bytes", "futures", @@ -10048,7 +10049,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "array-bytes", "bytes", @@ -10078,7 +10079,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "futures", "libp2p", @@ -10091,7 +10092,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10100,7 +10101,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "futures", "hash-db", @@ -10130,7 +10131,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "futures", "jsonrpsee", @@ -10153,7 +10154,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "futures", "jsonrpsee", @@ -10166,7 +10167,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "directories", @@ -10236,7 +10237,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "log", "parity-scale-codec", @@ -10250,7 +10251,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10269,7 +10270,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "futures", "libc", @@ -10288,7 +10289,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "chrono", "futures", @@ -10306,7 +10307,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "ansi_term", "atty", @@ -10337,7 +10338,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10348,7 +10349,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "futures", "futures-timer", @@ -10374,7 +10375,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "futures", "log", @@ -10387,7 +10388,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "futures", "futures-timer", @@ -10817,7 +10818,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "enumn", "parity-scale-codec", @@ -10893,7 +10894,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "hash-db", "log", @@ -10911,7 +10912,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "blake2", "proc-macro-crate", @@ -10923,7 +10924,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "scale-info", @@ -10936,7 +10937,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "integer-sqrt", "num-traits", @@ -10951,7 +10952,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "scale-info", @@ -10964,7 +10965,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "parity-scale-codec", @@ -10976,7 +10977,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "sp-api", @@ -10988,7 +10989,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "futures", "log", @@ -11006,7 +11007,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "futures", @@ -11025,7 +11026,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "parity-scale-codec", @@ -11043,7 +11044,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "merlin", @@ -11066,7 +11067,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "scale-info", @@ -11080,7 +11081,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "scale-info", @@ -11093,7 +11094,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "array-bytes", "base58", @@ -11139,7 +11140,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "blake2", "byteorder", @@ -11153,7 +11154,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "proc-macro2", "quote", @@ -11164,7 +11165,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11173,7 +11174,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "proc-macro2", "quote", @@ -11183,7 +11184,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "environmental", "parity-scale-codec", @@ -11194,7 +11195,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "finality-grandpa", "log", @@ -11212,7 +11213,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11226,7 +11227,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "bytes", "futures", @@ -11252,7 +11253,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "lazy_static", "sp-core", @@ -11263,7 +11264,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "futures", @@ -11280,7 +11281,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "thiserror", "zstd", @@ -11289,7 +11290,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "log", "parity-scale-codec", @@ -11304,7 +11305,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "scale-info", @@ -11318,7 +11319,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "sp-api", "sp-core", @@ -11328,7 +11329,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "backtrace", "lazy_static", @@ -11338,7 +11339,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "rustc-hash", "serde", @@ -11348,7 +11349,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "either", "hash256-std-hasher", @@ -11371,7 +11372,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11389,7 +11390,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "Inflector", "proc-macro-crate", @@ -11401,7 +11402,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "log", "parity-scale-codec", @@ -11415,7 +11416,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "serde", "serde_json", @@ -11424,7 +11425,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "scale-info", @@ -11438,7 +11439,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "scale-info", @@ -11449,7 +11450,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "hash-db", "log", @@ -11471,12 +11472,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11489,7 +11490,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "log", "sp-core", @@ -11502,7 +11503,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "futures-timer", @@ -11518,7 +11519,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "sp-std", @@ -11530,7 +11531,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "sp-api", "sp-runtime", @@ -11539,7 +11540,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "async-trait", "log", @@ -11555,7 +11556,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "ahash", "hash-db", @@ -11578,7 +11579,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11595,7 +11596,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11606,7 +11607,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "impl-trait-for-tuples", "log", @@ -11619,7 +11620,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11915,7 +11916,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "platforms", ] @@ -11923,7 +11924,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11944,7 +11945,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "futures-util", "hyper", @@ -11957,7 +11958,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "jsonrpsee", "log", @@ -11978,7 +11979,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "array-bytes", "async-trait", @@ -12004,7 +12005,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12014,7 +12015,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12025,7 +12026,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "ansi_term", "build-helper", @@ -12133,7 +12134,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "frame-support", "polkadot-primitives", @@ -12414,7 +12415,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12425,7 +12426,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12552,7 +12553,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" dependencies = [ "clap", "frame-try-runtime", @@ -13140,7 +13141,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "beefy-primitives", "bitvec", @@ -13230,7 +13231,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "frame-support", "polkadot-primitives", @@ -13513,7 +13514,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13527,7 +13528,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "frame-support", "frame-system", @@ -13547,7 +13548,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "frame-benchmarking", "frame-support", @@ -13565,7 +13566,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" dependencies = [ "Inflector", "proc-macro2", From 788e3554385eaf37b8d2ff67fdd88853cc4d9ead Mon Sep 17 00:00:00 2001 From: Andronik Date: Tue, 4 Oct 2022 11:55:13 +0200 Subject: [PATCH 06/40] pass reserved flags for eve after -- --- zombienet_tests/0002-pov_recovery.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index 9b3ea378cdb..500145712e9 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -41,4 +41,4 @@ cumulus_based = true validator = false image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--reserved-only", "--reserved-nodes {{'dave'|zombie('multiAddress')}}", "--use-null-consensus", "--disable-block-announcements"] + args = ["--use-null-consensus", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'dave'|zombie('multiAddress')}}"] From 6090379e9d5d06c946baa2ce5ab97b2dd399250d Mon Sep 17 00:00:00 2001 From: Andronik Date: Wed, 5 Oct 2022 16:06:40 +0200 Subject: [PATCH 07/40] Revert "REVERTME: cargo update -p sp-io and hope for the best" This reverts commit 0d66b70e5ccedc7a35bcf1b30a070e68cd6a8ccc. --- Cargo.lock | 505 ++++++++++++++++++++++++++--------------------------- 1 file changed, 252 insertions(+), 253 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a5ef5aca7f3..03ddcf38d85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,17 +526,16 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "beefy-primitives", "sp-api", - "sp-runtime", ] [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -2748,7 +2747,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", ] @@ -2765,7 +2764,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -2788,7 +2787,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "Inflector", "array-bytes", @@ -2839,7 +2838,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2850,7 +2849,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2866,7 +2865,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -2895,7 +2894,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "bitflags", "frame-metadata", @@ -2927,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "Inflector", "cfg-expr", @@ -2941,7 +2940,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2953,7 +2952,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro2", "quote", @@ -2963,7 +2962,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "log", @@ -2981,7 +2980,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -2996,7 +2995,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "sp-api", @@ -3005,7 +3004,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "parity-scale-codec", @@ -3884,7 +3883,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-primitives", "bitvec", @@ -3982,7 +3981,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "polkadot-primitives", @@ -5377,7 +5376,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5398,7 +5397,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -5415,7 +5414,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5429,7 +5428,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -5445,7 +5444,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -5461,7 +5460,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -5476,7 +5475,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5500,7 +5499,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5520,7 +5519,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5535,7 +5534,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "beefy-primitives", "frame-support", @@ -5551,7 +5550,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5574,7 +5573,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5592,7 +5591,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5636,7 +5635,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5653,7 +5652,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "bitflags", "frame-benchmarking", @@ -5681,7 +5680,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "bitflags", "parity-scale-codec", @@ -5692,7 +5691,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro2", "quote", @@ -5702,7 +5701,7 @@ dependencies = [ [[package]] name = "pallet-contracts-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "pallet-contracts-primitives", "parity-scale-codec", @@ -5715,7 +5714,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5732,7 +5731,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5748,7 +5747,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5772,7 +5771,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5785,7 +5784,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5803,7 +5802,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5824,7 +5823,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5839,7 +5838,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5862,7 +5861,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5878,7 +5877,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5898,7 +5897,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5915,7 +5914,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5932,7 +5931,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5950,7 +5949,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5965,7 +5964,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5980,7 +5979,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -5997,7 +5996,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6017,7 +6016,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "sp-api", @@ -6027,7 +6026,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -6044,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6067,7 +6066,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6083,7 +6082,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6098,7 +6097,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -6112,7 +6111,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6130,7 +6129,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6145,7 +6144,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6163,7 +6162,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6179,7 +6178,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -6200,7 +6199,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6216,7 +6215,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -6230,7 +6229,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6253,7 +6252,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6264,7 +6263,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "sp-arithmetic", @@ -6273,7 +6272,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -6302,7 +6301,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6320,7 +6319,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6339,7 +6338,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-support", "frame-system", @@ -6355,7 +6354,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6370,7 +6369,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6381,7 +6380,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6398,7 +6397,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6413,7 +6412,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6429,7 +6428,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6444,7 +6443,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6459,7 +6458,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "frame-system", @@ -6477,7 +6476,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-benchmarking", "frame-support", @@ -7030,7 +7029,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7045,7 +7044,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7059,7 +7058,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "derive_more", "fatality", @@ -7082,7 +7081,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "fatality", "futures", @@ -7103,7 +7102,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7129,7 +7128,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7170,7 +7169,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "always-assert", "fatality", @@ -7191,7 +7190,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7204,7 +7203,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "derive_more", "fatality", @@ -7227,7 +7226,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7241,7 +7240,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "futures-timer", @@ -7261,7 +7260,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "always-assert", "async-trait", @@ -7285,7 +7284,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "parity-scale-codec", @@ -7303,7 +7302,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bitvec", "derive_more", @@ -7332,7 +7331,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bitvec", "futures", @@ -7352,7 +7351,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bitvec", "fatality", @@ -7371,7 +7370,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7386,7 +7385,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "futures", @@ -7404,7 +7403,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7419,7 +7418,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "futures-timer", @@ -7436,7 +7435,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "fatality", "futures", @@ -7455,7 +7454,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "futures", @@ -7472,7 +7471,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bitvec", "fatality", @@ -7490,7 +7489,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "always-assert", "assert_matches", @@ -7522,7 +7521,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "polkadot-node-primitives", @@ -7538,7 +7537,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "futures", "memory-lru", @@ -7554,7 +7553,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-std", "lazy_static", @@ -7572,7 +7571,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bs58", "futures", @@ -7591,7 +7590,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "derive_more", @@ -7614,7 +7613,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bounded-vec", "futures", @@ -7636,7 +7635,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7646,7 +7645,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "futures", @@ -7664,7 +7663,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "derive_more", @@ -7687,7 +7686,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "derive_more", @@ -7720,7 +7719,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "futures", @@ -7743,7 +7742,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "derive_more", "frame-support", @@ -7840,7 +7839,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7855,7 +7854,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bitvec", "frame-system", @@ -7885,7 +7884,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7917,7 +7916,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-primitives", "bitvec", @@ -8006,7 +8005,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-primitives", "bitvec", @@ -8053,7 +8052,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "polkadot-primitives", @@ -8065,7 +8064,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bs58", "parity-scale-codec", @@ -8077,7 +8076,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "bitflags", "bitvec", @@ -8120,7 +8119,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "async-trait", "beefy-gadget", @@ -8225,7 +8224,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8246,7 +8245,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8256,7 +8255,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8281,7 +8280,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-primitives", "bitvec", @@ -8342,7 +8341,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-benchmarking", "frame-system", @@ -8973,7 +8972,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9092,7 +9091,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9176,7 +9175,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "polkadot-primitives", @@ -9346,7 +9345,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "sp-core", @@ -9357,7 +9356,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures", @@ -9384,7 +9383,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "futures-timer", @@ -9407,7 +9406,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9423,7 +9422,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9440,7 +9439,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9451,7 +9450,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "chrono", @@ -9491,7 +9490,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "fnv", "futures", @@ -9519,7 +9518,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "hash-db", "kvdb", @@ -9544,7 +9543,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures", @@ -9568,7 +9567,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures", @@ -9597,7 +9596,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "fork-tree", @@ -9639,7 +9638,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "jsonrpsee", @@ -9661,7 +9660,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9674,7 +9673,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures", @@ -9698,7 +9697,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9725,7 +9724,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "environmental", "parity-scale-codec", @@ -9741,7 +9740,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "parity-scale-codec", @@ -9756,7 +9755,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9776,7 +9775,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ahash", "array-bytes", @@ -9817,7 +9816,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "finality-grandpa", "futures", @@ -9838,7 +9837,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ansi_term", "futures", @@ -9855,7 +9854,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "async-trait", @@ -9870,7 +9869,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "async-trait", @@ -9917,7 +9916,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "cid", "futures", @@ -9937,7 +9936,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "bitflags", @@ -9963,7 +9962,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ahash", "futures", @@ -9981,7 +9980,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "futures", @@ -10002,7 +10001,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "fork-tree", @@ -10030,7 +10029,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "futures", @@ -10049,7 +10048,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "bytes", @@ -10079,7 +10078,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "libp2p", @@ -10092,7 +10091,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10101,7 +10100,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "hash-db", @@ -10131,7 +10130,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "jsonrpsee", @@ -10154,7 +10153,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "jsonrpsee", @@ -10167,7 +10166,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "directories", @@ -10237,7 +10236,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "parity-scale-codec", @@ -10251,7 +10250,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10270,7 +10269,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "libc", @@ -10289,7 +10288,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "chrono", "futures", @@ -10307,7 +10306,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ansi_term", "atty", @@ -10338,7 +10337,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10349,7 +10348,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "futures-timer", @@ -10375,7 +10374,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "log", @@ -10388,7 +10387,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "futures-timer", @@ -10818,7 +10817,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "enumn", "parity-scale-codec", @@ -10894,7 +10893,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "hash-db", "log", @@ -10912,7 +10911,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "blake2", "proc-macro-crate", @@ -10924,7 +10923,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -10937,7 +10936,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "integer-sqrt", "num-traits", @@ -10952,7 +10951,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -10965,7 +10964,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "parity-scale-codec", @@ -10977,7 +10976,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "sp-api", @@ -10989,7 +10988,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "log", @@ -11007,7 +11006,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures", @@ -11026,7 +11025,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "parity-scale-codec", @@ -11044,7 +11043,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "merlin", @@ -11067,7 +11066,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -11081,7 +11080,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -11094,7 +11093,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "base58", @@ -11140,7 +11139,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "blake2", "byteorder", @@ -11154,7 +11153,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro2", "quote", @@ -11165,7 +11164,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11174,7 +11173,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro2", "quote", @@ -11184,7 +11183,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "environmental", "parity-scale-codec", @@ -11195,7 +11194,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "finality-grandpa", "log", @@ -11213,7 +11212,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11227,7 +11226,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "bytes", "futures", @@ -11253,7 +11252,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "lazy_static", "sp-core", @@ -11264,7 +11263,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures", @@ -11281,7 +11280,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "thiserror", "zstd", @@ -11290,7 +11289,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "parity-scale-codec", @@ -11305,7 +11304,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -11319,7 +11318,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "sp-api", "sp-core", @@ -11329,7 +11328,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "backtrace", "lazy_static", @@ -11339,7 +11338,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "rustc-hash", "serde", @@ -11349,7 +11348,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "either", "hash256-std-hasher", @@ -11372,7 +11371,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11390,7 +11389,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "Inflector", "proc-macro-crate", @@ -11402,7 +11401,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "parity-scale-codec", @@ -11416,7 +11415,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "serde", "serde_json", @@ -11425,7 +11424,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -11439,7 +11438,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "scale-info", @@ -11450,7 +11449,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "hash-db", "log", @@ -11472,12 +11471,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11490,7 +11489,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "log", "sp-core", @@ -11503,7 +11502,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "futures-timer", @@ -11519,7 +11518,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "sp-std", @@ -11531,7 +11530,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "sp-api", "sp-runtime", @@ -11540,7 +11539,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "async-trait", "log", @@ -11556,7 +11555,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ahash", "hash-db", @@ -11579,7 +11578,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11596,7 +11595,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11607,7 +11606,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "impl-trait-for-tuples", "log", @@ -11620,7 +11619,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11916,7 +11915,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "platforms", ] @@ -11924,7 +11923,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11945,7 +11944,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures-util", "hyper", @@ -11958,7 +11957,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "jsonrpsee", "log", @@ -11979,7 +11978,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "array-bytes", "async-trait", @@ -12005,7 +12004,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12015,7 +12014,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12026,7 +12025,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "ansi_term", "build-helper", @@ -12134,7 +12133,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "polkadot-primitives", @@ -12415,7 +12414,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12426,7 +12425,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12553,7 +12552,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e77cbe39c4d1bfd978bb03c686fc9f60d86a3d06" +source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" dependencies = [ "clap", "frame-try-runtime", @@ -13141,7 +13140,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "beefy-primitives", "bitvec", @@ -13231,7 +13230,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "polkadot-primitives", @@ -13514,7 +13513,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13528,7 +13527,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-support", "frame-system", @@ -13548,7 +13547,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "frame-benchmarking", "frame-support", @@ -13566,7 +13565,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#ac548564e255f3791a186e430874054fea5c283b" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" dependencies = [ "Inflector", "proc-macro2", From 2d8c568397c9d160a1a5428931d208c8340c6bb2 Mon Sep 17 00:00:00 2001 From: Andronik Date: Wed, 5 Oct 2022 16:06:41 +0200 Subject: [PATCH 08/40] Revert "REVERTME: cargo update -p sp-io" This reverts commit f8d16c375afd41b8e0c84b59fe62019b86ba95b9. --- Cargo.lock | 581 +++++++++++++++++++++++------------------------------ 1 file changed, 253 insertions(+), 328 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 03ddcf38d85..17b6139822e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "beefy-primitives", "sp-api", @@ -535,7 +535,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "scale-info", @@ -2747,7 +2747,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", ] @@ -2764,7 +2764,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "frame-system", @@ -2787,7 +2787,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "Inflector", "array-bytes", @@ -2838,7 +2838,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2849,7 +2849,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2865,7 +2865,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "frame-system", @@ -2894,7 +2894,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "bitflags", "frame-metadata", @@ -2926,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "Inflector", "cfg-expr", @@ -2940,7 +2940,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2952,7 +2952,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "proc-macro2", "quote", @@ -2962,7 +2962,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "log", @@ -2980,7 +2980,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -2995,7 +2995,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "sp-api", @@ -3004,7 +3004,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "parity-scale-codec", @@ -3883,7 +3883,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "beefy-primitives", "bitvec", @@ -3906,7 +3906,6 @@ dependencies = [ "pallet-bounties", "pallet-child-bounties", "pallet-collective", - "pallet-conviction-voting", "pallet-democracy", "pallet-election-provider-multi-phase", "pallet-election-provider-support-benchmarking", @@ -3926,9 +3925,7 @@ dependencies = [ "pallet-offences-benchmarking", "pallet-preimage", "pallet-proxy", - "pallet-ranked-collective", "pallet-recovery", - "pallet-referenda", "pallet-scheduler", "pallet-session", "pallet-session-benchmarking", @@ -3942,7 +3939,6 @@ dependencies = [ "pallet-treasury", "pallet-utility", "pallet-vesting", - "pallet-whitelist", "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", @@ -3981,7 +3977,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "frame-support", "polkadot-primitives", @@ -5319,9 +5315,8 @@ checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" [[package]] name = "orchestra" -version = "0.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0aab54694ddaa8a9b703724c6ef04272b2d27bc32d2c855aae5cdd1857216b43" +version = "0.0.1" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "async-trait", "dyn-clonable", @@ -5336,9 +5331,8 @@ dependencies = [ [[package]] name = "orchestra-proc-macro" -version = "0.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a702b2f6bf592b3eb06c00d80d05afaf7a8eff6b41bb361e397d799acc21b45a" +version = "0.0.1" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "expander 0.0.6", "itertools", @@ -5376,7 +5370,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5397,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "frame-system", @@ -5414,7 +5408,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5428,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "frame-system", @@ -5444,7 +5438,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "frame-system", @@ -5460,7 +5454,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "frame-system", @@ -5475,7 +5469,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5499,7 +5493,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5519,7 +5513,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5534,7 +5528,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "beefy-primitives", "frame-support", @@ -5550,7 +5544,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5573,7 +5567,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5591,7 +5585,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5635,7 +5629,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5652,7 +5646,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "bitflags", "frame-benchmarking", @@ -5680,7 +5674,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "bitflags", "parity-scale-codec", @@ -5691,7 +5685,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "proc-macro2", "quote", @@ -5701,7 +5695,7 @@ dependencies = [ [[package]] name = "pallet-contracts-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "pallet-contracts-primitives", "parity-scale-codec", @@ -5711,27 +5705,10 @@ dependencies = [ "sp-std", ] -[[package]] -name = "pallet-conviction-voting" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" -dependencies = [ - "assert_matches", - "frame-benchmarking", - "frame-support", - "frame-system", - "parity-scale-codec", - "scale-info", - "serde", - "sp-io", - "sp-runtime", - "sp-std", -] - [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5747,7 +5724,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5771,7 +5748,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5784,7 +5761,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5802,7 +5779,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5823,7 +5800,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5838,7 +5815,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5861,7 +5838,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5877,7 +5854,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5897,7 +5874,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5914,7 +5891,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5931,7 +5908,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5949,7 +5926,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5964,7 +5941,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -5979,7 +5956,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "frame-system", @@ -5996,7 +5973,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6016,7 +5993,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "sp-api", @@ -6026,7 +6003,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "frame-system", @@ -6043,7 +6020,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6066,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -6082,7 +6059,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -6097,7 +6074,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "frame-system", @@ -6108,52 +6085,16 @@ dependencies = [ "sp-std", ] -[[package]] -name = "pallet-ranked-collective" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" -dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "log", - "parity-scale-codec", - "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", -] - [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" -dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "parity-scale-codec", - "scale-info", - "sp-io", - "sp-runtime", - "sp-std", -] - -[[package]] -name = "pallet-referenda" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ - "assert_matches", "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "serde", - "sp-arithmetic", "sp-io", "sp-runtime", "sp-std", @@ -6162,7 +6103,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -6178,7 +6119,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "frame-system", @@ -6199,7 +6140,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -6215,7 +6156,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "frame-system", @@ -6229,7 +6170,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6252,7 +6193,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6263,7 +6204,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "log", "sp-arithmetic", @@ -6272,7 +6213,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "frame-system", @@ -6301,7 +6242,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -6319,7 +6260,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -6338,7 +6279,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-support", "frame-system", @@ -6354,7 +6295,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6369,7 +6310,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6380,7 +6321,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -6397,7 +6338,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -6412,7 +6353,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -6428,7 +6369,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-benchmarking", "frame-support", @@ -6440,25 +6381,10 @@ dependencies = [ "sp-std", ] -[[package]] -name = "pallet-whitelist" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" -dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "parity-scale-codec", - "scale-info", - "sp-api", - "sp-runtime", - "sp-std", -] - [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "frame-support", "frame-system", @@ -6476,7 +6402,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "frame-benchmarking", "frame-support", @@ -7029,7 +6955,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7044,7 +6970,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7058,7 +6984,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "derive_more", "fatality", @@ -7081,7 +7007,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "fatality", "futures", @@ -7102,7 +7028,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7128,7 +7054,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7169,7 +7095,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "always-assert", "fatality", @@ -7190,7 +7116,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7203,7 +7129,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "derive_more", "fatality", @@ -7226,7 +7152,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7240,7 +7166,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "futures", "futures-timer", @@ -7260,7 +7186,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "always-assert", "async-trait", @@ -7284,7 +7210,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "futures", "parity-scale-codec", @@ -7302,7 +7228,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "bitvec", "derive_more", @@ -7331,7 +7257,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "bitvec", "futures", @@ -7351,7 +7277,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "bitvec", "fatality", @@ -7370,7 +7296,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7385,7 +7311,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "async-trait", "futures", @@ -7403,7 +7329,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7418,7 +7344,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "futures", "futures-timer", @@ -7435,7 +7361,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "fatality", "futures", @@ -7454,7 +7380,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "async-trait", "futures", @@ -7471,7 +7397,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "bitvec", "fatality", @@ -7489,7 +7415,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "always-assert", "assert_matches", @@ -7521,7 +7447,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "futures", "polkadot-node-primitives", @@ -7537,7 +7463,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "futures", "memory-lru", @@ -7553,7 +7479,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "async-std", "lazy_static", @@ -7571,7 +7497,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "bs58", "futures", @@ -7590,7 +7516,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "async-trait", "derive_more", @@ -7613,7 +7539,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "bounded-vec", "futures", @@ -7635,7 +7561,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7645,7 +7571,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "async-trait", "futures", @@ -7663,7 +7589,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "async-trait", "derive_more", @@ -7686,7 +7612,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "async-trait", "derive_more", @@ -7719,7 +7645,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "async-trait", "futures", @@ -7742,7 +7668,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "derive_more", "frame-support", @@ -7839,7 +7765,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7854,7 +7780,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "bitvec", "frame-system", @@ -7884,7 +7810,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7916,7 +7842,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "beefy-primitives", "bitvec", @@ -8005,7 +7931,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "beefy-primitives", "bitvec", @@ -8052,7 +7978,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "frame-support", "polkadot-primitives", @@ -8064,7 +7990,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "bs58", "parity-scale-codec", @@ -8076,7 +8002,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "bitflags", "bitvec", @@ -8119,7 +8045,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "async-trait", "beefy-gadget", @@ -8224,7 +8150,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8245,7 +8171,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8255,7 +8181,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8280,7 +8206,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "beefy-primitives", "bitvec", @@ -8341,7 +8267,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "frame-benchmarking", "frame-system", @@ -8486,8 +8412,7 @@ dependencies = [ [[package]] name = "prioritized-metered-channel" version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "382698e48a268c832d0b181ed438374a6bb708a82a8ca273bb0f61c74cf209c4" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "coarsetime", "crossbeam-queue", @@ -8972,7 +8897,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9091,7 +9016,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9175,7 +9100,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "frame-support", "polkadot-primitives", @@ -9345,7 +9270,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "log", "sp-core", @@ -9356,7 +9281,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "futures", @@ -9383,7 +9308,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "futures", "futures-timer", @@ -9406,7 +9331,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9422,7 +9347,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9439,7 +9364,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9450,7 +9375,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "array-bytes", "chrono", @@ -9490,7 +9415,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "fnv", "futures", @@ -9518,7 +9443,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "hash-db", "kvdb", @@ -9543,7 +9468,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "futures", @@ -9567,7 +9492,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "futures", @@ -9596,7 +9521,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "fork-tree", @@ -9638,7 +9563,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "futures", "jsonrpsee", @@ -9660,7 +9585,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9673,7 +9598,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "futures", @@ -9697,7 +9622,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9724,7 +9649,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "environmental", "parity-scale-codec", @@ -9740,7 +9665,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "log", "parity-scale-codec", @@ -9755,7 +9680,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9775,7 +9700,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "ahash", "array-bytes", @@ -9816,7 +9741,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "finality-grandpa", "futures", @@ -9837,7 +9762,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "ansi_term", "futures", @@ -9854,7 +9779,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "array-bytes", "async-trait", @@ -9869,7 +9794,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "array-bytes", "async-trait", @@ -9916,7 +9841,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "cid", "futures", @@ -9936,7 +9861,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "bitflags", @@ -9962,7 +9887,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "ahash", "futures", @@ -9980,7 +9905,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "array-bytes", "futures", @@ -10001,7 +9926,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "array-bytes", "fork-tree", @@ -10029,7 +9954,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "array-bytes", "futures", @@ -10048,7 +9973,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "array-bytes", "bytes", @@ -10078,7 +10003,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "futures", "libp2p", @@ -10091,7 +10016,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10100,7 +10025,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "futures", "hash-db", @@ -10130,7 +10055,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "futures", "jsonrpsee", @@ -10153,7 +10078,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "futures", "jsonrpsee", @@ -10166,7 +10091,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "directories", @@ -10236,7 +10161,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "log", "parity-scale-codec", @@ -10250,7 +10175,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10269,7 +10194,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "futures", "libc", @@ -10288,7 +10213,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "chrono", "futures", @@ -10306,7 +10231,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "ansi_term", "atty", @@ -10337,7 +10262,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10348,7 +10273,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "futures", "futures-timer", @@ -10374,7 +10299,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "futures", "log", @@ -10387,7 +10312,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "futures", "futures-timer", @@ -10817,7 +10742,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "enumn", "parity-scale-codec", @@ -10893,7 +10818,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "hash-db", "log", @@ -10911,7 +10836,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "blake2", "proc-macro-crate", @@ -10923,7 +10848,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "scale-info", @@ -10936,7 +10861,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "integer-sqrt", "num-traits", @@ -10951,7 +10876,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "scale-info", @@ -10964,7 +10889,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "parity-scale-codec", @@ -10976,7 +10901,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "sp-api", @@ -10988,7 +10913,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "futures", "log", @@ -11006,7 +10931,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "futures", @@ -11025,7 +10950,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "parity-scale-codec", @@ -11043,7 +10968,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "merlin", @@ -11066,7 +10991,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "scale-info", @@ -11080,7 +11005,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "scale-info", @@ -11093,7 +11018,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "array-bytes", "base58", @@ -11139,7 +11064,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "blake2", "byteorder", @@ -11153,7 +11078,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "proc-macro2", "quote", @@ -11164,7 +11089,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11173,7 +11098,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "proc-macro2", "quote", @@ -11183,7 +11108,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "environmental", "parity-scale-codec", @@ -11194,7 +11119,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "finality-grandpa", "log", @@ -11212,7 +11137,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11226,7 +11151,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "bytes", "futures", @@ -11252,7 +11177,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "lazy_static", "sp-core", @@ -11263,7 +11188,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "futures", @@ -11280,7 +11205,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "thiserror", "zstd", @@ -11289,7 +11214,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "log", "parity-scale-codec", @@ -11304,7 +11229,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "scale-info", @@ -11318,7 +11243,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "sp-api", "sp-core", @@ -11328,7 +11253,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "backtrace", "lazy_static", @@ -11338,7 +11263,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "rustc-hash", "serde", @@ -11348,7 +11273,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "either", "hash256-std-hasher", @@ -11371,7 +11296,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11389,7 +11314,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "Inflector", "proc-macro-crate", @@ -11401,7 +11326,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "log", "parity-scale-codec", @@ -11415,7 +11340,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "serde", "serde_json", @@ -11424,7 +11349,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "scale-info", @@ -11438,7 +11363,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "scale-info", @@ -11449,7 +11374,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "hash-db", "log", @@ -11471,12 +11396,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11489,7 +11414,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "log", "sp-core", @@ -11502,7 +11427,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "futures-timer", @@ -11518,7 +11443,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "sp-std", @@ -11530,7 +11455,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "sp-api", "sp-runtime", @@ -11539,7 +11464,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "async-trait", "log", @@ -11555,7 +11480,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "ahash", "hash-db", @@ -11578,7 +11503,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11595,7 +11520,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11606,7 +11531,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "impl-trait-for-tuples", "log", @@ -11619,7 +11544,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11915,7 +11840,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "platforms", ] @@ -11923,7 +11848,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11944,7 +11869,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "futures-util", "hyper", @@ -11957,7 +11882,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "jsonrpsee", "log", @@ -11978,7 +11903,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "array-bytes", "async-trait", @@ -12004,7 +11929,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12014,7 +11939,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12025,7 +11950,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "ansi_term", "build-helper", @@ -12133,7 +12058,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "frame-support", "polkadot-primitives", @@ -12414,7 +12339,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12425,7 +12350,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12552,7 +12477,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#6d7f76b5de00d4d4fdc55596abe86beb7d55f0b3" +source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" dependencies = [ "clap", "frame-try-runtime", @@ -13140,7 +13065,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "beefy-primitives", "bitvec", @@ -13230,7 +13155,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "frame-support", "polkadot-primitives", @@ -13513,7 +13438,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13527,7 +13452,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "frame-support", "frame-system", @@ -13547,7 +13472,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "frame-benchmarking", "frame-support", @@ -13565,7 +13490,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#66c542ea305ddadc9b244436ae71a0c6c856228e" +source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" dependencies = [ "Inflector", "proc-macro2", From d48e1e6aa2134591b285e284077a063356d44eed Mon Sep 17 00:00:00 2001 From: Andronik Date: Wed, 5 Oct 2022 17:54:50 +0200 Subject: [PATCH 09/40] REVERTME: cargo update -p sp-io --- Cargo.lock | 505 +++++++++++++++++++++++++++-------------------------- 1 file changed, 253 insertions(+), 252 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 675a857bb7c..58357758ace 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "scale-info", @@ -2748,7 +2748,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", ] @@ -2765,7 +2765,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "frame-system", @@ -2788,7 +2788,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "Inflector", "array-bytes", @@ -2839,7 +2839,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2850,7 +2850,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2866,7 +2866,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "frame-system", @@ -2895,7 +2895,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "bitflags", "frame-metadata", @@ -2927,7 +2927,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "Inflector", "cfg-expr", @@ -2941,7 +2941,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2953,7 +2953,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "proc-macro2", "quote", @@ -2963,7 +2963,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "log", @@ -2981,7 +2981,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -2996,7 +2996,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "sp-api", @@ -3005,7 +3005,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "parity-scale-codec", @@ -3884,7 +3884,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "beefy-primitives", "bitvec", @@ -3982,7 +3982,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "frame-support", "polkadot-primitives", @@ -5377,7 +5377,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5398,7 +5398,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "frame-system", @@ -5415,7 +5415,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5429,7 +5429,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "frame-system", @@ -5445,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "frame-system", @@ -5461,7 +5461,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "frame-system", @@ -5476,7 +5476,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5500,7 +5500,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5520,7 +5520,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5535,7 +5535,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "beefy-primitives", "frame-support", @@ -5551,7 +5551,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5574,7 +5574,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5592,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5636,7 +5636,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5653,7 +5653,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "bitflags", "frame-benchmarking", @@ -5681,7 +5681,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "bitflags", "parity-scale-codec", @@ -5693,7 +5693,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "proc-macro2", "quote", @@ -5703,7 +5703,7 @@ dependencies = [ [[package]] name = "pallet-contracts-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "pallet-contracts-primitives", "parity-scale-codec", @@ -5716,7 +5716,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5733,7 +5733,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5749,7 +5749,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5773,7 +5773,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5786,7 +5786,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5804,7 +5804,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5825,7 +5825,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5840,7 +5840,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5863,7 +5863,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5879,7 +5879,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5899,7 +5899,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5916,7 +5916,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5933,7 +5933,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5951,7 +5951,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5966,7 +5966,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -5981,7 +5981,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "frame-system", @@ -5998,7 +5998,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6018,7 +6018,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "sp-api", @@ -6028,7 +6028,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "frame-system", @@ -6045,7 +6045,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6068,7 +6068,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -6084,7 +6084,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -6099,7 +6099,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "frame-system", @@ -6113,7 +6113,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -6131,7 +6131,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -6146,7 +6146,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6164,7 +6164,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -6180,7 +6180,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "frame-system", @@ -6201,7 +6201,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -6217,7 +6217,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "frame-system", @@ -6231,7 +6231,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6254,7 +6254,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6265,7 +6265,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "log", "sp-arithmetic", @@ -6274,7 +6274,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "frame-system", @@ -6303,7 +6303,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -6321,7 +6321,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -6340,7 +6340,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-support", "frame-system", @@ -6356,7 +6356,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6371,7 +6371,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6382,7 +6382,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -6399,7 +6399,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -6414,7 +6414,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -6430,7 +6430,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -6445,7 +6445,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-benchmarking", "frame-support", @@ -6460,7 +6460,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "frame-support", "frame-system", @@ -6478,7 +6478,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -7031,7 +7031,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7046,7 +7046,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7060,7 +7060,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "derive_more", "fatality", @@ -7083,7 +7083,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "fatality", "futures", @@ -7104,7 +7104,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7130,7 +7130,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7171,7 +7171,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "always-assert", "bitvec", @@ -7193,7 +7193,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7206,7 +7206,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "derive_more", "fatality", @@ -7231,7 +7231,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7245,7 +7245,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "futures", "futures-timer", @@ -7265,7 +7265,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "always-assert", "async-trait", @@ -7289,7 +7289,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "futures", "parity-scale-codec", @@ -7307,7 +7307,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "bitvec", "derive_more", @@ -7336,7 +7336,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "bitvec", "futures", @@ -7356,7 +7356,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "bitvec", "fatality", @@ -7375,7 +7375,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7390,7 +7390,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "async-trait", "futures", @@ -7408,7 +7408,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7423,7 +7423,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "futures", "futures-timer", @@ -7440,7 +7440,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "fatality", "futures", @@ -7459,7 +7459,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "async-trait", "futures", @@ -7476,7 +7476,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "bitvec", "fatality", @@ -7494,7 +7494,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "always-assert", "assert_matches", @@ -7526,7 +7526,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "futures", "polkadot-node-primitives", @@ -7542,7 +7542,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "futures", "memory-lru", @@ -7558,7 +7558,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "async-std", "lazy_static", @@ -7576,7 +7576,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "bs58", "futures", @@ -7595,7 +7595,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "async-trait", "derive_more", @@ -7618,7 +7618,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "bounded-vec", "futures", @@ -7640,7 +7640,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7650,7 +7650,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "async-trait", "futures", @@ -7668,7 +7668,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "async-trait", "derive_more", @@ -7691,7 +7691,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "async-trait", "derive_more", @@ -7724,7 +7724,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "async-trait", "futures", @@ -7747,7 +7747,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "derive_more", "frame-support", @@ -7844,7 +7844,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7859,7 +7859,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "bitvec", "frame-system", @@ -7889,7 +7889,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7921,7 +7921,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "beefy-primitives", "bitvec", @@ -8010,7 +8010,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "beefy-primitives", "bitvec", @@ -8057,7 +8057,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "frame-support", "polkadot-primitives", @@ -8069,7 +8069,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "bs58", "parity-scale-codec", @@ -8081,7 +8081,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "bitflags", "bitvec", @@ -8124,7 +8124,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "async-trait", "beefy-gadget", @@ -8229,7 +8229,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8250,7 +8250,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8260,7 +8260,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8285,7 +8285,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "beefy-primitives", "bitvec", @@ -8346,7 +8346,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "frame-benchmarking", "frame-system", @@ -8977,7 +8977,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9096,7 +9096,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9180,7 +9180,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "frame-support", "polkadot-primitives", @@ -9350,7 +9350,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "log", "sp-core", @@ -9361,7 +9361,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "futures", @@ -9388,7 +9388,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "futures", "futures-timer", @@ -9411,7 +9411,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9427,7 +9427,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9444,7 +9444,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9455,7 +9455,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "array-bytes", "chrono", @@ -9495,7 +9495,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "fnv", "futures", @@ -9523,7 +9523,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "hash-db", "kvdb", @@ -9548,7 +9548,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "futures", @@ -9572,7 +9572,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "futures", @@ -9601,7 +9601,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "fork-tree", @@ -9643,7 +9643,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "futures", "jsonrpsee", @@ -9665,7 +9665,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9678,7 +9678,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "futures", @@ -9702,7 +9702,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9729,7 +9729,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "environmental", "parity-scale-codec", @@ -9745,7 +9745,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "log", "parity-scale-codec", @@ -9760,7 +9760,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9780,7 +9780,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "ahash", "array-bytes", @@ -9821,7 +9821,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "finality-grandpa", "futures", @@ -9842,7 +9842,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "ansi_term", "futures", @@ -9859,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "array-bytes", "async-trait", @@ -9874,7 +9874,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "array-bytes", "async-trait", @@ -9921,7 +9921,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "cid", "futures", @@ -9941,7 +9941,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "bitflags", @@ -9967,7 +9967,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "ahash", "futures", @@ -9985,7 +9985,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "array-bytes", "futures", @@ -10006,7 +10006,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "array-bytes", "fork-tree", @@ -10034,7 +10034,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "array-bytes", "futures", @@ -10053,7 +10053,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "array-bytes", "bytes", @@ -10083,7 +10083,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "futures", "libp2p", @@ -10096,7 +10096,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10105,7 +10105,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "futures", "hash-db", @@ -10135,7 +10135,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "futures", "jsonrpsee", @@ -10158,7 +10158,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "futures", "jsonrpsee", @@ -10171,7 +10171,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "directories", @@ -10241,7 +10241,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "log", "parity-scale-codec", @@ -10255,7 +10255,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10274,7 +10274,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "futures", "libc", @@ -10293,7 +10293,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "chrono", "futures", @@ -10311,7 +10311,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "ansi_term", "atty", @@ -10342,7 +10342,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10353,7 +10353,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "futures", "futures-timer", @@ -10379,7 +10379,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "futures", "log", @@ -10392,7 +10392,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "futures", "futures-timer", @@ -10822,7 +10822,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "enumn", "parity-scale-codec", @@ -10898,7 +10898,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "hash-db", "log", @@ -10916,7 +10916,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "blake2", "proc-macro-crate", @@ -10928,7 +10928,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "scale-info", @@ -10941,7 +10941,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "integer-sqrt", "num-traits", @@ -10956,7 +10956,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "scale-info", @@ -10969,7 +10969,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "parity-scale-codec", @@ -10981,7 +10981,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "sp-api", @@ -10993,7 +10993,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "futures", "log", @@ -11011,7 +11011,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "futures", @@ -11030,7 +11030,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "parity-scale-codec", @@ -11048,7 +11048,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "merlin", @@ -11071,7 +11071,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "scale-info", @@ -11085,7 +11085,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "scale-info", @@ -11098,7 +11098,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "array-bytes", "base58", @@ -11144,7 +11144,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "blake2", "byteorder", @@ -11158,7 +11158,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "proc-macro2", "quote", @@ -11169,7 +11169,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11178,7 +11178,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "proc-macro2", "quote", @@ -11188,7 +11188,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "environmental", "parity-scale-codec", @@ -11199,7 +11199,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "finality-grandpa", "log", @@ -11217,7 +11217,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11231,7 +11231,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "bytes", "futures", @@ -11257,7 +11257,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "lazy_static", "sp-core", @@ -11268,7 +11268,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "futures", @@ -11285,7 +11285,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "thiserror", "zstd", @@ -11294,10 +11294,11 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "log", "parity-scale-codec", + "scale-info", "serde", "sp-api", "sp-core", @@ -11309,7 +11310,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "scale-info", @@ -11323,7 +11324,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "sp-api", "sp-core", @@ -11333,7 +11334,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "backtrace", "lazy_static", @@ -11343,7 +11344,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "rustc-hash", "serde", @@ -11353,7 +11354,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "either", "hash256-std-hasher", @@ -11376,7 +11377,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11394,7 +11395,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "Inflector", "proc-macro-crate", @@ -11406,7 +11407,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "log", "parity-scale-codec", @@ -11420,7 +11421,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "serde", "serde_json", @@ -11429,7 +11430,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "scale-info", @@ -11443,7 +11444,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "scale-info", @@ -11454,7 +11455,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "hash-db", "log", @@ -11476,12 +11477,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11494,7 +11495,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "log", "sp-core", @@ -11507,7 +11508,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "futures-timer", @@ -11523,7 +11524,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "sp-std", @@ -11535,7 +11536,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "sp-api", "sp-runtime", @@ -11544,7 +11545,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "async-trait", "log", @@ -11560,7 +11561,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "ahash", "hash-db", @@ -11583,7 +11584,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11600,7 +11601,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11611,7 +11612,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "impl-trait-for-tuples", "log", @@ -11624,7 +11625,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11920,7 +11921,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "platforms", ] @@ -11928,7 +11929,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11949,7 +11950,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "futures-util", "hyper", @@ -11962,7 +11963,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "jsonrpsee", "log", @@ -11983,7 +11984,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "array-bytes", "async-trait", @@ -12009,7 +12010,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12019,7 +12020,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12030,7 +12031,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "ansi_term", "build-helper", @@ -12138,7 +12139,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "frame-support", "polkadot-primitives", @@ -12419,7 +12420,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12430,7 +12431,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12557,7 +12558,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" dependencies = [ "clap", "frame-try-runtime", @@ -13145,7 +13146,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "beefy-primitives", "bitvec", @@ -13235,7 +13236,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "frame-support", "polkadot-primitives", @@ -13518,7 +13519,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13532,7 +13533,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "frame-support", "frame-system", @@ -13552,7 +13553,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -13570,7 +13571,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" dependencies = [ "Inflector", "proc-macro2", From 528d02fd9f039946e22b8ca76b6f436d5b523e5d Mon Sep 17 00:00:00 2001 From: Andronik Date: Thu, 6 Oct 2022 15:07:54 +0200 Subject: [PATCH 10/40] Revert "REVERTME: cargo update -p sp-io" This reverts commit d48e1e6aa2134591b285e284077a063356d44eed. --- Cargo.lock | 505 ++++++++++++++++++++++++++--------------------------- 1 file changed, 252 insertions(+), 253 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 58357758ace..675a857bb7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -2748,7 +2748,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", ] @@ -2765,7 +2765,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -2788,7 +2788,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "Inflector", "array-bytes", @@ -2839,7 +2839,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2850,7 +2850,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2866,7 +2866,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -2895,7 +2895,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "bitflags", "frame-metadata", @@ -2927,7 +2927,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "Inflector", "cfg-expr", @@ -2941,7 +2941,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2953,7 +2953,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro2", "quote", @@ -2963,7 +2963,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "log", @@ -2981,7 +2981,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -2996,7 +2996,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "sp-api", @@ -3005,7 +3005,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "parity-scale-codec", @@ -3884,7 +3884,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-primitives", "bitvec", @@ -3982,7 +3982,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "polkadot-primitives", @@ -5377,7 +5377,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5398,7 +5398,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -5415,7 +5415,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5429,7 +5429,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -5445,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -5461,7 +5461,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -5476,7 +5476,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5500,7 +5500,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5520,7 +5520,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5535,7 +5535,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "beefy-primitives", "frame-support", @@ -5551,7 +5551,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5574,7 +5574,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5592,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5636,7 +5636,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5653,7 +5653,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "bitflags", "frame-benchmarking", @@ -5681,7 +5681,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "bitflags", "parity-scale-codec", @@ -5693,7 +5693,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro2", "quote", @@ -5703,7 +5703,7 @@ dependencies = [ [[package]] name = "pallet-contracts-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "pallet-contracts-primitives", "parity-scale-codec", @@ -5716,7 +5716,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5733,7 +5733,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5749,7 +5749,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5773,7 +5773,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5786,7 +5786,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5804,7 +5804,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5825,7 +5825,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5840,7 +5840,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5863,7 +5863,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5879,7 +5879,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5899,7 +5899,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5916,7 +5916,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5933,7 +5933,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5951,7 +5951,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5966,7 +5966,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5981,7 +5981,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -5998,7 +5998,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6018,7 +6018,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "sp-api", @@ -6028,7 +6028,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -6045,7 +6045,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6068,7 +6068,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6084,7 +6084,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6099,7 +6099,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -6113,7 +6113,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6131,7 +6131,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6146,7 +6146,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6164,7 +6164,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6180,7 +6180,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -6201,7 +6201,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6217,7 +6217,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -6231,7 +6231,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6254,7 +6254,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6265,7 +6265,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "sp-arithmetic", @@ -6274,7 +6274,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -6303,7 +6303,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6321,7 +6321,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6340,7 +6340,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -6356,7 +6356,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6371,7 +6371,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6382,7 +6382,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6399,7 +6399,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6414,7 +6414,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6430,7 +6430,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6445,7 +6445,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6460,7 +6460,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "frame-system", @@ -6478,7 +6478,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-benchmarking", "frame-support", @@ -7031,7 +7031,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7046,7 +7046,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7060,7 +7060,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "derive_more", "fatality", @@ -7083,7 +7083,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "fatality", "futures", @@ -7104,7 +7104,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7130,7 +7130,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7171,7 +7171,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "always-assert", "bitvec", @@ -7193,7 +7193,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7206,7 +7206,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "derive_more", "fatality", @@ -7231,7 +7231,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7245,7 +7245,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "futures-timer", @@ -7265,7 +7265,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "always-assert", "async-trait", @@ -7289,7 +7289,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "parity-scale-codec", @@ -7307,7 +7307,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bitvec", "derive_more", @@ -7336,7 +7336,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bitvec", "futures", @@ -7356,7 +7356,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bitvec", "fatality", @@ -7375,7 +7375,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7390,7 +7390,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "futures", @@ -7408,7 +7408,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7423,7 +7423,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "futures-timer", @@ -7440,7 +7440,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "fatality", "futures", @@ -7459,7 +7459,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "futures", @@ -7476,7 +7476,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bitvec", "fatality", @@ -7494,7 +7494,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "always-assert", "assert_matches", @@ -7526,7 +7526,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "polkadot-node-primitives", @@ -7542,7 +7542,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "memory-lru", @@ -7558,7 +7558,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-std", "lazy_static", @@ -7576,7 +7576,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bs58", "futures", @@ -7595,7 +7595,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "derive_more", @@ -7618,7 +7618,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bounded-vec", "futures", @@ -7640,7 +7640,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7650,7 +7650,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "futures", @@ -7668,7 +7668,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "derive_more", @@ -7691,7 +7691,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "derive_more", @@ -7724,7 +7724,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "futures", @@ -7747,7 +7747,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "derive_more", "frame-support", @@ -7844,7 +7844,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7859,7 +7859,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bitvec", "frame-system", @@ -7889,7 +7889,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7921,7 +7921,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-primitives", "bitvec", @@ -8010,7 +8010,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-primitives", "bitvec", @@ -8057,7 +8057,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "polkadot-primitives", @@ -8069,7 +8069,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bs58", "parity-scale-codec", @@ -8081,7 +8081,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bitflags", "bitvec", @@ -8124,7 +8124,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "beefy-gadget", @@ -8229,7 +8229,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8250,7 +8250,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8260,7 +8260,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8285,7 +8285,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-primitives", "bitvec", @@ -8346,7 +8346,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-benchmarking", "frame-system", @@ -8977,7 +8977,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9096,7 +9096,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9180,7 +9180,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "polkadot-primitives", @@ -9350,7 +9350,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "sp-core", @@ -9361,7 +9361,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures", @@ -9388,7 +9388,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "futures-timer", @@ -9411,7 +9411,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9427,7 +9427,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9444,7 +9444,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9455,7 +9455,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "chrono", @@ -9495,7 +9495,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "fnv", "futures", @@ -9523,7 +9523,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "hash-db", "kvdb", @@ -9548,7 +9548,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures", @@ -9572,7 +9572,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures", @@ -9601,7 +9601,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "fork-tree", @@ -9643,7 +9643,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "jsonrpsee", @@ -9665,7 +9665,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9678,7 +9678,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures", @@ -9702,7 +9702,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9729,7 +9729,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "environmental", "parity-scale-codec", @@ -9745,7 +9745,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "parity-scale-codec", @@ -9760,7 +9760,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9780,7 +9780,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ahash", "array-bytes", @@ -9821,7 +9821,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "finality-grandpa", "futures", @@ -9842,7 +9842,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ansi_term", "futures", @@ -9859,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "async-trait", @@ -9874,7 +9874,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "async-trait", @@ -9921,7 +9921,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "cid", "futures", @@ -9941,7 +9941,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "bitflags", @@ -9967,7 +9967,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ahash", "futures", @@ -9985,7 +9985,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "futures", @@ -10006,7 +10006,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "fork-tree", @@ -10034,7 +10034,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "futures", @@ -10053,7 +10053,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "bytes", @@ -10083,7 +10083,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "libp2p", @@ -10096,7 +10096,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10105,7 +10105,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "hash-db", @@ -10135,7 +10135,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "jsonrpsee", @@ -10158,7 +10158,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "jsonrpsee", @@ -10171,7 +10171,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "directories", @@ -10241,7 +10241,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "parity-scale-codec", @@ -10255,7 +10255,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10274,7 +10274,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "libc", @@ -10293,7 +10293,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "chrono", "futures", @@ -10311,7 +10311,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ansi_term", "atty", @@ -10342,7 +10342,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10353,7 +10353,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "futures-timer", @@ -10379,7 +10379,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "log", @@ -10392,7 +10392,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "futures-timer", @@ -10822,7 +10822,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "enumn", "parity-scale-codec", @@ -10898,7 +10898,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "hash-db", "log", @@ -10916,7 +10916,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "blake2", "proc-macro-crate", @@ -10928,7 +10928,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -10941,7 +10941,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "integer-sqrt", "num-traits", @@ -10956,7 +10956,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -10969,7 +10969,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "parity-scale-codec", @@ -10981,7 +10981,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "sp-api", @@ -10993,7 +10993,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "log", @@ -11011,7 +11011,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures", @@ -11030,7 +11030,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "parity-scale-codec", @@ -11048,7 +11048,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "merlin", @@ -11071,7 +11071,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -11085,7 +11085,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -11098,7 +11098,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "base58", @@ -11144,7 +11144,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "blake2", "byteorder", @@ -11158,7 +11158,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro2", "quote", @@ -11169,7 +11169,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11178,7 +11178,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro2", "quote", @@ -11188,7 +11188,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "environmental", "parity-scale-codec", @@ -11199,7 +11199,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "finality-grandpa", "log", @@ -11217,7 +11217,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11231,7 +11231,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "bytes", "futures", @@ -11257,7 +11257,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "lazy_static", "sp-core", @@ -11268,7 +11268,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures", @@ -11285,7 +11285,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "thiserror", "zstd", @@ -11294,11 +11294,10 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "parity-scale-codec", - "scale-info", "serde", "sp-api", "sp-core", @@ -11310,7 +11309,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -11324,7 +11323,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "sp-api", "sp-core", @@ -11334,7 +11333,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "backtrace", "lazy_static", @@ -11344,7 +11343,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "rustc-hash", "serde", @@ -11354,7 +11353,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "either", "hash256-std-hasher", @@ -11377,7 +11376,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11395,7 +11394,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "Inflector", "proc-macro-crate", @@ -11407,7 +11406,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "parity-scale-codec", @@ -11421,7 +11420,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "serde", "serde_json", @@ -11430,7 +11429,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -11444,7 +11443,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -11455,7 +11454,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "hash-db", "log", @@ -11477,12 +11476,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11495,7 +11494,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "sp-core", @@ -11508,7 +11507,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures-timer", @@ -11524,7 +11523,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "sp-std", @@ -11536,7 +11535,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "sp-api", "sp-runtime", @@ -11545,7 +11544,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "log", @@ -11561,7 +11560,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ahash", "hash-db", @@ -11584,7 +11583,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11601,7 +11600,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11612,7 +11611,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "impl-trait-for-tuples", "log", @@ -11625,7 +11624,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11921,7 +11920,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "platforms", ] @@ -11929,7 +11928,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11950,7 +11949,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures-util", "hyper", @@ -11963,7 +11962,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "jsonrpsee", "log", @@ -11984,7 +11983,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "async-trait", @@ -12010,7 +12009,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12020,7 +12019,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12031,7 +12030,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ansi_term", "build-helper", @@ -12139,7 +12138,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "polkadot-primitives", @@ -12420,7 +12419,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12431,7 +12430,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12558,7 +12557,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#87224cf2cdafbacd0acac33c43a1063c02e02147" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "clap", "frame-try-runtime", @@ -13146,7 +13145,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-primitives", "bitvec", @@ -13236,7 +13235,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "polkadot-primitives", @@ -13519,7 +13518,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13533,7 +13532,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "frame-system", @@ -13553,7 +13552,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-benchmarking", "frame-support", @@ -13571,7 +13570,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#2590cd21480947315a5a5e340fff78d69690e3f5" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "Inflector", "proc-macro2", From f1cc66c1fd8029ea5cc17fc46d81bedfdfb07bf0 Mon Sep 17 00:00:00 2001 From: Andronik Date: Thu, 6 Oct 2022 15:09:32 +0200 Subject: [PATCH 11/40] REVERTME: cargo update -p sp-io --- Cargo.lock | 503 +++++++++++++++++++++++++++-------------------------- 1 file changed, 252 insertions(+), 251 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be498e906c8..592ec0dddbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "beefy-primitives", "sp-api", @@ -536,13 +536,14 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", "sp-api", "sp-application-crypto", "sp-core", + "sp-mmr-primitives", "sp-runtime", "sp-std", ] @@ -2747,7 +2748,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", ] @@ -2764,7 +2765,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -2787,7 +2788,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "Inflector", "array-bytes", @@ -2838,7 +2839,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2849,7 +2850,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2865,7 +2866,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -2894,7 +2895,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "bitflags", "frame-metadata", @@ -2926,7 +2927,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "Inflector", "cfg-expr", @@ -2940,7 +2941,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2952,7 +2953,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro2", "quote", @@ -2962,7 +2963,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "log", @@ -2980,7 +2981,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -2995,7 +2996,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "sp-api", @@ -3004,7 +3005,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "parity-scale-codec", @@ -3871,7 +3872,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-primitives", "bitvec", @@ -3969,7 +3970,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "polkadot-primitives", @@ -5352,7 +5353,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5373,7 +5374,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -5390,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5404,7 +5405,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -5420,7 +5421,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -5436,7 +5437,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -5451,7 +5452,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5475,7 +5476,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5495,7 +5496,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5510,7 +5511,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "beefy-primitives", "frame-support", @@ -5526,7 +5527,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5549,7 +5550,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5567,7 +5568,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5611,7 +5612,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5628,7 +5629,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "bitflags", "frame-benchmarking", @@ -5657,7 +5658,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "bitflags", "parity-scale-codec", @@ -5669,7 +5670,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro2", "quote", @@ -5679,7 +5680,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5696,7 +5697,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5714,7 +5715,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5738,7 +5739,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5751,7 +5752,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5769,7 +5770,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5790,7 +5791,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5805,7 +5806,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5828,7 +5829,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5844,7 +5845,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5864,7 +5865,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5881,7 +5882,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5898,7 +5899,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5916,7 +5917,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5931,7 +5932,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5947,7 +5948,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -5964,7 +5965,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5984,7 +5985,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "sp-api", @@ -5994,7 +5995,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -6011,7 +6012,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6034,7 +6035,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6051,7 +6052,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6066,7 +6067,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -6080,7 +6081,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6098,7 +6099,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6113,7 +6114,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6131,7 +6132,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6147,7 +6148,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -6168,7 +6169,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6184,7 +6185,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -6198,7 +6199,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6221,7 +6222,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6232,7 +6233,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "sp-arithmetic", @@ -6241,7 +6242,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -6270,7 +6271,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6288,7 +6289,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6307,7 +6308,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -6323,7 +6324,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6338,7 +6339,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6349,7 +6350,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6366,7 +6367,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6381,7 +6382,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6397,7 +6398,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6412,7 +6413,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6427,7 +6428,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "frame-system", @@ -6445,7 +6446,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-benchmarking", "frame-support", @@ -6998,7 +6999,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7013,7 +7014,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7027,7 +7028,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "derive_more", "fatality", @@ -7050,7 +7051,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "fatality", "futures", @@ -7071,7 +7072,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7097,7 +7098,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7138,7 +7139,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "always-assert", "bitvec", @@ -7160,7 +7161,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7173,7 +7174,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "derive_more", "fatality", @@ -7198,7 +7199,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7212,7 +7213,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "futures-timer", @@ -7232,7 +7233,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "always-assert", "async-trait", @@ -7256,7 +7257,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "parity-scale-codec", @@ -7274,7 +7275,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bitvec", "derive_more", @@ -7303,7 +7304,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bitvec", "futures", @@ -7323,7 +7324,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bitvec", "fatality", @@ -7342,7 +7343,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7357,7 +7358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "futures", @@ -7375,7 +7376,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7390,7 +7391,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "futures-timer", @@ -7407,7 +7408,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "fatality", "futures", @@ -7426,7 +7427,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "futures", @@ -7443,7 +7444,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bitvec", "fatality", @@ -7461,7 +7462,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "always-assert", "assert_matches", @@ -7493,7 +7494,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "polkadot-node-primitives", @@ -7509,7 +7510,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "memory-lru", @@ -7525,7 +7526,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-std", "lazy_static", @@ -7543,7 +7544,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bs58", "futures", @@ -7562,7 +7563,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "derive_more", @@ -7585,7 +7586,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bounded-vec", "futures", @@ -7607,7 +7608,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7617,7 +7618,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "futures", @@ -7635,7 +7636,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "derive_more", @@ -7658,7 +7659,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "derive_more", @@ -7691,7 +7692,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "futures", @@ -7714,7 +7715,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "derive_more", "frame-support", @@ -7811,7 +7812,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7826,7 +7827,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bitvec", "frame-system", @@ -7856,7 +7857,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7888,7 +7889,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-primitives", "bitvec", @@ -7977,7 +7978,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-primitives", "bitvec", @@ -8024,7 +8025,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "polkadot-primitives", @@ -8036,7 +8037,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bs58", "parity-scale-codec", @@ -8048,7 +8049,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bitflags", "bitvec", @@ -8091,7 +8092,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "beefy-gadget", @@ -8196,7 +8197,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8217,7 +8218,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8227,7 +8228,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8252,7 +8253,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-primitives", "bitvec", @@ -8313,7 +8314,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-benchmarking", "frame-system", @@ -8944,7 +8945,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9063,7 +9064,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9147,7 +9148,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "polkadot-primitives", @@ -9317,7 +9318,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "sp-core", @@ -9328,7 +9329,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "futures", @@ -9355,7 +9356,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "futures-timer", @@ -9378,7 +9379,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9394,7 +9395,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9411,7 +9412,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9422,7 +9423,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "chrono", @@ -9462,7 +9463,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "fnv", "futures", @@ -9490,7 +9491,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "hash-db", "kvdb", @@ -9515,7 +9516,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "futures", @@ -9539,7 +9540,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "futures", @@ -9568,7 +9569,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "fork-tree", @@ -9610,7 +9611,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "jsonrpsee", @@ -9632,7 +9633,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9645,7 +9646,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "futures", @@ -9669,7 +9670,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9696,7 +9697,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "environmental", "parity-scale-codec", @@ -9712,7 +9713,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "parity-scale-codec", @@ -9727,7 +9728,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9747,7 +9748,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ahash", "array-bytes", @@ -9788,7 +9789,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "finality-grandpa", "futures", @@ -9809,7 +9810,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ansi_term", "futures", @@ -9826,7 +9827,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "async-trait", @@ -9841,7 +9842,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "async-trait", @@ -9888,7 +9889,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "cid", "futures", @@ -9908,7 +9909,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "bitflags", @@ -9934,7 +9935,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ahash", "futures", @@ -9952,7 +9953,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "futures", @@ -9973,7 +9974,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "fork-tree", @@ -10001,7 +10002,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "futures", @@ -10020,7 +10021,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "bytes", @@ -10050,7 +10051,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "libp2p", @@ -10063,7 +10064,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10072,7 +10073,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "hash-db", @@ -10102,7 +10103,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "jsonrpsee", @@ -10125,7 +10126,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "jsonrpsee", @@ -10138,7 +10139,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "directories", @@ -10208,7 +10209,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "parity-scale-codec", @@ -10222,7 +10223,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10241,7 +10242,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "libc", @@ -10260,7 +10261,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "chrono", "futures", @@ -10278,7 +10279,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ansi_term", "atty", @@ -10309,7 +10310,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10320,7 +10321,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "futures-timer", @@ -10346,7 +10347,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "log", @@ -10359,7 +10360,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "futures-timer", @@ -10789,7 +10790,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "enumn", "parity-scale-codec", @@ -10865,7 +10866,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "hash-db", "log", @@ -10883,7 +10884,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "blake2", "proc-macro-crate", @@ -10895,7 +10896,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -10908,7 +10909,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "integer-sqrt", "num-traits", @@ -10923,7 +10924,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -10936,7 +10937,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "parity-scale-codec", @@ -10948,7 +10949,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "sp-api", @@ -10960,7 +10961,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "log", @@ -10978,7 +10979,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "futures", @@ -10997,7 +10998,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "parity-scale-codec", @@ -11015,7 +11016,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "merlin", @@ -11038,7 +11039,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -11052,7 +11053,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -11065,7 +11066,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "base58", @@ -11111,7 +11112,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "blake2", "byteorder", @@ -11125,7 +11126,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro2", "quote", @@ -11136,7 +11137,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11145,7 +11146,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro2", "quote", @@ -11155,7 +11156,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "environmental", "parity-scale-codec", @@ -11166,7 +11167,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "finality-grandpa", "log", @@ -11184,7 +11185,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11198,7 +11199,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "bytes", "futures", @@ -11224,7 +11225,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "lazy_static", "sp-core", @@ -11235,7 +11236,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "futures", @@ -11252,7 +11253,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "thiserror", "zstd", @@ -11261,7 +11262,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "parity-scale-codec", @@ -11277,7 +11278,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -11291,7 +11292,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "sp-api", "sp-core", @@ -11301,7 +11302,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "backtrace", "lazy_static", @@ -11311,7 +11312,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "rustc-hash", "serde", @@ -11321,7 +11322,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "either", "hash256-std-hasher", @@ -11344,7 +11345,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11362,7 +11363,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "Inflector", "proc-macro-crate", @@ -11374,7 +11375,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "parity-scale-codec", @@ -11388,7 +11389,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "serde", "serde_json", @@ -11397,7 +11398,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -11411,7 +11412,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -11422,7 +11423,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "hash-db", "log", @@ -11444,12 +11445,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11462,7 +11463,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "sp-core", @@ -11475,7 +11476,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "futures-timer", @@ -11491,7 +11492,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "sp-std", @@ -11503,7 +11504,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "sp-api", "sp-runtime", @@ -11512,7 +11513,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "log", @@ -11528,7 +11529,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ahash", "hash-db", @@ -11551,7 +11552,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11568,7 +11569,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11579,7 +11580,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "impl-trait-for-tuples", "log", @@ -11592,7 +11593,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11888,7 +11889,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "platforms", ] @@ -11896,7 +11897,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11917,7 +11918,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures-util", "hyper", @@ -11930,7 +11931,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "jsonrpsee", "log", @@ -11951,7 +11952,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "async-trait", @@ -11977,7 +11978,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11987,7 +11988,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11998,7 +11999,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ansi_term", "build-helper", @@ -12106,7 +12107,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "polkadot-primitives", @@ -12387,7 +12388,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12398,7 +12399,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12525,7 +12526,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "clap", "frame-try-runtime", @@ -13113,7 +13114,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-primitives", "bitvec", @@ -13203,7 +13204,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "polkadot-primitives", @@ -13486,7 +13487,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13500,7 +13501,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "frame-system", @@ -13520,7 +13521,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-benchmarking", "frame-support", @@ -13538,7 +13539,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "Inflector", "proc-macro2", From 02838a656eadfcbd26520e6b60ee21ffd8b27afd Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 7 Oct 2022 11:16:19 +0200 Subject: [PATCH 12/40] REVERTME: cargo update -p sp-io --- Cargo.lock | 474 ++++++++++++++++++++++++++--------------------------- 1 file changed, 237 insertions(+), 237 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 592ec0dddbb..9576fd4ce70 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "scale-info", @@ -2748,7 +2748,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", ] @@ -2765,7 +2765,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-support", "frame-system", @@ -2788,7 +2788,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "Inflector", "array-bytes", @@ -2839,7 +2839,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2850,7 +2850,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2866,7 +2866,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-support", "frame-system", @@ -2895,7 +2895,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "bitflags", "frame-metadata", @@ -2927,7 +2927,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "Inflector", "cfg-expr", @@ -2941,7 +2941,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2953,7 +2953,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "proc-macro2", "quote", @@ -2963,7 +2963,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-support", "log", @@ -2981,7 +2981,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -2996,7 +2996,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "sp-api", @@ -3005,7 +3005,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-support", "parity-scale-codec", @@ -3872,7 +3872,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-primitives", "bitvec", @@ -3970,7 +3970,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "polkadot-primitives", @@ -5421,7 +5421,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-support", "frame-system", @@ -5437,7 +5437,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-support", "frame-system", @@ -5452,7 +5452,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5476,7 +5476,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5496,7 +5496,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5511,7 +5511,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "beefy-primitives", "frame-support", @@ -5527,7 +5527,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5550,7 +5550,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5568,7 +5568,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5612,7 +5612,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5680,7 +5680,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5697,7 +5697,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5715,7 +5715,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5739,7 +5739,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5752,7 +5752,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5770,7 +5770,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5791,7 +5791,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5806,7 +5806,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5829,7 +5829,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5845,7 +5845,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5865,7 +5865,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5882,7 +5882,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5899,7 +5899,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5917,7 +5917,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5932,7 +5932,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5948,7 +5948,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-support", "frame-system", @@ -5965,7 +5965,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5985,7 +5985,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "sp-api", @@ -5995,7 +5995,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-support", "frame-system", @@ -6012,7 +6012,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6035,7 +6035,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6052,7 +6052,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6081,7 +6081,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6099,7 +6099,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6114,7 +6114,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6132,7 +6132,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6148,7 +6148,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-support", "frame-system", @@ -6169,7 +6169,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6185,7 +6185,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-support", "frame-system", @@ -6199,7 +6199,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6222,7 +6222,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6233,7 +6233,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "log", "sp-arithmetic", @@ -6242,7 +6242,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-support", "frame-system", @@ -6271,7 +6271,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6289,7 +6289,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6308,7 +6308,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-support", "frame-system", @@ -6324,7 +6324,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6339,7 +6339,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6350,7 +6350,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6382,7 +6382,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6398,7 +6398,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6413,7 +6413,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6428,7 +6428,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "frame-system", @@ -6446,7 +6446,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6999,7 +6999,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7014,7 +7014,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7028,7 +7028,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "derive_more", "fatality", @@ -7051,7 +7051,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "fatality", "futures", @@ -7072,7 +7072,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7098,7 +7098,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7139,7 +7139,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "always-assert", "bitvec", @@ -7161,7 +7161,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7174,7 +7174,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "derive_more", "fatality", @@ -7199,7 +7199,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7213,7 +7213,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "futures-timer", @@ -7233,7 +7233,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "always-assert", "async-trait", @@ -7257,7 +7257,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "parity-scale-codec", @@ -7275,7 +7275,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bitvec", "derive_more", @@ -7304,7 +7304,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bitvec", "futures", @@ -7324,7 +7324,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bitvec", "fatality", @@ -7343,7 +7343,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7358,7 +7358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "futures", @@ -7376,7 +7376,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7391,7 +7391,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "futures-timer", @@ -7408,7 +7408,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "fatality", "futures", @@ -7427,7 +7427,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "futures", @@ -7444,7 +7444,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bitvec", "fatality", @@ -7462,7 +7462,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "always-assert", "assert_matches", @@ -7494,7 +7494,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "polkadot-node-primitives", @@ -7510,7 +7510,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "memory-lru", @@ -7526,7 +7526,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-std", "lazy_static", @@ -7544,7 +7544,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bs58", "futures", @@ -7563,7 +7563,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "derive_more", @@ -7586,7 +7586,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bounded-vec", "futures", @@ -7608,7 +7608,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7618,7 +7618,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "futures", @@ -7636,7 +7636,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "derive_more", @@ -7659,7 +7659,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "derive_more", @@ -7692,7 +7692,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "futures", @@ -7715,7 +7715,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "derive_more", "frame-support", @@ -7812,7 +7812,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7827,7 +7827,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bitvec", "frame-system", @@ -7857,7 +7857,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7889,7 +7889,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-primitives", "bitvec", @@ -7978,7 +7978,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-primitives", "bitvec", @@ -8025,7 +8025,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "polkadot-primitives", @@ -8037,7 +8037,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bs58", "parity-scale-codec", @@ -8049,7 +8049,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bitflags", "bitvec", @@ -8092,7 +8092,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "beefy-gadget", @@ -8197,7 +8197,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8218,7 +8218,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8228,7 +8228,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8253,7 +8253,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-primitives", "bitvec", @@ -8314,7 +8314,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-benchmarking", "frame-system", @@ -8945,7 +8945,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9064,7 +9064,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9148,7 +9148,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "polkadot-primitives", @@ -9318,7 +9318,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "log", "sp-core", @@ -9329,7 +9329,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "async-trait", "futures", @@ -9356,7 +9356,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "futures", "futures-timer", @@ -9379,7 +9379,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9395,7 +9395,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9412,7 +9412,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9423,7 +9423,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "array-bytes", "chrono", @@ -9463,7 +9463,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "fnv", "futures", @@ -9491,7 +9491,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "hash-db", "kvdb", @@ -9516,7 +9516,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "async-trait", "futures", @@ -9569,7 +9569,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "async-trait", "fork-tree", @@ -9611,7 +9611,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "futures", "jsonrpsee", @@ -9633,7 +9633,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9646,7 +9646,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "async-trait", "futures", @@ -9670,7 +9670,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9697,7 +9697,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "environmental", "parity-scale-codec", @@ -9713,7 +9713,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "log", "parity-scale-codec", @@ -9728,7 +9728,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9748,7 +9748,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "ahash", "array-bytes", @@ -9789,7 +9789,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "finality-grandpa", "futures", @@ -9810,7 +9810,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "ansi_term", "futures", @@ -9827,7 +9827,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "array-bytes", "async-trait", @@ -9842,7 +9842,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "array-bytes", "async-trait", @@ -9889,7 +9889,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "cid", "futures", @@ -9909,7 +9909,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "async-trait", "bitflags", @@ -9935,7 +9935,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "ahash", "futures", @@ -9953,7 +9953,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "array-bytes", "futures", @@ -9974,7 +9974,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "array-bytes", "fork-tree", @@ -10002,7 +10002,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "array-bytes", "futures", @@ -10021,7 +10021,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "array-bytes", "bytes", @@ -10051,7 +10051,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "futures", "libp2p", @@ -10064,7 +10064,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10073,7 +10073,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "futures", "hash-db", @@ -10103,7 +10103,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "futures", "jsonrpsee", @@ -10126,7 +10126,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "futures", "jsonrpsee", @@ -10139,7 +10139,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "async-trait", "directories", @@ -10209,7 +10209,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "log", "parity-scale-codec", @@ -10223,7 +10223,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10242,7 +10242,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "futures", "libc", @@ -10261,7 +10261,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "chrono", "futures", @@ -10279,7 +10279,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "ansi_term", "atty", @@ -10310,7 +10310,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10321,7 +10321,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "futures", "futures-timer", @@ -10347,7 +10347,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "futures", "log", @@ -10360,7 +10360,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "futures", "futures-timer", @@ -10790,7 +10790,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "enumn", "parity-scale-codec", @@ -10866,7 +10866,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "hash-db", "log", @@ -10884,7 +10884,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "blake2", "proc-macro-crate", @@ -10896,7 +10896,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "scale-info", @@ -10909,7 +10909,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "integer-sqrt", "num-traits", @@ -10924,7 +10924,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "scale-info", @@ -10937,7 +10937,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "async-trait", "parity-scale-codec", @@ -10949,7 +10949,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "sp-api", @@ -10961,7 +10961,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "futures", "log", @@ -10979,7 +10979,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "async-trait", "futures", @@ -11016,7 +11016,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "async-trait", "merlin", @@ -11039,7 +11039,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "scale-info", @@ -11053,7 +11053,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "scale-info", @@ -11066,7 +11066,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "array-bytes", "base58", @@ -11112,7 +11112,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "blake2", "byteorder", @@ -11126,7 +11126,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "proc-macro2", "quote", @@ -11137,7 +11137,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11146,7 +11146,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "proc-macro2", "quote", @@ -11156,7 +11156,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "environmental", "parity-scale-codec", @@ -11167,7 +11167,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "finality-grandpa", "log", @@ -11185,7 +11185,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11199,7 +11199,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "bytes", "futures", @@ -11225,7 +11225,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "lazy_static", "sp-core", @@ -11236,7 +11236,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "async-trait", "futures", @@ -11253,7 +11253,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "thiserror", "zstd", @@ -11262,7 +11262,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "log", "parity-scale-codec", @@ -11278,7 +11278,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "scale-info", @@ -11292,7 +11292,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "sp-api", "sp-core", @@ -11302,7 +11302,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "backtrace", "lazy_static", @@ -11312,7 +11312,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "rustc-hash", "serde", @@ -11322,7 +11322,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "either", "hash256-std-hasher", @@ -11345,7 +11345,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11363,7 +11363,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "Inflector", "proc-macro-crate", @@ -11375,7 +11375,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "log", "parity-scale-codec", @@ -11398,7 +11398,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "scale-info", @@ -11412,7 +11412,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "scale-info", @@ -11423,7 +11423,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "hash-db", "log", @@ -11445,12 +11445,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11463,7 +11463,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "log", "sp-core", @@ -11476,7 +11476,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "async-trait", "futures-timer", @@ -11492,7 +11492,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "sp-std", @@ -11504,7 +11504,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "sp-api", "sp-runtime", @@ -11513,7 +11513,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "async-trait", "log", @@ -11529,7 +11529,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "ahash", "hash-db", @@ -11552,7 +11552,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11569,7 +11569,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11580,7 +11580,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "impl-trait-for-tuples", "log", @@ -11593,7 +11593,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11889,7 +11889,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "platforms", ] @@ -11897,7 +11897,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11918,7 +11918,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "futures-util", "hyper", @@ -11931,7 +11931,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "jsonrpsee", "log", @@ -11952,7 +11952,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "array-bytes", "async-trait", @@ -11999,7 +11999,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "ansi_term", "build-helper", @@ -12107,7 +12107,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "polkadot-primitives", @@ -12388,7 +12388,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12399,7 +12399,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12526,7 +12526,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" dependencies = [ "clap", "frame-try-runtime", @@ -13114,7 +13114,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-primitives", "bitvec", @@ -13204,7 +13204,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "polkadot-primitives", @@ -13487,7 +13487,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13501,7 +13501,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "frame-system", @@ -13521,7 +13521,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-benchmarking", "frame-support", @@ -13539,7 +13539,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "Inflector", "proc-macro2", From 3ccb75981868d1bc3c0f75fa882ff42a087e6119 Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 7 Oct 2022 13:16:08 +0200 Subject: [PATCH 13/40] try some logs and flags --- zombienet_tests/0002-pov_recovery.toml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index 500145712e9..21e5ce24d84 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -8,10 +8,14 @@ chain = "rococo-local" [[relaychain.nodes]] name = "alice" validator = true + # this should be enabled by default in `-local` chains + # but maybe zombienet changes this somehow + args = ["--allow-private-ipv4", "--discover-local"] [[relaychain.nodes]] name = "bob" validator = true + args = ["--allow-private-ipv4", "--discover-local"] [[parachains]] id = 2000 @@ -23,7 +27,7 @@ cumulus_based = true validator = true image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lparachain=debug"] + args = ["-lparachain=debug", "--", "--allow-private-ipv4", "--discover-local"] # Run dave as parachain collator and eve as parachain full node # @@ -33,7 +37,7 @@ cumulus_based = true validator = true image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--use-null-consensus", "--disable-block-announcements"] + args = ["--use-null-consensus", "--disable-block-announcements", "--", "--allow-private-ipv4", "--discover-local"] # run eve as parachain full node that is only connected to dave [[parachains.collators]] @@ -41,4 +45,4 @@ cumulus_based = true validator = false image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--use-null-consensus", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'dave'|zombie('multiAddress')}}"] + args = ["-lparachain=debug,sub-libp2p=debug", "--use-null-consensus", "--disable-block-announcements", "--", "--allow-private-ipv4", "--discover-local", "--reserved-only", "--reserved-nodes {{'dave'|zombie('multiAddress')}}"] From 4dd7cd6f54297536c1470d33862a2b79b72ea819 Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 7 Oct 2022 16:07:46 +0200 Subject: [PATCH 14/40] apply some suggestions from Sebastian --- zombienet_tests/0002-pov_recovery.toml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index 21e5ce24d84..6be1700b5a6 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -8,14 +8,10 @@ chain = "rococo-local" [[relaychain.nodes]] name = "alice" validator = true - # this should be enabled by default in `-local` chains - # but maybe zombienet changes this somehow - args = ["--allow-private-ipv4", "--discover-local"] [[relaychain.nodes]] name = "bob" validator = true - args = ["--allow-private-ipv4", "--discover-local"] [[parachains]] id = 2000 @@ -27,7 +23,7 @@ cumulus_based = true validator = true image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lparachain=debug", "--", "--allow-private-ipv4", "--discover-local"] + args = ["-lcumulus-pov-recovery=debug", "--use-null-consensus", "--disable-block-announcements"] # Run dave as parachain collator and eve as parachain full node # @@ -37,12 +33,12 @@ cumulus_based = true validator = true image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--use-null-consensus", "--disable-block-announcements", "--", "--allow-private-ipv4", "--discover-local"] + args = ["-lcumulus-pov-recovery=debug", "--use-null-consensus", "--disable-block-announcements"] - # run eve as parachain full node that is only connected to dave + # run eve as parachain full node that is only connected to alice [[parachains.collators]] name = "eve" validator = false image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lparachain=debug,sub-libp2p=debug", "--use-null-consensus", "--disable-block-announcements", "--", "--allow-private-ipv4", "--discover-local", "--reserved-only", "--reserved-nodes {{'dave'|zombie('multiAddress')}}"] + args = ["-lcumulus-pov-recovery=debug,parachain=debug,sub-libp2p=debug", "--use-null-consensus", "--disable-block-announcements"] From 0019174c25e72d95d6ae659afee0cbd2350e09db Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 7 Oct 2022 16:12:26 +0200 Subject: [PATCH 15/40] let Charlie produce blocks --- zombienet_tests/0002-pov_recovery.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index 6be1700b5a6..56ef55ec8e3 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -23,7 +23,7 @@ cumulus_based = true validator = true image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lcumulus-pov-recovery=debug", "--use-null-consensus", "--disable-block-announcements"] + args = ["-lcumulus-pov-recovery=debug", "--disable-block-announcements"] # Run dave as parachain collator and eve as parachain full node # @@ -35,7 +35,7 @@ cumulus_based = true command = "test-parachain" args = ["-lcumulus-pov-recovery=debug", "--use-null-consensus", "--disable-block-announcements"] - # run eve as parachain full node that is only connected to alice + # run eve as parachain full node [[parachains.collators]] name = "eve" validator = false From beaa1da6ba196363bbb787b00e59b8adabcc70e1 Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 7 Oct 2022 17:00:29 +0200 Subject: [PATCH 16/40] Revert "REVERTME: cargo update -p sp-io" This reverts commit 02838a656eadfcbd26520e6b60ee21ffd8b27afd. --- Cargo.lock | 474 ++++++++++++++++++++++++++--------------------------- 1 file changed, 237 insertions(+), 237 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9576fd4ce70..592ec0dddbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -2748,7 +2748,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", ] @@ -2765,7 +2765,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -2788,7 +2788,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "Inflector", "array-bytes", @@ -2839,7 +2839,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2850,7 +2850,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2866,7 +2866,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -2895,7 +2895,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "bitflags", "frame-metadata", @@ -2927,7 +2927,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "Inflector", "cfg-expr", @@ -2941,7 +2941,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2953,7 +2953,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro2", "quote", @@ -2963,7 +2963,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "log", @@ -2981,7 +2981,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -2996,7 +2996,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "sp-api", @@ -3005,7 +3005,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "parity-scale-codec", @@ -3872,7 +3872,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-primitives", "bitvec", @@ -3970,7 +3970,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "polkadot-primitives", @@ -5421,7 +5421,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -5437,7 +5437,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -5452,7 +5452,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5476,7 +5476,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5496,7 +5496,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5511,7 +5511,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "beefy-primitives", "frame-support", @@ -5527,7 +5527,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5550,7 +5550,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5568,7 +5568,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5612,7 +5612,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5680,7 +5680,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5697,7 +5697,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5715,7 +5715,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5739,7 +5739,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5752,7 +5752,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5770,7 +5770,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5791,7 +5791,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5806,7 +5806,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5829,7 +5829,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5845,7 +5845,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5865,7 +5865,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5882,7 +5882,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5899,7 +5899,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5917,7 +5917,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5932,7 +5932,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -5948,7 +5948,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -5965,7 +5965,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5985,7 +5985,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "sp-api", @@ -5995,7 +5995,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -6012,7 +6012,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6035,7 +6035,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6052,7 +6052,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6081,7 +6081,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6099,7 +6099,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6114,7 +6114,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6132,7 +6132,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6148,7 +6148,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -6169,7 +6169,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6185,7 +6185,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -6199,7 +6199,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6222,7 +6222,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6233,7 +6233,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "sp-arithmetic", @@ -6242,7 +6242,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -6271,7 +6271,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6289,7 +6289,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6308,7 +6308,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-support", "frame-system", @@ -6324,7 +6324,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6339,7 +6339,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6350,7 +6350,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6382,7 +6382,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6398,7 +6398,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6413,7 +6413,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-benchmarking", "frame-support", @@ -6428,7 +6428,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "frame-system", @@ -6446,7 +6446,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-benchmarking", "frame-support", @@ -6999,7 +6999,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7014,7 +7014,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7028,7 +7028,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "derive_more", "fatality", @@ -7051,7 +7051,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "fatality", "futures", @@ -7072,7 +7072,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7098,7 +7098,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7139,7 +7139,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "always-assert", "bitvec", @@ -7161,7 +7161,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7174,7 +7174,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "derive_more", "fatality", @@ -7199,7 +7199,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7213,7 +7213,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "futures-timer", @@ -7233,7 +7233,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "always-assert", "async-trait", @@ -7257,7 +7257,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "parity-scale-codec", @@ -7275,7 +7275,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bitvec", "derive_more", @@ -7304,7 +7304,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bitvec", "futures", @@ -7324,7 +7324,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bitvec", "fatality", @@ -7343,7 +7343,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7358,7 +7358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "futures", @@ -7376,7 +7376,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7391,7 +7391,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "futures-timer", @@ -7408,7 +7408,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "fatality", "futures", @@ -7427,7 +7427,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "futures", @@ -7444,7 +7444,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bitvec", "fatality", @@ -7462,7 +7462,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "always-assert", "assert_matches", @@ -7494,7 +7494,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "polkadot-node-primitives", @@ -7510,7 +7510,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "futures", "memory-lru", @@ -7526,7 +7526,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-std", "lazy_static", @@ -7544,7 +7544,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bs58", "futures", @@ -7563,7 +7563,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "derive_more", @@ -7586,7 +7586,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bounded-vec", "futures", @@ -7608,7 +7608,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7618,7 +7618,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "futures", @@ -7636,7 +7636,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "derive_more", @@ -7659,7 +7659,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "derive_more", @@ -7692,7 +7692,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "futures", @@ -7715,7 +7715,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "derive_more", "frame-support", @@ -7812,7 +7812,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7827,7 +7827,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bitvec", "frame-system", @@ -7857,7 +7857,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7889,7 +7889,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-primitives", "bitvec", @@ -7978,7 +7978,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-primitives", "bitvec", @@ -8025,7 +8025,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "polkadot-primitives", @@ -8037,7 +8037,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bs58", "parity-scale-codec", @@ -8049,7 +8049,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "bitflags", "bitvec", @@ -8092,7 +8092,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "async-trait", "beefy-gadget", @@ -8197,7 +8197,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8218,7 +8218,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8228,7 +8228,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8253,7 +8253,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-primitives", "bitvec", @@ -8314,7 +8314,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-benchmarking", "frame-system", @@ -8945,7 +8945,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9064,7 +9064,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9148,7 +9148,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "polkadot-primitives", @@ -9318,7 +9318,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "sp-core", @@ -9329,7 +9329,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "futures", @@ -9356,7 +9356,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "futures-timer", @@ -9379,7 +9379,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9395,7 +9395,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9412,7 +9412,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9423,7 +9423,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "chrono", @@ -9463,7 +9463,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "fnv", "futures", @@ -9491,7 +9491,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "hash-db", "kvdb", @@ -9516,7 +9516,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "futures", @@ -9569,7 +9569,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "fork-tree", @@ -9611,7 +9611,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "jsonrpsee", @@ -9633,7 +9633,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9646,7 +9646,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "futures", @@ -9670,7 +9670,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9697,7 +9697,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "environmental", "parity-scale-codec", @@ -9713,7 +9713,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "parity-scale-codec", @@ -9728,7 +9728,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9748,7 +9748,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ahash", "array-bytes", @@ -9789,7 +9789,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "finality-grandpa", "futures", @@ -9810,7 +9810,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ansi_term", "futures", @@ -9827,7 +9827,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "async-trait", @@ -9842,7 +9842,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "async-trait", @@ -9889,7 +9889,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "cid", "futures", @@ -9909,7 +9909,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "bitflags", @@ -9935,7 +9935,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ahash", "futures", @@ -9953,7 +9953,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "futures", @@ -9974,7 +9974,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "fork-tree", @@ -10002,7 +10002,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "futures", @@ -10021,7 +10021,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "bytes", @@ -10051,7 +10051,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "libp2p", @@ -10064,7 +10064,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10073,7 +10073,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "hash-db", @@ -10103,7 +10103,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "jsonrpsee", @@ -10126,7 +10126,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "jsonrpsee", @@ -10139,7 +10139,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "directories", @@ -10209,7 +10209,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "parity-scale-codec", @@ -10223,7 +10223,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10242,7 +10242,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "libc", @@ -10261,7 +10261,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "chrono", "futures", @@ -10279,7 +10279,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ansi_term", "atty", @@ -10310,7 +10310,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10321,7 +10321,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "futures-timer", @@ -10347,7 +10347,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "log", @@ -10360,7 +10360,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "futures-timer", @@ -10790,7 +10790,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "enumn", "parity-scale-codec", @@ -10866,7 +10866,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "hash-db", "log", @@ -10884,7 +10884,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "blake2", "proc-macro-crate", @@ -10896,7 +10896,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -10909,7 +10909,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "integer-sqrt", "num-traits", @@ -10924,7 +10924,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -10937,7 +10937,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "parity-scale-codec", @@ -10949,7 +10949,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "sp-api", @@ -10961,7 +10961,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures", "log", @@ -10979,7 +10979,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "futures", @@ -11016,7 +11016,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "merlin", @@ -11039,7 +11039,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -11053,7 +11053,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -11066,7 +11066,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "base58", @@ -11112,7 +11112,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "blake2", "byteorder", @@ -11126,7 +11126,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro2", "quote", @@ -11137,7 +11137,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11146,7 +11146,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "proc-macro2", "quote", @@ -11156,7 +11156,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "environmental", "parity-scale-codec", @@ -11167,7 +11167,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "finality-grandpa", "log", @@ -11185,7 +11185,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11199,7 +11199,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "bytes", "futures", @@ -11225,7 +11225,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "lazy_static", "sp-core", @@ -11236,7 +11236,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "futures", @@ -11253,7 +11253,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "thiserror", "zstd", @@ -11262,7 +11262,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "parity-scale-codec", @@ -11278,7 +11278,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -11292,7 +11292,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "sp-api", "sp-core", @@ -11302,7 +11302,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "backtrace", "lazy_static", @@ -11312,7 +11312,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "rustc-hash", "serde", @@ -11322,7 +11322,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "either", "hash256-std-hasher", @@ -11345,7 +11345,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11363,7 +11363,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "Inflector", "proc-macro-crate", @@ -11375,7 +11375,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "parity-scale-codec", @@ -11398,7 +11398,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -11412,7 +11412,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "scale-info", @@ -11423,7 +11423,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "hash-db", "log", @@ -11445,12 +11445,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11463,7 +11463,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "log", "sp-core", @@ -11476,7 +11476,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "futures-timer", @@ -11492,7 +11492,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "sp-std", @@ -11504,7 +11504,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "sp-api", "sp-runtime", @@ -11513,7 +11513,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "async-trait", "log", @@ -11529,7 +11529,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ahash", "hash-db", @@ -11552,7 +11552,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11569,7 +11569,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11580,7 +11580,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "impl-trait-for-tuples", "log", @@ -11593,7 +11593,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11889,7 +11889,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "platforms", ] @@ -11897,7 +11897,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11918,7 +11918,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "futures-util", "hyper", @@ -11931,7 +11931,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "jsonrpsee", "log", @@ -11952,7 +11952,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "array-bytes", "async-trait", @@ -11999,7 +11999,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "ansi_term", "build-helper", @@ -12107,7 +12107,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "polkadot-primitives", @@ -12388,7 +12388,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12399,7 +12399,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12526,7 +12526,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f77f788c8cd8692f716a54f13c434a8774246d7a" +source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" dependencies = [ "clap", "frame-try-runtime", @@ -13114,7 +13114,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "beefy-primitives", "bitvec", @@ -13204,7 +13204,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "polkadot-primitives", @@ -13487,7 +13487,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13501,7 +13501,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-support", "frame-system", @@ -13521,7 +13521,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "frame-benchmarking", "frame-support", @@ -13539,7 +13539,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" dependencies = [ "Inflector", "proc-macro2", From 8910d24b8924b97dc619ae948f8d39b86539cf01 Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 7 Oct 2022 17:01:57 +0200 Subject: [PATCH 17/40] git checkout master Cargo.lock --- Cargo.lock | 503 ++++++++++++++++++++++++++--------------------------- 1 file changed, 251 insertions(+), 252 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 592ec0dddbb..be498e906c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "beefy-primitives", "sp-api", @@ -536,14 +536,13 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", "sp-api", "sp-application-crypto", "sp-core", - "sp-mmr-primitives", "sp-runtime", "sp-std", ] @@ -2748,7 +2747,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", ] @@ -2765,7 +2764,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -2788,7 +2787,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "Inflector", "array-bytes", @@ -2839,7 +2838,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2850,7 +2849,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2866,7 +2865,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -2895,7 +2894,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "bitflags", "frame-metadata", @@ -2927,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "Inflector", "cfg-expr", @@ -2941,7 +2940,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2953,7 +2952,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro2", "quote", @@ -2963,7 +2962,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "log", @@ -2981,7 +2980,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -2996,7 +2995,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sp-api", @@ -3005,7 +3004,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "parity-scale-codec", @@ -3872,7 +3871,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -3970,7 +3969,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -5353,7 +5352,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5374,7 +5373,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -5391,7 +5390,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5405,7 +5404,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -5421,7 +5420,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -5437,7 +5436,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -5452,7 +5451,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5476,7 +5475,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5496,7 +5495,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5511,7 +5510,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "beefy-primitives", "frame-support", @@ -5527,7 +5526,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5550,7 +5549,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5568,7 +5567,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5612,7 +5611,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5629,7 +5628,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "bitflags", "frame-benchmarking", @@ -5658,7 +5657,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "bitflags", "parity-scale-codec", @@ -5670,7 +5669,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro2", "quote", @@ -5680,7 +5679,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5697,7 +5696,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5715,7 +5714,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5739,7 +5738,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5752,7 +5751,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5770,7 +5769,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5791,7 +5790,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5806,7 +5805,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5829,7 +5828,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5845,7 +5844,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5865,7 +5864,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5882,7 +5881,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5899,7 +5898,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5917,7 +5916,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5932,7 +5931,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5948,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -5965,7 +5964,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5985,7 +5984,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sp-api", @@ -5995,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6012,7 +6011,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6035,7 +6034,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6052,7 +6051,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6067,7 +6066,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6081,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6099,7 +6098,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6114,7 +6113,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6132,7 +6131,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6148,7 +6147,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6169,7 +6168,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6185,7 +6184,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6199,7 +6198,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6222,7 +6221,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6233,7 +6232,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "sp-arithmetic", @@ -6242,7 +6241,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6271,7 +6270,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6289,7 +6288,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6308,7 +6307,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6324,7 +6323,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6339,7 +6338,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6350,7 +6349,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6367,7 +6366,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6382,7 +6381,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6398,7 +6397,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6413,7 +6412,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6428,7 +6427,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "frame-system", @@ -6446,7 +6445,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6999,7 +6998,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7014,7 +7013,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7028,7 +7027,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "derive_more", "fatality", @@ -7051,7 +7050,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "fatality", "futures", @@ -7072,7 +7071,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7098,7 +7097,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7139,7 +7138,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "always-assert", "bitvec", @@ -7161,7 +7160,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7174,7 +7173,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "derive_more", "fatality", @@ -7199,7 +7198,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7213,7 +7212,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "futures-timer", @@ -7233,7 +7232,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "always-assert", "async-trait", @@ -7257,7 +7256,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "parity-scale-codec", @@ -7275,7 +7274,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "derive_more", @@ -7304,7 +7303,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "futures", @@ -7324,7 +7323,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "fatality", @@ -7343,7 +7342,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7358,7 +7357,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "futures", @@ -7376,7 +7375,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7391,7 +7390,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "futures-timer", @@ -7408,7 +7407,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "fatality", "futures", @@ -7427,7 +7426,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "futures", @@ -7444,7 +7443,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "fatality", @@ -7462,7 +7461,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "always-assert", "assert_matches", @@ -7494,7 +7493,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-primitives", @@ -7510,7 +7509,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "memory-lru", @@ -7526,7 +7525,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-std", "lazy_static", @@ -7544,7 +7543,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bs58", "futures", @@ -7563,7 +7562,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "derive_more", @@ -7586,7 +7585,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bounded-vec", "futures", @@ -7608,7 +7607,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7618,7 +7617,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "futures", @@ -7636,7 +7635,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "derive_more", @@ -7659,7 +7658,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "derive_more", @@ -7692,7 +7691,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "futures", @@ -7715,7 +7714,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "derive_more", "frame-support", @@ -7812,7 +7811,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7827,7 +7826,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "frame-system", @@ -7857,7 +7856,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7889,7 +7888,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -7978,7 +7977,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -8025,7 +8024,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -8037,7 +8036,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bs58", "parity-scale-codec", @@ -8049,7 +8048,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitflags", "bitvec", @@ -8092,7 +8091,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "beefy-gadget", @@ -8197,7 +8196,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8218,7 +8217,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8228,7 +8227,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8253,7 +8252,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -8314,7 +8313,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-benchmarking", "frame-system", @@ -8945,7 +8944,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9064,7 +9063,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9148,7 +9147,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -9318,7 +9317,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "sp-core", @@ -9329,7 +9328,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -9356,7 +9355,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "futures-timer", @@ -9379,7 +9378,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9395,7 +9394,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9412,7 +9411,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9423,7 +9422,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "chrono", @@ -9463,7 +9462,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "fnv", "futures", @@ -9491,7 +9490,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "hash-db", "kvdb", @@ -9516,7 +9515,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -9540,7 +9539,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -9569,7 +9568,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "fork-tree", @@ -9611,7 +9610,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "jsonrpsee", @@ -9633,7 +9632,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9646,7 +9645,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -9670,7 +9669,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9697,7 +9696,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "environmental", "parity-scale-codec", @@ -9713,7 +9712,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "parity-scale-codec", @@ -9728,7 +9727,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9748,7 +9747,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ahash", "array-bytes", @@ -9789,7 +9788,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "finality-grandpa", "futures", @@ -9810,7 +9809,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ansi_term", "futures", @@ -9827,7 +9826,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "async-trait", @@ -9842,7 +9841,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "async-trait", @@ -9889,7 +9888,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "cid", "futures", @@ -9909,7 +9908,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "bitflags", @@ -9935,7 +9934,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ahash", "futures", @@ -9953,7 +9952,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "futures", @@ -9974,7 +9973,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "fork-tree", @@ -10002,7 +10001,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "futures", @@ -10021,7 +10020,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "bytes", @@ -10051,7 +10050,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "libp2p", @@ -10064,7 +10063,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10073,7 +10072,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "hash-db", @@ -10103,7 +10102,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "jsonrpsee", @@ -10126,7 +10125,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "jsonrpsee", @@ -10139,7 +10138,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "directories", @@ -10209,7 +10208,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "parity-scale-codec", @@ -10223,7 +10222,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10242,7 +10241,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "libc", @@ -10261,7 +10260,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "chrono", "futures", @@ -10279,7 +10278,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ansi_term", "atty", @@ -10310,7 +10309,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10321,7 +10320,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "futures-timer", @@ -10347,7 +10346,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "log", @@ -10360,7 +10359,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "futures-timer", @@ -10790,7 +10789,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "enumn", "parity-scale-codec", @@ -10866,7 +10865,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "hash-db", "log", @@ -10884,7 +10883,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "blake2", "proc-macro-crate", @@ -10896,7 +10895,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -10909,7 +10908,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "integer-sqrt", "num-traits", @@ -10924,7 +10923,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -10937,7 +10936,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "parity-scale-codec", @@ -10949,7 +10948,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sp-api", @@ -10961,7 +10960,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "log", @@ -10979,7 +10978,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -10998,7 +10997,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "parity-scale-codec", @@ -11016,7 +11015,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "merlin", @@ -11039,7 +11038,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11053,7 +11052,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11066,7 +11065,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "base58", @@ -11112,7 +11111,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "blake2", "byteorder", @@ -11126,7 +11125,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro2", "quote", @@ -11137,7 +11136,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11146,7 +11145,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro2", "quote", @@ -11156,7 +11155,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "environmental", "parity-scale-codec", @@ -11167,7 +11166,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "finality-grandpa", "log", @@ -11185,7 +11184,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11199,7 +11198,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "bytes", "futures", @@ -11225,7 +11224,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "lazy_static", "sp-core", @@ -11236,7 +11235,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -11253,7 +11252,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "thiserror", "zstd", @@ -11262,7 +11261,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "parity-scale-codec", @@ -11278,7 +11277,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11292,7 +11291,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "sp-api", "sp-core", @@ -11302,7 +11301,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "backtrace", "lazy_static", @@ -11312,7 +11311,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "rustc-hash", "serde", @@ -11322,7 +11321,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "either", "hash256-std-hasher", @@ -11345,7 +11344,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11363,7 +11362,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "Inflector", "proc-macro-crate", @@ -11375,7 +11374,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "parity-scale-codec", @@ -11389,7 +11388,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "serde", "serde_json", @@ -11398,7 +11397,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11412,7 +11411,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11423,7 +11422,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "hash-db", "log", @@ -11445,12 +11444,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11463,7 +11462,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "sp-core", @@ -11476,7 +11475,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures-timer", @@ -11492,7 +11491,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sp-std", @@ -11504,7 +11503,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "sp-api", "sp-runtime", @@ -11513,7 +11512,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "log", @@ -11529,7 +11528,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ahash", "hash-db", @@ -11552,7 +11551,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11569,7 +11568,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11580,7 +11579,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-trait-for-tuples", "log", @@ -11593,7 +11592,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11889,7 +11888,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "platforms", ] @@ -11897,7 +11896,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11918,7 +11917,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures-util", "hyper", @@ -11931,7 +11930,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "jsonrpsee", "log", @@ -11952,7 +11951,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "async-trait", @@ -11978,7 +11977,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11988,7 +11987,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11999,7 +11998,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ansi_term", "build-helper", @@ -12107,7 +12106,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -12388,7 +12387,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12399,7 +12398,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12526,7 +12525,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a84def97102166643bc3c807ae69892551c47536" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "clap", "frame-try-runtime", @@ -13114,7 +13113,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -13204,7 +13203,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -13487,7 +13486,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13501,7 +13500,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "frame-system", @@ -13521,7 +13520,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-benchmarking", "frame-support", @@ -13539,7 +13538,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#354e351b4169bdcff99261251b4fdc48e9926588" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "Inflector", "proc-macro2", From d2247fdbb4a9056c145396b52e484c524a21d584 Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 7 Oct 2022 17:02:45 +0200 Subject: [PATCH 18/40] Revert "REVERTME: diener update --polkadot --branch ao-recovery-try-connect" This reverts commit 8ae8d5347b787ce5e08d6fdb5e7f266299fd70dd. --- client/collator/Cargo.toml | 10 +++++----- client/consensus/common/Cargo.toml | 2 +- client/network/Cargo.toml | 12 ++++++------ client/pov-recovery/Cargo.toml | 8 ++++---- .../relay-chain-inprocess-interface/Cargo.toml | 10 +++++----- client/relay-chain-interface/Cargo.toml | 4 ++-- client/relay-chain-rpc-interface/Cargo.toml | 2 +- client/service/Cargo.toml | 2 +- pallets/dmp-queue/Cargo.toml | 2 +- pallets/parachain-system/Cargo.toml | 2 +- pallets/solo-to-para/Cargo.toml | 2 +- pallets/xcm/Cargo.toml | 2 +- pallets/xcmp-queue/Cargo.toml | 6 +++--- parachain-template/node/Cargo.toml | 8 ++++---- parachain-template/runtime/Cargo.toml | 12 ++++++------ parachains/common/Cargo.toml | 6 +++--- parachains/pallets/ping/Cargo.toml | 2 +- .../runtimes/assets/statemine/Cargo.toml | 18 +++++++++--------- .../runtimes/assets/statemint/Cargo.toml | 18 +++++++++--------- parachains/runtimes/assets/westmint/Cargo.toml | 18 +++++++++--------- .../collectives-polkadot/Cargo.toml | 16 ++++++++-------- .../contracts/contracts-rococo/Cargo.toml | 16 ++++++++-------- parachains/runtimes/starters/shell/Cargo.toml | 6 +++--- parachains/runtimes/testing/penpal/Cargo.toml | 14 +++++++------- .../testing/rococo-parachain/Cargo.toml | 10 +++++----- polkadot-parachain/Cargo.toml | 10 +++++----- primitives/core/Cargo.toml | 6 +++--- primitives/utility/Cargo.toml | 6 +++--- test/client/Cargo.toml | 4 ++-- test/relay-sproof-builder/Cargo.toml | 2 +- .../Cargo.toml | 2 +- test/service/Cargo.toml | 10 +++++----- 32 files changed, 124 insertions(+), 124 deletions(-) diff --git a/client/collator/Cargo.toml b/client/collator/Cargo.toml index 100f2622a85..b8e05fd37c5 100644 --- a/client/collator/Cargo.toml +++ b/client/collator/Cargo.toml @@ -18,10 +18,10 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-client-consensus-common = { path = "../consensus/common" } @@ -37,7 +37,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = " sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-test-client = { path = "../../test/client" } diff --git a/client/consensus/common/Cargo.toml b/client/consensus/common/Cargo.toml index 1f42ce25537..42fa2fb53b2 100644 --- a/client/consensus/common/Cargo.toml +++ b/client/consensus/common/Cargo.toml @@ -21,7 +21,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-relay-chain-interface = { path = "../../relay-chain-interface" } diff --git a/client/network/Cargo.toml b/client/network/Cargo.toml index b2546823940..76b75fbd575 100644 --- a/client/network/Cargo.toml +++ b/client/network/Cargo.toml @@ -22,9 +22,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-relay-chain-interface = { path = "../relay-chain-interface" } @@ -44,9 +44,9 @@ sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "maste substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core" } diff --git a/client/pov-recovery/Cargo.toml b/client/pov-recovery/Cargo.toml index 2558bdc2465..5bc5adc87da 100644 --- a/client/pov-recovery/Cargo.toml +++ b/client/pov-recovery/Cargo.toml @@ -20,10 +20,10 @@ sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", br sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core" } diff --git a/client/relay-chain-inprocess-interface/Cargo.toml b/client/relay-chain-inprocess-interface/Cargo.toml index 97bd2b47a17..e2c38c87de7 100644 --- a/client/relay-chain-inprocess-interface/Cargo.toml +++ b/client/relay-chain-inprocess-interface/Cargo.toml @@ -22,9 +22,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot", default-features = false, features = ["cli"] , branch = "ao-recovery-try-connect" } -polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, features = ["cli"] } +polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core" } @@ -36,5 +36,5 @@ cumulus-relay-chain-interface = { path = "../relay-chain-interface" } sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } diff --git a/client/relay-chain-interface/Cargo.toml b/client/relay-chain-interface/Cargo.toml index bfca55b31a5..a6ba721fbeb 100644 --- a/client/relay-chain-interface/Cargo.toml +++ b/client/relay-chain-interface/Cargo.toml @@ -5,8 +5,8 @@ version = "0.1.0" edition = "2021" [dependencies] -polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } cumulus-primitives-core = { path = "../../primitives/core" } diff --git a/client/relay-chain-rpc-interface/Cargo.toml b/client/relay-chain-rpc-interface/Cargo.toml index e2c217f7e3a..fe2f9570100 100644 --- a/client/relay-chain-rpc-interface/Cargo.toml +++ b/client/relay-chain-rpc-interface/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } cumulus-primitives-core = { path = "../../primitives/core" } cumulus-relay-chain-interface = { path = "../relay-chain-interface" } diff --git a/client/service/Cargo.toml b/client/service/Cargo.toml index aa3a3eb39d1..e705364a1c8 100644 --- a/client/service/Cargo.toml +++ b/client/service/Cargo.toml @@ -18,7 +18,7 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-client-cli = { path = "../cli" } diff --git a/pallets/dmp-queue/Cargo.toml b/pallets/dmp-queue/Cargo.toml index 01fc946098d..5f423e84fc3 100644 --- a/pallets/dmp-queue/Cargo.toml +++ b/pallets/dmp-queue/Cargo.toml @@ -16,7 +16,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core", default-features = false } diff --git a/pallets/parachain-system/Cargo.toml b/pallets/parachain-system/Cargo.toml index d7889b55e73..8b203135610 100644 --- a/pallets/parachain-system/Cargo.toml +++ b/pallets/parachain-system/Cargo.toml @@ -27,7 +27,7 @@ sp-trie = { git = "https://github.com/paritytech/substrate", default-features = sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, features = [ "wasm-api" ], branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, features = [ "wasm-api" ], branch = "master" } # Cumulus cumulus-pallet-parachain-system-proc-macro = { path = "proc-macro", default-features = false } diff --git a/pallets/solo-to-para/Cargo.toml b/pallets/solo-to-para/Cargo.toml index a2d7d6d5b61..090ea3660d1 100644 --- a/pallets/solo-to-para/Cargo.toml +++ b/pallets/solo-to-para/Cargo.toml @@ -17,7 +17,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-parachain-system = { default-features = false, path = "../parachain-system" } diff --git a/pallets/xcm/Cargo.toml b/pallets/xcm/Cargo.toml index a9323c419a4..c90a3fd8245 100644 --- a/pallets/xcm/Cargo.toml +++ b/pallets/xcm/Cargo.toml @@ -14,7 +14,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } cumulus-primitives-core = { path = "../../primitives/core", default-features = false } diff --git a/pallets/xcmp-queue/Cargo.toml b/pallets/xcmp-queue/Cargo.toml index 6e7b6157600..8c7aef6a354 100644 --- a/pallets/xcmp-queue/Cargo.toml +++ b/pallets/xcmp-queue/Cargo.toml @@ -17,8 +17,8 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core", default-features = false } @@ -34,7 +34,7 @@ sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-pallet-parachain-system = { path = "../parachain-system" } diff --git a/parachain-template/node/Cargo.toml b/parachain-template/node/Cargo.toml index 5492e775cc4..a1b1408936e 100644 --- a/parachain-template/node/Cargo.toml +++ b/parachain-template/node/Cargo.toml @@ -54,10 +54,10 @@ substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-client-cli = { path = "../../client/cli" } diff --git a/parachain-template/runtime/Cargo.toml b/parachain-template/runtime/Cargo.toml index b2ac03cfeaf..5e9b88e2f17 100644 --- a/parachain-template/runtime/Cargo.toml +++ b/parachain-template/runtime/Cargo.toml @@ -53,12 +53,12 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../pallets/aura-ext", default-features = false } diff --git a/parachains/common/Cargo.toml b/parachains/common/Cargo.toml index a9f1339c29c..300f8683d87 100644 --- a/parachains/common/Cargo.toml +++ b/parachains/common/Cargo.toml @@ -26,9 +26,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus pallet-collator-selection = { path = "../../pallets/collator-selection", default-features = false } diff --git a/parachains/pallets/ping/Cargo.toml b/parachains/pallets/ping/Cargo.toml index edaf9bb217e..544a43ebceb 100644 --- a/parachains/pallets/ping/Cargo.toml +++ b/parachains/pallets/ping/Cargo.toml @@ -13,7 +13,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } cumulus-primitives-core = { path = "../../../primitives/core", default-features = false } cumulus-pallet-xcm = { path = "../../../pallets/xcm", default-features = false } diff --git a/parachains/runtimes/assets/statemine/Cargo.toml b/parachains/runtimes/assets/statemine/Cargo.toml index 1f45a58e5b0..7c47a42a4fe 100644 --- a/parachains/runtimes/assets/statemine/Cargo.toml +++ b/parachains/runtimes/assets/statemine/Cargo.toml @@ -46,14 +46,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } @@ -68,7 +68,7 @@ cumulus-primitives-utility = { path = "../../../../primitives/utility", default- pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false } parachain-info = { path = "../../../pallets/parachain-info", default-features = false } parachains-common = { path = "../../../common", default-features = false } -pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", default-features = false, optional = true , branch = "ao-recovery-try-connect" } +pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, optional = true } [dev-dependencies] diff --git a/parachains/runtimes/assets/statemint/Cargo.toml b/parachains/runtimes/assets/statemint/Cargo.toml index 2a8638dee16..127bba217ac 100644 --- a/parachains/runtimes/assets/statemint/Cargo.toml +++ b/parachains/runtimes/assets/statemint/Cargo.toml @@ -46,14 +46,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } @@ -68,7 +68,7 @@ cumulus-primitives-utility = { path = "../../../../primitives/utility", default- pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false } parachain-info = { path = "../../../pallets/parachain-info", default-features = false } parachains-common = { path = "../../../common", default-features = false } -pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", default-features = false, optional = true , branch = "ao-recovery-try-connect" } +pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, optional = true } [dev-dependencies] hex-literal = "0.3.4" diff --git a/parachains/runtimes/assets/westmint/Cargo.toml b/parachains/runtimes/assets/westmint/Cargo.toml index 96e33c0a689..b8b06231155 100644 --- a/parachains/runtimes/assets/westmint/Cargo.toml +++ b/parachains/runtimes/assets/westmint/Cargo.toml @@ -46,14 +46,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -westend-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +westend-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } @@ -68,7 +68,7 @@ cumulus-primitives-utility = { path = "../../../../primitives/utility", default- pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false } parachain-info = { path = "../../../pallets/parachain-info", default-features = false } parachains-common = { path = "../../../common", default-features = false } -pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", default-features = false, optional = true , branch = "ao-recovery-try-connect" } +pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, optional = true } [dev-dependencies] hex-literal = "0.3.4" diff --git a/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml b/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml index 75f1e74733d..4a6939b7c0f 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml +++ b/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml @@ -45,14 +45,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml index 5435ec03041..4bd3715fe49 100644 --- a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml +++ b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml @@ -51,14 +51,14 @@ pallet-contracts = { git = "https://github.com/paritytech/substrate", default-fe pallet-contracts-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/parachains/runtimes/starters/shell/Cargo.toml b/parachains/runtimes/starters/shell/Cargo.toml index ae165a30919..2588990a382 100644 --- a/parachains/runtimes/starters/shell/Cargo.toml +++ b/parachains/runtimes/starters/shell/Cargo.toml @@ -25,9 +25,9 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false } diff --git a/parachains/runtimes/testing/penpal/Cargo.toml b/parachains/runtimes/testing/penpal/Cargo.toml index e2cf3aee412..7aa20c46320 100644 --- a/parachains/runtimes/testing/penpal/Cargo.toml +++ b/parachains/runtimes/testing/penpal/Cargo.toml @@ -52,13 +52,13 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/parachains/runtimes/testing/rococo-parachain/Cargo.toml b/parachains/runtimes/testing/rococo-parachain/Cargo.toml index 0444a13c92f..d16847a8cd3 100644 --- a/parachains/runtimes/testing/rococo-parachain/Cargo.toml +++ b/parachains/runtimes/testing/rococo-parachain/Cargo.toml @@ -34,11 +34,11 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/polkadot-parachain/Cargo.toml b/polkadot-parachain/Cargo.toml index f4a97598a59..68b5830bd0c 100644 --- a/polkadot-parachain/Cargo.toml +++ b/polkadot-parachain/Cargo.toml @@ -66,10 +66,10 @@ frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://gith pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-client-cli = { path = "../client/cli" } @@ -94,7 +94,7 @@ tempfile = "3.3.0" tokio = { version = "1.21.1", features = ["macros", "time", "parking_lot"] } wait-timeout = "0.2" # purge_chain_works works with rococo-local and needs to allow this -polkadot-cli = { git = "https://github.com/paritytech/polkadot", features = ["rococo-native"] , branch = "ao-recovery-try-connect" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master", features = ["rococo-native"] } [features] default = [] diff --git a/primitives/core/Cargo.toml b/primitives/core/Cargo.toml index 8d3febecf63..9a67cac16c5 100644 --- a/primitives/core/Cargo.toml +++ b/primitives/core/Cargo.toml @@ -14,9 +14,9 @@ sp-std = { git = "https://github.com/paritytech/substrate", default-features = f sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } [features] default = [ "std" ] diff --git a/primitives/utility/Cargo.toml b/primitives/utility/Cargo.toml index 4f9637a0f22..6278025e1db 100644 --- a/primitives/utility/Cargo.toml +++ b/primitives/utility/Cargo.toml @@ -14,9 +14,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus diff --git a/test/client/Cargo.toml b/test/client/Cargo.toml index aa69c3ba256..490730b7519 100644 --- a/test/client/Cargo.toml +++ b/test/client/Cargo.toml @@ -27,8 +27,8 @@ pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-test-runtime = { path = "../runtime" } diff --git a/test/relay-sproof-builder/Cargo.toml b/test/relay-sproof-builder/Cargo.toml index ca5cca6f547..32e12ee25cc 100644 --- a/test/relay-sproof-builder/Cargo.toml +++ b/test/relay-sproof-builder/Cargo.toml @@ -13,7 +13,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", default-fe sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core", default-features = false } diff --git a/test/relay-validation-worker-provider/Cargo.toml b/test/relay-validation-worker-provider/Cargo.toml index b11b469a0a0..8d1be981559 100644 --- a/test/relay-validation-worker-provider/Cargo.toml +++ b/test/relay-validation-worker-provider/Cargo.toml @@ -8,7 +8,7 @@ build = "build.rs" [dependencies] # Polkadot -polkadot-node-core-pvf = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-core-pvf = { git = "https://github.com/paritytech/polkadot", branch = "master" } [build-dependencies] toml = "0.5.9" diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index 8897db20543..8d9c9c04fa7 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -50,10 +50,10 @@ substrate-test-client = { git = "https://github.com/paritytech/substrate", branc sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-client-cli = { path = "../../client/cli" } @@ -75,7 +75,7 @@ futures = "0.3.24" portpicker = "0.1.1" # Polkadot dependencies -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Substrate dependencies sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } From 3f4a571f1ed4525ee79f6affd248f9d5615c0473 Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 7 Oct 2022 18:05:57 +0200 Subject: [PATCH 19/40] zombienet/pov-recovery: 4 validators --- zombienet_tests/0002-pov_recovery.feature | 13 +++++--- zombienet_tests/0002-pov_recovery.toml | 38 ++++++++++------------- 2 files changed, 25 insertions(+), 26 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.feature b/zombienet_tests/0002-pov_recovery.feature index fa9836e264b..9b9daa18316 100644 --- a/zombienet_tests/0002-pov_recovery.feature +++ b/zombienet_tests/0002-pov_recovery.feature @@ -3,11 +3,14 @@ Network: ./0002-pov_recovery.toml Creds: config +validator-0: is up +validator-1: is up +validator-2: is up +validator-3: is up alice: is up bob: is up charlie: is up -dave: is up -eve: is up -alice: parachain 2000 is registered within 225 seconds -dave: reports block height is at least 7 within 250 seconds -eve: reports block height is at least 7 within 250 seconds +validator-0: parachain 2000 is registered within 225 seconds +bob: reports block height is at least 7 within 250 seconds +alice: reports block height is at least 7 within 250 seconds +charlie: reports block height is at least 7 within 250 seconds diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index 56ef55ec8e3..ff39c828ce5 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -5,40 +5,36 @@ default_args = [ "-lparachain=debug" ] chain = "rococo-local" - [[relaychain.nodes]] - name = "alice" - validator = true - - [[relaychain.nodes]] - name = "bob" - validator = true + [[relaychain.node_groups]] + name = "validator" + count = 4 [[parachains]] id = 2000 cumulus_based = true - # run charlie as parachain collator + # run alice as a parachain collator who does not produce blocks + # alice is a bootnode for bob and charlie [[parachains.collators]] - name = "charlie" - validator = true + name = "alice" + validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lcumulus-pov-recovery=debug", "--disable-block-announcements"] + args = ["-lcumulus-pov-recovery=debug", "--use-null-consensus", "--disable-block-announcements"] - # Run dave as parachain collator and eve as parachain full node - # - # They will need to recover the pov blocks through availability recovery. + # run bob as a parachain collator who is the only one producing blocks + # alice and charlie will need to recover the pov blocks through availability recovery [[parachains.collators]] - name = "dave" - validator = true + name = "bob" + validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lcumulus-pov-recovery=debug", "--use-null-consensus", "--disable-block-announcements"] + args = ["-lcumulus-pov-recovery=debug", "--disable-block-announcements"] - # run eve as parachain full node + # run eve as a parachain full node [[parachains.collators]] - name = "eve" - validator = false + name = "charlie" + validator = false # full node image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lcumulus-pov-recovery=debug,parachain=debug,sub-libp2p=debug", "--use-null-consensus", "--disable-block-announcements"] + args = ["-lcumulus-pov-recovery=debug,parachain=debug,sub-libp2p=debug", "--disable-block-announcements"] From 3cc918220de5bf8ca5368586e55556464d106afd Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 7 Oct 2022 18:31:55 +0200 Subject: [PATCH 20/40] REVERTME: diener update --polkadot --branch ao-recovery-try-connect && cargo update -p polkadot-primitives --- Cargo.lock | 484 +++++++++--------- client/collator/Cargo.toml | 10 +- client/consensus/common/Cargo.toml | 2 +- client/network/Cargo.toml | 12 +- client/pov-recovery/Cargo.toml | 8 +- .../Cargo.toml | 10 +- client/relay-chain-interface/Cargo.toml | 4 +- client/relay-chain-rpc-interface/Cargo.toml | 2 +- client/service/Cargo.toml | 2 +- pallets/dmp-queue/Cargo.toml | 2 +- pallets/parachain-system/Cargo.toml | 2 +- pallets/solo-to-para/Cargo.toml | 2 +- pallets/xcm/Cargo.toml | 2 +- pallets/xcmp-queue/Cargo.toml | 6 +- parachain-template/node/Cargo.toml | 8 +- parachain-template/runtime/Cargo.toml | 12 +- parachains/common/Cargo.toml | 6 +- parachains/pallets/ping/Cargo.toml | 2 +- .../runtimes/assets/statemine/Cargo.toml | 18 +- .../runtimes/assets/statemint/Cargo.toml | 18 +- .../runtimes/assets/westmint/Cargo.toml | 18 +- .../collectives-polkadot/Cargo.toml | 16 +- .../contracts/contracts-rococo/Cargo.toml | 16 +- parachains/runtimes/starters/shell/Cargo.toml | 6 +- parachains/runtimes/testing/penpal/Cargo.toml | 14 +- .../testing/rococo-parachain/Cargo.toml | 10 +- polkadot-parachain/Cargo.toml | 10 +- primitives/core/Cargo.toml | 6 +- primitives/utility/Cargo.toml | 6 +- test/client/Cargo.toml | 4 +- test/relay-sproof-builder/Cargo.toml | 2 +- .../Cargo.toml | 2 +- test/service/Cargo.toml | 10 +- 33 files changed, 367 insertions(+), 365 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be498e906c8..cf052b36ec9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "beefy-primitives", "sp-api", @@ -536,13 +536,15 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "scale-info", "sp-api", "sp-application-crypto", "sp-core", + "sp-io", + "sp-mmr-primitives", "sp-runtime", "sp-std", ] @@ -2747,7 +2749,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", ] @@ -2764,7 +2766,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-support", "frame-system", @@ -2787,7 +2789,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "Inflector", "array-bytes", @@ -2838,7 +2840,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2849,7 +2851,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2865,7 +2867,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-support", "frame-system", @@ -2894,7 +2896,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "bitflags", "frame-metadata", @@ -2926,7 +2928,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "Inflector", "cfg-expr", @@ -2940,7 +2942,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2952,7 +2954,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "proc-macro2", "quote", @@ -2962,7 +2964,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-support", "log", @@ -2980,7 +2982,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -2995,7 +2997,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "sp-api", @@ -3004,7 +3006,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-support", "parity-scale-codec", @@ -3871,7 +3873,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-primitives", "bitvec", @@ -3969,7 +3971,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "polkadot-primitives", @@ -5420,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-support", "frame-system", @@ -5436,7 +5438,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-support", "frame-system", @@ -5451,7 +5453,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -5475,7 +5477,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5495,7 +5497,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -5510,7 +5512,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "beefy-primitives", "frame-support", @@ -5526,7 +5528,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5549,7 +5551,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -5567,7 +5569,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -5611,7 +5613,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -5679,7 +5681,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5696,7 +5698,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -5714,7 +5716,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5738,7 +5740,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5751,7 +5753,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -5769,7 +5771,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5790,7 +5792,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -5805,7 +5807,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -5828,7 +5830,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5844,7 +5846,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -5864,7 +5866,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -5881,7 +5883,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -5898,7 +5900,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5916,7 +5918,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5931,7 +5933,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -5947,7 +5949,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-support", "frame-system", @@ -5964,7 +5966,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5984,7 +5986,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "sp-api", @@ -5994,7 +5996,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-support", "frame-system", @@ -6011,7 +6013,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6034,7 +6036,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -6051,7 +6053,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -6080,7 +6082,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -6098,7 +6100,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -6113,7 +6115,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6131,7 +6133,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -6147,7 +6149,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-support", "frame-system", @@ -6168,7 +6170,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -6184,7 +6186,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-support", "frame-system", @@ -6198,7 +6200,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6221,7 +6223,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6232,7 +6234,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "log", "sp-arithmetic", @@ -6241,7 +6243,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-support", "frame-system", @@ -6270,7 +6272,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -6288,7 +6290,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -6307,7 +6309,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-support", "frame-system", @@ -6323,7 +6325,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6338,7 +6340,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6349,7 +6351,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -6381,7 +6383,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -6397,7 +6399,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -6412,7 +6414,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-benchmarking", "frame-support", @@ -6427,7 +6429,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "frame-system", @@ -6445,7 +6447,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6908,18 +6910,18 @@ dependencies = [ [[package]] name = "pin-project" -version = "1.0.10" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e" +checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.0.10" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb" +checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" dependencies = [ "proc-macro2", "quote", @@ -6998,7 +7000,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7013,7 +7015,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7027,7 +7029,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "derive_more", "fatality", @@ -7050,7 +7052,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "fatality", "futures", @@ -7071,7 +7073,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7097,7 +7099,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7138,7 +7140,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "always-assert", "bitvec", @@ -7160,7 +7162,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7173,7 +7175,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "derive_more", "fatality", @@ -7198,7 +7200,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7212,7 +7214,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "futures-timer", @@ -7232,7 +7234,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "always-assert", "async-trait", @@ -7256,7 +7258,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "parity-scale-codec", @@ -7274,7 +7276,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bitvec", "derive_more", @@ -7303,7 +7305,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bitvec", "futures", @@ -7323,7 +7325,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bitvec", "fatality", @@ -7342,7 +7344,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7357,7 +7359,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "futures", @@ -7375,7 +7377,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7390,7 +7392,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "futures-timer", @@ -7407,7 +7409,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "fatality", "futures", @@ -7426,7 +7428,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "futures", @@ -7443,7 +7445,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bitvec", "fatality", @@ -7461,7 +7463,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "always-assert", "assert_matches", @@ -7493,7 +7495,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "polkadot-node-primitives", @@ -7509,7 +7511,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "futures", "memory-lru", @@ -7525,7 +7527,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-std", "lazy_static", @@ -7543,7 +7545,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bs58", "futures", @@ -7562,7 +7564,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "derive_more", @@ -7585,7 +7587,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bounded-vec", "futures", @@ -7607,7 +7609,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7617,7 +7619,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "futures", @@ -7635,7 +7637,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "derive_more", @@ -7658,7 +7660,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "derive_more", @@ -7691,7 +7693,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "futures", @@ -7714,7 +7716,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "derive_more", "frame-support", @@ -7811,7 +7813,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7826,7 +7828,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bitvec", "frame-system", @@ -7856,7 +7858,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7888,7 +7890,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-primitives", "bitvec", @@ -7977,7 +7979,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-primitives", "bitvec", @@ -8024,7 +8026,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "polkadot-primitives", @@ -8036,7 +8038,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bs58", "parity-scale-codec", @@ -8048,7 +8050,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "bitflags", "bitvec", @@ -8091,7 +8093,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "async-trait", "beefy-gadget", @@ -8196,7 +8198,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8217,7 +8219,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8227,7 +8229,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8252,7 +8254,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-primitives", "bitvec", @@ -8313,7 +8315,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-benchmarking", "frame-system", @@ -8944,7 +8946,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9063,7 +9065,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9147,7 +9149,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "polkadot-primitives", @@ -9317,7 +9319,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "log", "sp-core", @@ -9328,7 +9330,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "async-trait", "futures", @@ -9355,7 +9357,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "futures", "futures-timer", @@ -9378,7 +9380,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9394,7 +9396,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9411,7 +9413,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9422,7 +9424,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "array-bytes", "chrono", @@ -9462,7 +9464,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "fnv", "futures", @@ -9490,7 +9492,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "hash-db", "kvdb", @@ -9515,7 +9517,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "async-trait", "futures", @@ -9568,7 +9570,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "async-trait", "fork-tree", @@ -9610,7 +9612,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "futures", "jsonrpsee", @@ -9632,7 +9634,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9645,7 +9647,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "async-trait", "futures", @@ -9669,7 +9671,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9696,7 +9698,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "environmental", "parity-scale-codec", @@ -9712,7 +9714,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "log", "parity-scale-codec", @@ -9727,7 +9729,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9747,7 +9749,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "ahash", "array-bytes", @@ -9788,7 +9790,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "finality-grandpa", "futures", @@ -9809,7 +9811,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "ansi_term", "futures", @@ -9826,7 +9828,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "array-bytes", "async-trait", @@ -9841,7 +9843,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "array-bytes", "async-trait", @@ -9888,7 +9890,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "cid", "futures", @@ -9908,7 +9910,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "async-trait", "bitflags", @@ -9934,7 +9936,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "ahash", "futures", @@ -9952,7 +9954,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "array-bytes", "futures", @@ -9973,7 +9975,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "array-bytes", "fork-tree", @@ -10001,7 +10003,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "array-bytes", "futures", @@ -10020,7 +10022,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "array-bytes", "bytes", @@ -10050,7 +10052,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "futures", "libp2p", @@ -10063,7 +10065,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10072,7 +10074,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "futures", "hash-db", @@ -10102,7 +10104,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "futures", "jsonrpsee", @@ -10125,7 +10127,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "futures", "jsonrpsee", @@ -10138,7 +10140,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "async-trait", "directories", @@ -10208,7 +10210,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "log", "parity-scale-codec", @@ -10222,7 +10224,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10241,7 +10243,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "futures", "libc", @@ -10260,7 +10262,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "chrono", "futures", @@ -10278,7 +10280,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "ansi_term", "atty", @@ -10309,7 +10311,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10320,7 +10322,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "futures", "futures-timer", @@ -10346,7 +10348,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "futures", "log", @@ -10359,7 +10361,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "futures", "futures-timer", @@ -10789,7 +10791,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "enumn", "parity-scale-codec", @@ -10865,7 +10867,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "hash-db", "log", @@ -10883,7 +10885,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "blake2", "proc-macro-crate", @@ -10895,7 +10897,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "scale-info", @@ -10908,7 +10910,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "integer-sqrt", "num-traits", @@ -10923,7 +10925,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "scale-info", @@ -10936,7 +10938,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "async-trait", "parity-scale-codec", @@ -10948,7 +10950,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "sp-api", @@ -10960,7 +10962,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "futures", "log", @@ -10978,7 +10980,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "async-trait", "futures", @@ -11015,7 +11017,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "async-trait", "merlin", @@ -11038,7 +11040,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "scale-info", @@ -11052,7 +11054,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "scale-info", @@ -11065,7 +11067,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "array-bytes", "base58", @@ -11111,7 +11113,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "blake2", "byteorder", @@ -11125,7 +11127,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "proc-macro2", "quote", @@ -11136,7 +11138,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11145,7 +11147,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "proc-macro2", "quote", @@ -11155,7 +11157,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "environmental", "parity-scale-codec", @@ -11166,7 +11168,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "finality-grandpa", "log", @@ -11184,7 +11186,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11198,7 +11200,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "bytes", "futures", @@ -11224,7 +11226,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "lazy_static", "sp-core", @@ -11235,7 +11237,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "async-trait", "futures", @@ -11252,7 +11254,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "thiserror", "zstd", @@ -11261,7 +11263,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "log", "parity-scale-codec", @@ -11277,7 +11279,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "scale-info", @@ -11291,7 +11293,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "sp-api", "sp-core", @@ -11301,7 +11303,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "backtrace", "lazy_static", @@ -11311,7 +11313,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "rustc-hash", "serde", @@ -11321,7 +11323,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "either", "hash256-std-hasher", @@ -11344,7 +11346,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11362,7 +11364,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "Inflector", "proc-macro-crate", @@ -11374,7 +11376,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "log", "parity-scale-codec", @@ -11397,7 +11399,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "scale-info", @@ -11411,7 +11413,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "scale-info", @@ -11422,7 +11424,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "hash-db", "log", @@ -11444,12 +11446,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11462,7 +11464,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "log", "sp-core", @@ -11475,7 +11477,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "async-trait", "futures-timer", @@ -11491,7 +11493,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "sp-std", @@ -11503,7 +11505,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "sp-api", "sp-runtime", @@ -11512,7 +11514,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "async-trait", "log", @@ -11528,7 +11530,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "ahash", "hash-db", @@ -11551,7 +11553,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11568,7 +11570,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11579,7 +11581,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "impl-trait-for-tuples", "log", @@ -11592,7 +11594,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11888,7 +11890,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "platforms", ] @@ -11896,7 +11898,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11917,7 +11919,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "futures-util", "hyper", @@ -11930,7 +11932,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "jsonrpsee", "log", @@ -11951,7 +11953,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "array-bytes", "async-trait", @@ -11998,7 +12000,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "ansi_term", "build-helper", @@ -12106,7 +12108,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "polkadot-primitives", @@ -12387,7 +12389,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12398,7 +12400,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12525,7 +12527,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" dependencies = [ "clap", "frame-try-runtime", @@ -13113,7 +13115,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "beefy-primitives", "bitvec", @@ -13203,7 +13205,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "polkadot-primitives", @@ -13486,7 +13488,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13500,7 +13502,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-support", "frame-system", @@ -13520,7 +13522,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "frame-benchmarking", "frame-support", @@ -13538,7 +13540,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" dependencies = [ "Inflector", "proc-macro2", diff --git a/client/collator/Cargo.toml b/client/collator/Cargo.toml index b8e05fd37c5..100f2622a85 100644 --- a/client/collator/Cargo.toml +++ b/client/collator/Cargo.toml @@ -18,10 +18,10 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-client-consensus-common = { path = "../consensus/common" } @@ -37,7 +37,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = " sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-test-client = { path = "../../test/client" } diff --git a/client/consensus/common/Cargo.toml b/client/consensus/common/Cargo.toml index 42fa2fb53b2..1f42ce25537 100644 --- a/client/consensus/common/Cargo.toml +++ b/client/consensus/common/Cargo.toml @@ -21,7 +21,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-relay-chain-interface = { path = "../../relay-chain-interface" } diff --git a/client/network/Cargo.toml b/client/network/Cargo.toml index 76b75fbd575..b2546823940 100644 --- a/client/network/Cargo.toml +++ b/client/network/Cargo.toml @@ -22,9 +22,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-relay-chain-interface = { path = "../relay-chain-interface" } @@ -44,9 +44,9 @@ sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "maste substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core" } diff --git a/client/pov-recovery/Cargo.toml b/client/pov-recovery/Cargo.toml index 5bc5adc87da..2558bdc2465 100644 --- a/client/pov-recovery/Cargo.toml +++ b/client/pov-recovery/Cargo.toml @@ -20,10 +20,10 @@ sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", br sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core" } diff --git a/client/relay-chain-inprocess-interface/Cargo.toml b/client/relay-chain-inprocess-interface/Cargo.toml index e2c38c87de7..97bd2b47a17 100644 --- a/client/relay-chain-inprocess-interface/Cargo.toml +++ b/client/relay-chain-inprocess-interface/Cargo.toml @@ -22,9 +22,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, features = ["cli"] } -polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", default-features = false, features = ["cli"] , branch = "ao-recovery-try-connect" } +polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core" } @@ -36,5 +36,5 @@ cumulus-relay-chain-interface = { path = "../relay-chain-interface" } sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } diff --git a/client/relay-chain-interface/Cargo.toml b/client/relay-chain-interface/Cargo.toml index a6ba721fbeb..bfca55b31a5 100644 --- a/client/relay-chain-interface/Cargo.toml +++ b/client/relay-chain-interface/Cargo.toml @@ -5,8 +5,8 @@ version = "0.1.0" edition = "2021" [dependencies] -polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } cumulus-primitives-core = { path = "../../primitives/core" } diff --git a/client/relay-chain-rpc-interface/Cargo.toml b/client/relay-chain-rpc-interface/Cargo.toml index fe2f9570100..e2c217f7e3a 100644 --- a/client/relay-chain-rpc-interface/Cargo.toml +++ b/client/relay-chain-rpc-interface/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } cumulus-primitives-core = { path = "../../primitives/core" } cumulus-relay-chain-interface = { path = "../relay-chain-interface" } diff --git a/client/service/Cargo.toml b/client/service/Cargo.toml index e705364a1c8..aa3a3eb39d1 100644 --- a/client/service/Cargo.toml +++ b/client/service/Cargo.toml @@ -18,7 +18,7 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-client-cli = { path = "../cli" } diff --git a/pallets/dmp-queue/Cargo.toml b/pallets/dmp-queue/Cargo.toml index 5f423e84fc3..01fc946098d 100644 --- a/pallets/dmp-queue/Cargo.toml +++ b/pallets/dmp-queue/Cargo.toml @@ -16,7 +16,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core", default-features = false } diff --git a/pallets/parachain-system/Cargo.toml b/pallets/parachain-system/Cargo.toml index 8b203135610..d7889b55e73 100644 --- a/pallets/parachain-system/Cargo.toml +++ b/pallets/parachain-system/Cargo.toml @@ -27,7 +27,7 @@ sp-trie = { git = "https://github.com/paritytech/substrate", default-features = sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, features = [ "wasm-api" ], branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, features = [ "wasm-api" ], branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-parachain-system-proc-macro = { path = "proc-macro", default-features = false } diff --git a/pallets/solo-to-para/Cargo.toml b/pallets/solo-to-para/Cargo.toml index 090ea3660d1..a2d7d6d5b61 100644 --- a/pallets/solo-to-para/Cargo.toml +++ b/pallets/solo-to-para/Cargo.toml @@ -17,7 +17,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-parachain-system = { default-features = false, path = "../parachain-system" } diff --git a/pallets/xcm/Cargo.toml b/pallets/xcm/Cargo.toml index c90a3fd8245..a9323c419a4 100644 --- a/pallets/xcm/Cargo.toml +++ b/pallets/xcm/Cargo.toml @@ -14,7 +14,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } cumulus-primitives-core = { path = "../../primitives/core", default-features = false } diff --git a/pallets/xcmp-queue/Cargo.toml b/pallets/xcmp-queue/Cargo.toml index 8c7aef6a354..6e7b6157600 100644 --- a/pallets/xcmp-queue/Cargo.toml +++ b/pallets/xcmp-queue/Cargo.toml @@ -17,8 +17,8 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core", default-features = false } @@ -34,7 +34,7 @@ sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-parachain-system = { path = "../parachain-system" } diff --git a/parachain-template/node/Cargo.toml b/parachain-template/node/Cargo.toml index a1b1408936e..5492e775cc4 100644 --- a/parachain-template/node/Cargo.toml +++ b/parachain-template/node/Cargo.toml @@ -54,10 +54,10 @@ substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-client-cli = { path = "../../client/cli" } diff --git a/parachain-template/runtime/Cargo.toml b/parachain-template/runtime/Cargo.toml index 5e9b88e2f17..b2ac03cfeaf 100644 --- a/parachain-template/runtime/Cargo.toml +++ b/parachain-template/runtime/Cargo.toml @@ -53,12 +53,12 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../pallets/aura-ext", default-features = false } diff --git a/parachains/common/Cargo.toml b/parachains/common/Cargo.toml index 300f8683d87..a9f1339c29c 100644 --- a/parachains/common/Cargo.toml +++ b/parachains/common/Cargo.toml @@ -26,9 +26,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus pallet-collator-selection = { path = "../../pallets/collator-selection", default-features = false } diff --git a/parachains/pallets/ping/Cargo.toml b/parachains/pallets/ping/Cargo.toml index 544a43ebceb..edaf9bb217e 100644 --- a/parachains/pallets/ping/Cargo.toml +++ b/parachains/pallets/ping/Cargo.toml @@ -13,7 +13,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } cumulus-primitives-core = { path = "../../../primitives/core", default-features = false } cumulus-pallet-xcm = { path = "../../../pallets/xcm", default-features = false } diff --git a/parachains/runtimes/assets/statemine/Cargo.toml b/parachains/runtimes/assets/statemine/Cargo.toml index 7c47a42a4fe..1f45a58e5b0 100644 --- a/parachains/runtimes/assets/statemine/Cargo.toml +++ b/parachains/runtimes/assets/statemine/Cargo.toml @@ -46,14 +46,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } @@ -68,7 +68,7 @@ cumulus-primitives-utility = { path = "../../../../primitives/utility", default- pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false } parachain-info = { path = "../../../pallets/parachain-info", default-features = false } parachains-common = { path = "../../../common", default-features = false } -pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, optional = true } +pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", default-features = false, optional = true , branch = "ao-recovery-try-connect" } [dev-dependencies] diff --git a/parachains/runtimes/assets/statemint/Cargo.toml b/parachains/runtimes/assets/statemint/Cargo.toml index 127bba217ac..2a8638dee16 100644 --- a/parachains/runtimes/assets/statemint/Cargo.toml +++ b/parachains/runtimes/assets/statemint/Cargo.toml @@ -46,14 +46,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } @@ -68,7 +68,7 @@ cumulus-primitives-utility = { path = "../../../../primitives/utility", default- pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false } parachain-info = { path = "../../../pallets/parachain-info", default-features = false } parachains-common = { path = "../../../common", default-features = false } -pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, optional = true } +pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", default-features = false, optional = true , branch = "ao-recovery-try-connect" } [dev-dependencies] hex-literal = "0.3.4" diff --git a/parachains/runtimes/assets/westmint/Cargo.toml b/parachains/runtimes/assets/westmint/Cargo.toml index b8b06231155..96e33c0a689 100644 --- a/parachains/runtimes/assets/westmint/Cargo.toml +++ b/parachains/runtimes/assets/westmint/Cargo.toml @@ -46,14 +46,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -westend-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +westend-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } @@ -68,7 +68,7 @@ cumulus-primitives-utility = { path = "../../../../primitives/utility", default- pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false } parachain-info = { path = "../../../pallets/parachain-info", default-features = false } parachains-common = { path = "../../../common", default-features = false } -pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, optional = true } +pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", default-features = false, optional = true , branch = "ao-recovery-try-connect" } [dev-dependencies] hex-literal = "0.3.4" diff --git a/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml b/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml index 4a6939b7c0f..75f1e74733d 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml +++ b/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml @@ -45,14 +45,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml index 4bd3715fe49..5435ec03041 100644 --- a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml +++ b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml @@ -51,14 +51,14 @@ pallet-contracts = { git = "https://github.com/paritytech/substrate", default-fe pallet-contracts-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/parachains/runtimes/starters/shell/Cargo.toml b/parachains/runtimes/starters/shell/Cargo.toml index 2588990a382..ae165a30919 100644 --- a/parachains/runtimes/starters/shell/Cargo.toml +++ b/parachains/runtimes/starters/shell/Cargo.toml @@ -25,9 +25,9 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false } diff --git a/parachains/runtimes/testing/penpal/Cargo.toml b/parachains/runtimes/testing/penpal/Cargo.toml index 7aa20c46320..e2cf3aee412 100644 --- a/parachains/runtimes/testing/penpal/Cargo.toml +++ b/parachains/runtimes/testing/penpal/Cargo.toml @@ -52,13 +52,13 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/parachains/runtimes/testing/rococo-parachain/Cargo.toml b/parachains/runtimes/testing/rococo-parachain/Cargo.toml index d16847a8cd3..0444a13c92f 100644 --- a/parachains/runtimes/testing/rococo-parachain/Cargo.toml +++ b/parachains/runtimes/testing/rococo-parachain/Cargo.toml @@ -34,11 +34,11 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/polkadot-parachain/Cargo.toml b/polkadot-parachain/Cargo.toml index 68b5830bd0c..f4a97598a59 100644 --- a/polkadot-parachain/Cargo.toml +++ b/polkadot-parachain/Cargo.toml @@ -66,10 +66,10 @@ frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://gith pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-client-cli = { path = "../client/cli" } @@ -94,7 +94,7 @@ tempfile = "3.3.0" tokio = { version = "1.21.1", features = ["macros", "time", "parking_lot"] } wait-timeout = "0.2" # purge_chain_works works with rococo-local and needs to allow this -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master", features = ["rococo-native"] } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", features = ["rococo-native"] , branch = "ao-recovery-try-connect" } [features] default = [] diff --git a/primitives/core/Cargo.toml b/primitives/core/Cargo.toml index 9a67cac16c5..8d3febecf63 100644 --- a/primitives/core/Cargo.toml +++ b/primitives/core/Cargo.toml @@ -14,9 +14,9 @@ sp-std = { git = "https://github.com/paritytech/substrate", default-features = f sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } [features] default = [ "std" ] diff --git a/primitives/utility/Cargo.toml b/primitives/utility/Cargo.toml index 6278025e1db..4f9637a0f22 100644 --- a/primitives/utility/Cargo.toml +++ b/primitives/utility/Cargo.toml @@ -14,9 +14,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus diff --git a/test/client/Cargo.toml b/test/client/Cargo.toml index 490730b7519..aa69c3ba256 100644 --- a/test/client/Cargo.toml +++ b/test/client/Cargo.toml @@ -27,8 +27,8 @@ pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-test-runtime = { path = "../runtime" } diff --git a/test/relay-sproof-builder/Cargo.toml b/test/relay-sproof-builder/Cargo.toml index 32e12ee25cc..ca5cca6f547 100644 --- a/test/relay-sproof-builder/Cargo.toml +++ b/test/relay-sproof-builder/Cargo.toml @@ -13,7 +13,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", default-fe sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core", default-features = false } diff --git a/test/relay-validation-worker-provider/Cargo.toml b/test/relay-validation-worker-provider/Cargo.toml index 8d1be981559..b11b469a0a0 100644 --- a/test/relay-validation-worker-provider/Cargo.toml +++ b/test/relay-validation-worker-provider/Cargo.toml @@ -8,7 +8,7 @@ build = "build.rs" [dependencies] # Polkadot -polkadot-node-core-pvf = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-core-pvf = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } [build-dependencies] toml = "0.5.9" diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index 8d9c9c04fa7..8897db20543 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -50,10 +50,10 @@ substrate-test-client = { git = "https://github.com/paritytech/substrate", branc sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Cumulus cumulus-client-cli = { path = "../../client/cli" } @@ -75,7 +75,7 @@ futures = "0.3.24" portpicker = "0.1.1" # Polkadot dependencies -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } # Substrate dependencies sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } From 8896d8218afa1f53efe0d1b439e1c3f39a041d86 Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 7 Oct 2022 22:21:51 +0200 Subject: [PATCH 21/40] Revert "REVERTME: diener update --polkadot --branch ao-recovery-try-connect && cargo update -p polkadot-primitives" This reverts commit 3cc918220de5bf8ca5368586e55556464d106afd. --- Cargo.lock | 484 +++++++++--------- client/collator/Cargo.toml | 10 +- client/consensus/common/Cargo.toml | 2 +- client/network/Cargo.toml | 12 +- client/pov-recovery/Cargo.toml | 8 +- .../Cargo.toml | 10 +- client/relay-chain-interface/Cargo.toml | 4 +- client/relay-chain-rpc-interface/Cargo.toml | 2 +- client/service/Cargo.toml | 2 +- pallets/dmp-queue/Cargo.toml | 2 +- pallets/parachain-system/Cargo.toml | 2 +- pallets/solo-to-para/Cargo.toml | 2 +- pallets/xcm/Cargo.toml | 2 +- pallets/xcmp-queue/Cargo.toml | 6 +- parachain-template/node/Cargo.toml | 8 +- parachain-template/runtime/Cargo.toml | 12 +- parachains/common/Cargo.toml | 6 +- parachains/pallets/ping/Cargo.toml | 2 +- .../runtimes/assets/statemine/Cargo.toml | 18 +- .../runtimes/assets/statemint/Cargo.toml | 18 +- .../runtimes/assets/westmint/Cargo.toml | 18 +- .../collectives-polkadot/Cargo.toml | 16 +- .../contracts/contracts-rococo/Cargo.toml | 16 +- parachains/runtimes/starters/shell/Cargo.toml | 6 +- parachains/runtimes/testing/penpal/Cargo.toml | 14 +- .../testing/rococo-parachain/Cargo.toml | 10 +- polkadot-parachain/Cargo.toml | 10 +- primitives/core/Cargo.toml | 6 +- primitives/utility/Cargo.toml | 6 +- test/client/Cargo.toml | 4 +- test/relay-sproof-builder/Cargo.toml | 2 +- .../Cargo.toml | 2 +- test/service/Cargo.toml | 10 +- 33 files changed, 365 insertions(+), 367 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cf052b36ec9..be498e906c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "beefy-primitives", "sp-api", @@ -536,15 +536,13 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", "sp-api", "sp-application-crypto", "sp-core", - "sp-io", - "sp-mmr-primitives", "sp-runtime", "sp-std", ] @@ -2749,7 +2747,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", ] @@ -2766,7 +2764,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -2789,7 +2787,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "Inflector", "array-bytes", @@ -2840,7 +2838,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2851,7 +2849,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2867,7 +2865,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -2896,7 +2894,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "bitflags", "frame-metadata", @@ -2928,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "Inflector", "cfg-expr", @@ -2942,7 +2940,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2954,7 +2952,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro2", "quote", @@ -2964,7 +2962,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "log", @@ -2982,7 +2980,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -2997,7 +2995,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sp-api", @@ -3006,7 +3004,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "parity-scale-codec", @@ -3873,7 +3871,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -3971,7 +3969,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -5422,7 +5420,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -5438,7 +5436,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -5453,7 +5451,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5477,7 +5475,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5497,7 +5495,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5512,7 +5510,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "beefy-primitives", "frame-support", @@ -5528,7 +5526,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5551,7 +5549,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5569,7 +5567,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5613,7 +5611,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5681,7 +5679,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5698,7 +5696,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5716,7 +5714,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5740,7 +5738,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5753,7 +5751,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5771,7 +5769,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5792,7 +5790,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5807,7 +5805,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5830,7 +5828,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5846,7 +5844,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5866,7 +5864,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5883,7 +5881,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5900,7 +5898,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5918,7 +5916,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5933,7 +5931,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5949,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -5966,7 +5964,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5986,7 +5984,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sp-api", @@ -5996,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6013,7 +6011,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6036,7 +6034,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6053,7 +6051,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6082,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6100,7 +6098,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6115,7 +6113,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6133,7 +6131,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6149,7 +6147,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6170,7 +6168,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6186,7 +6184,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6200,7 +6198,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6223,7 +6221,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6234,7 +6232,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "sp-arithmetic", @@ -6243,7 +6241,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6272,7 +6270,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6290,7 +6288,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6309,7 +6307,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6325,7 +6323,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6340,7 +6338,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6351,7 +6349,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6383,7 +6381,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6399,7 +6397,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6414,7 +6412,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6429,7 +6427,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "frame-system", @@ -6447,7 +6445,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6910,18 +6908,18 @@ dependencies = [ [[package]] name = "pin-project" -version = "1.0.12" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" +checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.0.12" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" +checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb" dependencies = [ "proc-macro2", "quote", @@ -7000,7 +6998,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7015,7 +7013,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7029,7 +7027,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "derive_more", "fatality", @@ -7052,7 +7050,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "fatality", "futures", @@ -7073,7 +7071,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7099,7 +7097,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7140,7 +7138,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "always-assert", "bitvec", @@ -7162,7 +7160,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7175,7 +7173,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "derive_more", "fatality", @@ -7200,7 +7198,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7214,7 +7212,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "futures-timer", @@ -7234,7 +7232,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "always-assert", "async-trait", @@ -7258,7 +7256,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "parity-scale-codec", @@ -7276,7 +7274,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "derive_more", @@ -7305,7 +7303,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "futures", @@ -7325,7 +7323,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "fatality", @@ -7344,7 +7342,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7359,7 +7357,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "futures", @@ -7377,7 +7375,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7392,7 +7390,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "futures-timer", @@ -7409,7 +7407,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "fatality", "futures", @@ -7428,7 +7426,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "futures", @@ -7445,7 +7443,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "fatality", @@ -7463,7 +7461,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "always-assert", "assert_matches", @@ -7495,7 +7493,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-primitives", @@ -7511,7 +7509,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "memory-lru", @@ -7527,7 +7525,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-std", "lazy_static", @@ -7545,7 +7543,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bs58", "futures", @@ -7564,7 +7562,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "derive_more", @@ -7587,7 +7585,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bounded-vec", "futures", @@ -7609,7 +7607,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7619,7 +7617,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "futures", @@ -7637,7 +7635,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "derive_more", @@ -7660,7 +7658,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "derive_more", @@ -7693,7 +7691,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "futures", @@ -7716,7 +7714,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "derive_more", "frame-support", @@ -7813,7 +7811,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7828,7 +7826,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "frame-system", @@ -7858,7 +7856,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7890,7 +7888,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -7979,7 +7977,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -8026,7 +8024,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -8038,7 +8036,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bs58", "parity-scale-codec", @@ -8050,7 +8048,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitflags", "bitvec", @@ -8093,7 +8091,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "beefy-gadget", @@ -8198,7 +8196,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8219,7 +8217,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8229,7 +8227,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8254,7 +8252,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -8315,7 +8313,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-benchmarking", "frame-system", @@ -8946,7 +8944,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9065,7 +9063,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9149,7 +9147,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -9319,7 +9317,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "sp-core", @@ -9330,7 +9328,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -9357,7 +9355,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "futures-timer", @@ -9380,7 +9378,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9396,7 +9394,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9413,7 +9411,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9424,7 +9422,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "chrono", @@ -9464,7 +9462,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "fnv", "futures", @@ -9492,7 +9490,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "hash-db", "kvdb", @@ -9517,7 +9515,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -9570,7 +9568,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "fork-tree", @@ -9612,7 +9610,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "jsonrpsee", @@ -9634,7 +9632,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9647,7 +9645,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -9671,7 +9669,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9698,7 +9696,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "environmental", "parity-scale-codec", @@ -9714,7 +9712,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "parity-scale-codec", @@ -9729,7 +9727,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9749,7 +9747,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ahash", "array-bytes", @@ -9790,7 +9788,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "finality-grandpa", "futures", @@ -9811,7 +9809,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ansi_term", "futures", @@ -9828,7 +9826,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "async-trait", @@ -9843,7 +9841,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "async-trait", @@ -9890,7 +9888,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "cid", "futures", @@ -9910,7 +9908,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "bitflags", @@ -9936,7 +9934,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ahash", "futures", @@ -9954,7 +9952,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "futures", @@ -9975,7 +9973,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "fork-tree", @@ -10003,7 +10001,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "futures", @@ -10022,7 +10020,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "bytes", @@ -10052,7 +10050,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "libp2p", @@ -10065,7 +10063,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10074,7 +10072,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "hash-db", @@ -10104,7 +10102,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "jsonrpsee", @@ -10127,7 +10125,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "jsonrpsee", @@ -10140,7 +10138,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "directories", @@ -10210,7 +10208,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "parity-scale-codec", @@ -10224,7 +10222,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10243,7 +10241,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "libc", @@ -10262,7 +10260,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "chrono", "futures", @@ -10280,7 +10278,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ansi_term", "atty", @@ -10311,7 +10309,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10322,7 +10320,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "futures-timer", @@ -10348,7 +10346,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "log", @@ -10361,7 +10359,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "futures-timer", @@ -10791,7 +10789,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "enumn", "parity-scale-codec", @@ -10867,7 +10865,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "hash-db", "log", @@ -10885,7 +10883,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "blake2", "proc-macro-crate", @@ -10897,7 +10895,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -10910,7 +10908,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "integer-sqrt", "num-traits", @@ -10925,7 +10923,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -10938,7 +10936,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "parity-scale-codec", @@ -10950,7 +10948,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sp-api", @@ -10962,7 +10960,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "log", @@ -10980,7 +10978,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -11017,7 +11015,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "merlin", @@ -11040,7 +11038,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11054,7 +11052,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11067,7 +11065,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "base58", @@ -11113,7 +11111,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "blake2", "byteorder", @@ -11127,7 +11125,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro2", "quote", @@ -11138,7 +11136,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11147,7 +11145,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro2", "quote", @@ -11157,7 +11155,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "environmental", "parity-scale-codec", @@ -11168,7 +11166,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "finality-grandpa", "log", @@ -11186,7 +11184,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11200,7 +11198,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "bytes", "futures", @@ -11226,7 +11224,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "lazy_static", "sp-core", @@ -11237,7 +11235,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -11254,7 +11252,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "thiserror", "zstd", @@ -11263,7 +11261,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "parity-scale-codec", @@ -11279,7 +11277,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11293,7 +11291,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "sp-api", "sp-core", @@ -11303,7 +11301,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "backtrace", "lazy_static", @@ -11313,7 +11311,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "rustc-hash", "serde", @@ -11323,7 +11321,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "either", "hash256-std-hasher", @@ -11346,7 +11344,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11364,7 +11362,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "Inflector", "proc-macro-crate", @@ -11376,7 +11374,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "parity-scale-codec", @@ -11399,7 +11397,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11413,7 +11411,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11424,7 +11422,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "hash-db", "log", @@ -11446,12 +11444,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11464,7 +11462,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "sp-core", @@ -11477,7 +11475,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures-timer", @@ -11493,7 +11491,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sp-std", @@ -11505,7 +11503,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "sp-api", "sp-runtime", @@ -11514,7 +11512,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "log", @@ -11530,7 +11528,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ahash", "hash-db", @@ -11553,7 +11551,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11570,7 +11568,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11581,7 +11579,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-trait-for-tuples", "log", @@ -11594,7 +11592,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11890,7 +11888,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "platforms", ] @@ -11898,7 +11896,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11919,7 +11917,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures-util", "hyper", @@ -11932,7 +11930,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "jsonrpsee", "log", @@ -11953,7 +11951,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "async-trait", @@ -12000,7 +11998,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ansi_term", "build-helper", @@ -12108,7 +12106,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -12389,7 +12387,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12400,7 +12398,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12527,7 +12525,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#1a5cdc81c711bc3a7464f24ccd2e1ba20a5ea594" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "clap", "frame-try-runtime", @@ -13115,7 +13113,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -13205,7 +13203,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -13488,7 +13486,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13502,7 +13500,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "frame-system", @@ -13522,7 +13520,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-benchmarking", "frame-support", @@ -13540,7 +13538,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=ao-recovery-try-connect#8fd25322ffeb5da94287306a6557cf0ba2a46ae5" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "Inflector", "proc-macro2", diff --git a/client/collator/Cargo.toml b/client/collator/Cargo.toml index 100f2622a85..b8e05fd37c5 100644 --- a/client/collator/Cargo.toml +++ b/client/collator/Cargo.toml @@ -18,10 +18,10 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-client-consensus-common = { path = "../consensus/common" } @@ -37,7 +37,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = " sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-test-client = { path = "../../test/client" } diff --git a/client/consensus/common/Cargo.toml b/client/consensus/common/Cargo.toml index 1f42ce25537..42fa2fb53b2 100644 --- a/client/consensus/common/Cargo.toml +++ b/client/consensus/common/Cargo.toml @@ -21,7 +21,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-relay-chain-interface = { path = "../../relay-chain-interface" } diff --git a/client/network/Cargo.toml b/client/network/Cargo.toml index b2546823940..76b75fbd575 100644 --- a/client/network/Cargo.toml +++ b/client/network/Cargo.toml @@ -22,9 +22,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-relay-chain-interface = { path = "../relay-chain-interface" } @@ -44,9 +44,9 @@ sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "maste substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core" } diff --git a/client/pov-recovery/Cargo.toml b/client/pov-recovery/Cargo.toml index 2558bdc2465..5bc5adc87da 100644 --- a/client/pov-recovery/Cargo.toml +++ b/client/pov-recovery/Cargo.toml @@ -20,10 +20,10 @@ sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", br sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core" } diff --git a/client/relay-chain-inprocess-interface/Cargo.toml b/client/relay-chain-inprocess-interface/Cargo.toml index 97bd2b47a17..e2c38c87de7 100644 --- a/client/relay-chain-inprocess-interface/Cargo.toml +++ b/client/relay-chain-inprocess-interface/Cargo.toml @@ -22,9 +22,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot", default-features = false, features = ["cli"] , branch = "ao-recovery-try-connect" } -polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, features = ["cli"] } +polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core" } @@ -36,5 +36,5 @@ cumulus-relay-chain-interface = { path = "../relay-chain-interface" } sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } diff --git a/client/relay-chain-interface/Cargo.toml b/client/relay-chain-interface/Cargo.toml index bfca55b31a5..a6ba721fbeb 100644 --- a/client/relay-chain-interface/Cargo.toml +++ b/client/relay-chain-interface/Cargo.toml @@ -5,8 +5,8 @@ version = "0.1.0" edition = "2021" [dependencies] -polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } cumulus-primitives-core = { path = "../../primitives/core" } diff --git a/client/relay-chain-rpc-interface/Cargo.toml b/client/relay-chain-rpc-interface/Cargo.toml index e2c217f7e3a..fe2f9570100 100644 --- a/client/relay-chain-rpc-interface/Cargo.toml +++ b/client/relay-chain-rpc-interface/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } cumulus-primitives-core = { path = "../../primitives/core" } cumulus-relay-chain-interface = { path = "../relay-chain-interface" } diff --git a/client/service/Cargo.toml b/client/service/Cargo.toml index aa3a3eb39d1..e705364a1c8 100644 --- a/client/service/Cargo.toml +++ b/client/service/Cargo.toml @@ -18,7 +18,7 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-client-cli = { path = "../cli" } diff --git a/pallets/dmp-queue/Cargo.toml b/pallets/dmp-queue/Cargo.toml index 01fc946098d..5f423e84fc3 100644 --- a/pallets/dmp-queue/Cargo.toml +++ b/pallets/dmp-queue/Cargo.toml @@ -16,7 +16,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core", default-features = false } diff --git a/pallets/parachain-system/Cargo.toml b/pallets/parachain-system/Cargo.toml index d7889b55e73..8b203135610 100644 --- a/pallets/parachain-system/Cargo.toml +++ b/pallets/parachain-system/Cargo.toml @@ -27,7 +27,7 @@ sp-trie = { git = "https://github.com/paritytech/substrate", default-features = sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, features = [ "wasm-api" ], branch = "ao-recovery-try-connect" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, features = [ "wasm-api" ], branch = "master" } # Cumulus cumulus-pallet-parachain-system-proc-macro = { path = "proc-macro", default-features = false } diff --git a/pallets/solo-to-para/Cargo.toml b/pallets/solo-to-para/Cargo.toml index a2d7d6d5b61..090ea3660d1 100644 --- a/pallets/solo-to-para/Cargo.toml +++ b/pallets/solo-to-para/Cargo.toml @@ -17,7 +17,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-parachain-system = { default-features = false, path = "../parachain-system" } diff --git a/pallets/xcm/Cargo.toml b/pallets/xcm/Cargo.toml index a9323c419a4..c90a3fd8245 100644 --- a/pallets/xcm/Cargo.toml +++ b/pallets/xcm/Cargo.toml @@ -14,7 +14,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } cumulus-primitives-core = { path = "../../primitives/core", default-features = false } diff --git a/pallets/xcmp-queue/Cargo.toml b/pallets/xcmp-queue/Cargo.toml index 6e7b6157600..8c7aef6a354 100644 --- a/pallets/xcmp-queue/Cargo.toml +++ b/pallets/xcmp-queue/Cargo.toml @@ -17,8 +17,8 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core", default-features = false } @@ -34,7 +34,7 @@ sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-pallet-parachain-system = { path = "../parachain-system" } diff --git a/parachain-template/node/Cargo.toml b/parachain-template/node/Cargo.toml index 5492e775cc4..a1b1408936e 100644 --- a/parachain-template/node/Cargo.toml +++ b/parachain-template/node/Cargo.toml @@ -54,10 +54,10 @@ substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-client-cli = { path = "../../client/cli" } diff --git a/parachain-template/runtime/Cargo.toml b/parachain-template/runtime/Cargo.toml index b2ac03cfeaf..5e9b88e2f17 100644 --- a/parachain-template/runtime/Cargo.toml +++ b/parachain-template/runtime/Cargo.toml @@ -53,12 +53,12 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../pallets/aura-ext", default-features = false } diff --git a/parachains/common/Cargo.toml b/parachains/common/Cargo.toml index a9f1339c29c..300f8683d87 100644 --- a/parachains/common/Cargo.toml +++ b/parachains/common/Cargo.toml @@ -26,9 +26,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus pallet-collator-selection = { path = "../../pallets/collator-selection", default-features = false } diff --git a/parachains/pallets/ping/Cargo.toml b/parachains/pallets/ping/Cargo.toml index edaf9bb217e..544a43ebceb 100644 --- a/parachains/pallets/ping/Cargo.toml +++ b/parachains/pallets/ping/Cargo.toml @@ -13,7 +13,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } cumulus-primitives-core = { path = "../../../primitives/core", default-features = false } cumulus-pallet-xcm = { path = "../../../pallets/xcm", default-features = false } diff --git a/parachains/runtimes/assets/statemine/Cargo.toml b/parachains/runtimes/assets/statemine/Cargo.toml index 1f45a58e5b0..7c47a42a4fe 100644 --- a/parachains/runtimes/assets/statemine/Cargo.toml +++ b/parachains/runtimes/assets/statemine/Cargo.toml @@ -46,14 +46,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } @@ -68,7 +68,7 @@ cumulus-primitives-utility = { path = "../../../../primitives/utility", default- pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false } parachain-info = { path = "../../../pallets/parachain-info", default-features = false } parachains-common = { path = "../../../common", default-features = false } -pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", default-features = false, optional = true , branch = "ao-recovery-try-connect" } +pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, optional = true } [dev-dependencies] diff --git a/parachains/runtimes/assets/statemint/Cargo.toml b/parachains/runtimes/assets/statemint/Cargo.toml index 2a8638dee16..127bba217ac 100644 --- a/parachains/runtimes/assets/statemint/Cargo.toml +++ b/parachains/runtimes/assets/statemint/Cargo.toml @@ -46,14 +46,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } @@ -68,7 +68,7 @@ cumulus-primitives-utility = { path = "../../../../primitives/utility", default- pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false } parachain-info = { path = "../../../pallets/parachain-info", default-features = false } parachains-common = { path = "../../../common", default-features = false } -pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", default-features = false, optional = true , branch = "ao-recovery-try-connect" } +pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, optional = true } [dev-dependencies] hex-literal = "0.3.4" diff --git a/parachains/runtimes/assets/westmint/Cargo.toml b/parachains/runtimes/assets/westmint/Cargo.toml index 96e33c0a689..b8b06231155 100644 --- a/parachains/runtimes/assets/westmint/Cargo.toml +++ b/parachains/runtimes/assets/westmint/Cargo.toml @@ -46,14 +46,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -westend-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +westend-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } @@ -68,7 +68,7 @@ cumulus-primitives-utility = { path = "../../../../primitives/utility", default- pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false } parachain-info = { path = "../../../pallets/parachain-info", default-features = false } parachains-common = { path = "../../../common", default-features = false } -pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", default-features = false, optional = true , branch = "ao-recovery-try-connect" } +pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, optional = true } [dev-dependencies] hex-literal = "0.3.4" diff --git a/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml b/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml index 75f1e74733d..4a6939b7c0f 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml +++ b/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml @@ -45,14 +45,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml index 5435ec03041..4bd3715fe49 100644 --- a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml +++ b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml @@ -51,14 +51,14 @@ pallet-contracts = { git = "https://github.com/paritytech/substrate", default-fe pallet-contracts-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/parachains/runtimes/starters/shell/Cargo.toml b/parachains/runtimes/starters/shell/Cargo.toml index ae165a30919..2588990a382 100644 --- a/parachains/runtimes/starters/shell/Cargo.toml +++ b/parachains/runtimes/starters/shell/Cargo.toml @@ -25,9 +25,9 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false } diff --git a/parachains/runtimes/testing/penpal/Cargo.toml b/parachains/runtimes/testing/penpal/Cargo.toml index e2cf3aee412..7aa20c46320 100644 --- a/parachains/runtimes/testing/penpal/Cargo.toml +++ b/parachains/runtimes/testing/penpal/Cargo.toml @@ -52,13 +52,13 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/parachains/runtimes/testing/rococo-parachain/Cargo.toml b/parachains/runtimes/testing/rococo-parachain/Cargo.toml index 0444a13c92f..d16847a8cd3 100644 --- a/parachains/runtimes/testing/rococo-parachain/Cargo.toml +++ b/parachains/runtimes/testing/rococo-parachain/Cargo.toml @@ -34,11 +34,11 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } diff --git a/polkadot-parachain/Cargo.toml b/polkadot-parachain/Cargo.toml index f4a97598a59..68b5830bd0c 100644 --- a/polkadot-parachain/Cargo.toml +++ b/polkadot-parachain/Cargo.toml @@ -66,10 +66,10 @@ frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://gith pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -xcm = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +xcm = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-client-cli = { path = "../client/cli" } @@ -94,7 +94,7 @@ tempfile = "3.3.0" tokio = { version = "1.21.1", features = ["macros", "time", "parking_lot"] } wait-timeout = "0.2" # purge_chain_works works with rococo-local and needs to allow this -polkadot-cli = { git = "https://github.com/paritytech/polkadot", features = ["rococo-native"] , branch = "ao-recovery-try-connect" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master", features = ["rococo-native"] } [features] default = [] diff --git a/primitives/core/Cargo.toml b/primitives/core/Cargo.toml index 8d3febecf63..9a67cac16c5 100644 --- a/primitives/core/Cargo.toml +++ b/primitives/core/Cargo.toml @@ -14,9 +14,9 @@ sp-std = { git = "https://github.com/paritytech/substrate", default-features = f sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } [features] default = [ "std" ] diff --git a/primitives/utility/Cargo.toml b/primitives/utility/Cargo.toml index 4f9637a0f22..6278025e1db 100644 --- a/primitives/utility/Cargo.toml +++ b/primitives/utility/Cargo.toml @@ -14,9 +14,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } -xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } +xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus diff --git a/test/client/Cargo.toml b/test/client/Cargo.toml index aa69c3ba256..490730b7519 100644 --- a/test/client/Cargo.toml +++ b/test/client/Cargo.toml @@ -27,8 +27,8 @@ pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-test-runtime = { path = "../runtime" } diff --git a/test/relay-sproof-builder/Cargo.toml b/test/relay-sproof-builder/Cargo.toml index ca5cca6f547..32e12ee25cc 100644 --- a/test/relay-sproof-builder/Cargo.toml +++ b/test/relay-sproof-builder/Cargo.toml @@ -13,7 +13,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", default-fe sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Cumulus cumulus-primitives-core = { path = "../../primitives/core", default-features = false } diff --git a/test/relay-validation-worker-provider/Cargo.toml b/test/relay-validation-worker-provider/Cargo.toml index b11b469a0a0..8d1be981559 100644 --- a/test/relay-validation-worker-provider/Cargo.toml +++ b/test/relay-validation-worker-provider/Cargo.toml @@ -8,7 +8,7 @@ build = "build.rs" [dependencies] # Polkadot -polkadot-node-core-pvf = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-node-core-pvf = { git = "https://github.com/paritytech/polkadot", branch = "master" } [build-dependencies] toml = "0.5.9" diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index 8897db20543..8d9c9c04fa7 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -50,10 +50,10 @@ substrate-test-client = { git = "https://github.com/paritytech/substrate", branc sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot -polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } -polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Cumulus cumulus-client-cli = { path = "../../client/cli" } @@ -75,7 +75,7 @@ futures = "0.3.24" portpicker = "0.1.1" # Polkadot dependencies -polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" } +polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Substrate dependencies sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } From 6f10c8c31fef5cf6fcb9d827fbdb675188e739ed Mon Sep 17 00:00:00 2001 From: Andronik Date: Sat, 8 Oct 2022 00:21:09 +0200 Subject: [PATCH 22/40] make sure it is not due to backing group connections --- zombienet_tests/0002-pov_recovery.feature | 6 +++--- zombienet_tests/0002-pov_recovery.toml | 6 ++++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.feature b/zombienet_tests/0002-pov_recovery.feature index 9b9daa18316..6116a415241 100644 --- a/zombienet_tests/0002-pov_recovery.feature +++ b/zombienet_tests/0002-pov_recovery.feature @@ -7,9 +7,9 @@ validator-0: is up validator-1: is up validator-2: is up validator-3: is up -alice: is up -bob: is up -charlie: is up +alice: is up within 60 seconds +bob: is up within 60 seconds +charlie: is up within 60 seconds validator-0: parachain 2000 is registered within 225 seconds bob: reports block height is at least 7 within 250 seconds alice: reports block height is at least 7 within 250 seconds diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index ff39c828ce5..5dcbdf7b02c 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -5,9 +5,15 @@ default_args = [ "-lparachain=debug" ] chain = "rococo-local" +[relaychain.genesis.runtime.runtime_genesis_config.configuration.config] +# set parameters such that collators only connect to 1 validator as a backing group +max_validators_per_core = 1 +group_rotation_frequency = 100 # 10 mins + [[relaychain.node_groups]] name = "validator" count = 4 + # args = ["--in-peers=3"] [[parachains]] id = 2000 From d1059408f46c54c9939189cf43d652f197ba17d9 Mon Sep 17 00:00:00 2001 From: Andronik Date: Sat, 8 Oct 2022 00:51:51 +0200 Subject: [PATCH 23/40] clean up flags --- zombienet_tests/0002-pov_recovery.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index 5dcbdf7b02c..beee6965b3b 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -1,7 +1,7 @@ [relaychain] default_image = "{{RELAY_IMAGE}}" default_command = "polkadot" -default_args = [ "-lparachain=debug" ] +default_args = [ "-lcumulus-pov-recovery=debug,parachain=debug" ] chain = "rococo-local" @@ -13,7 +13,7 @@ group_rotation_frequency = 100 # 10 mins [[relaychain.node_groups]] name = "validator" count = 4 - # args = ["--in-peers=3"] + # args = ["--out-peers=3"] [[parachains]] id = 2000 @@ -26,7 +26,7 @@ cumulus_based = true validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lcumulus-pov-recovery=debug", "--use-null-consensus", "--disable-block-announcements"] + args = ["--use-null-consensus", "--disable-block-announcements"] # run bob as a parachain collator who is the only one producing blocks # alice and charlie will need to recover the pov blocks through availability recovery @@ -35,7 +35,7 @@ cumulus_based = true validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lcumulus-pov-recovery=debug", "--disable-block-announcements"] + args = ["--disable-block-announcements"] # run eve as a parachain full node [[parachains.collators]] @@ -43,4 +43,4 @@ cumulus_based = true validator = false # full node image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lcumulus-pov-recovery=debug,parachain=debug,sub-libp2p=debug", "--disable-block-announcements"] + args = ["--disable-block-announcements"] From 199333dc18022e66065f649fdb8152e677cd1a7b Mon Sep 17 00:00:00 2001 From: Andronik Date: Sat, 8 Oct 2022 17:44:29 +0200 Subject: [PATCH 24/40] try no-mdns on collators, limit out-peers on validators --- zombienet_tests/0002-pov_recovery.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index beee6965b3b..cd11ae15987 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -13,7 +13,7 @@ group_rotation_frequency = 100 # 10 mins [[relaychain.node_groups]] name = "validator" count = 4 - # args = ["--out-peers=3"] + args = ["--out-peers=3"] [[parachains]] id = 2000 @@ -26,7 +26,7 @@ cumulus_based = true validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--use-null-consensus", "--disable-block-announcements"] + args = ["--use-null-consensus", "--disable-block-announcements", "--", "--no-mdns"] # run bob as a parachain collator who is the only one producing blocks # alice and charlie will need to recover the pov blocks through availability recovery @@ -43,4 +43,4 @@ cumulus_based = true validator = false # full node image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--disable-block-announcements"] + args = ["--disable-block-announcements", "--", "--no-mdns"] From 312a48059a1b8ab7486a64f51564e796a2b907f4 Mon Sep 17 00:00:00 2001 From: Andronik Date: Sat, 8 Oct 2022 21:17:40 +0200 Subject: [PATCH 25/40] try no-mdns on validators and bob --- zombienet_tests/0002-pov_recovery.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index cd11ae15987..a8f75f13a58 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -13,7 +13,7 @@ group_rotation_frequency = 100 # 10 mins [[relaychain.node_groups]] name = "validator" count = 4 - args = ["--out-peers=3"] + args = ["--out-peers=3", "--no-mdns"] [[parachains]] id = 2000 @@ -35,7 +35,7 @@ cumulus_based = true validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--disable-block-announcements"] + args = ["--disable-block-announcements", "--no-mdns"] # run eve as a parachain full node [[parachains.collators]] From a78ec5f21002b948557a7fbac84d6e0b8c51d490 Mon Sep 17 00:00:00 2001 From: Andronik Date: Sat, 8 Oct 2022 21:18:46 +0200 Subject: [PATCH 26/40] fix bob flag --- zombienet_tests/0002-pov_recovery.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index a8f75f13a58..ea25112e606 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -35,7 +35,7 @@ cumulus_based = true validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--disable-block-announcements", "--no-mdns"] + args = ["--disable-block-announcements", "--", "--no-mdns"] # run eve as a parachain full node [[parachains.collators]] From 00cb3417e9b2127b00281acf030be456ce5b95db Mon Sep 17 00:00:00 2001 From: Andronik Date: Sat, 8 Oct 2022 21:20:34 +0200 Subject: [PATCH 27/40] try 7 validators (3 chunks needed for recovery) --- zombienet_tests/0002-pov_recovery.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index ea25112e606..c84b89309fa 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -12,7 +12,7 @@ group_rotation_frequency = 100 # 10 mins [[relaychain.node_groups]] name = "validator" - count = 4 + count = 7 args = ["--out-peers=3", "--no-mdns"] [[parachains]] From 37fef2989bba8e23df47ba39d7b1fc8b37c9687f Mon Sep 17 00:00:00 2001 From: Andronik Date: Sun, 9 Oct 2022 17:36:41 +0200 Subject: [PATCH 28/40] reserved-only on validators --- zombienet_tests/0002-pov_recovery.toml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index c84b89309fa..6a14b01f779 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -10,10 +10,14 @@ chain = "rococo-local" max_validators_per_core = 1 group_rotation_frequency = 100 # 10 mins + [[relaychain.nodes]] + name = "ferdie" # bootnode + validator = true + [[relaychain.node_groups]] name = "validator" - count = 7 - args = ["--out-peers=3", "--no-mdns"] + count = 6 + args = ["--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] [[parachains]] id = 2000 @@ -26,7 +30,7 @@ cumulus_based = true validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--use-null-consensus", "--disable-block-announcements", "--", "--no-mdns"] + args = ["--use-null-consensus", "--disable-block-announcements"] # run bob as a parachain collator who is the only one producing blocks # alice and charlie will need to recover the pov blocks through availability recovery @@ -35,7 +39,7 @@ cumulus_based = true validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--disable-block-announcements", "--", "--no-mdns"] + args = ["--disable-block-announcements"] # run eve as a parachain full node [[parachains.collators]] @@ -43,4 +47,4 @@ cumulus_based = true validator = false # full node image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--disable-block-announcements", "--", "--no-mdns"] + args = ["--disable-block-announcements"] From f35778ee92d1c987493f6ea0d0600bcece7b05bf Mon Sep 17 00:00:00 2001 From: Andronik Date: Sun, 9 Oct 2022 18:17:42 +0200 Subject: [PATCH 29/40] reserved-only on alice and charlie --- zombienet_tests/0002-pov_recovery.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index 6a14b01f779..2b72c2f782d 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -30,7 +30,7 @@ cumulus_based = true validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--use-null-consensus", "--disable-block-announcements"] + args = ["--use-null-consensus", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] # run bob as a parachain collator who is the only one producing blocks # alice and charlie will need to recover the pov blocks through availability recovery @@ -47,4 +47,4 @@ cumulus_based = true validator = false # full node image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--disable-block-announcements"] + args = ["--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] From 29d8b57c71371cce851bead109921e4eb4d6aeab Mon Sep 17 00:00:00 2001 From: Andronik Date: Sun, 9 Oct 2022 23:19:20 +0200 Subject: [PATCH 30/40] explicitly pass log targets --- zombienet_tests/0002-pov_recovery.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index 2b72c2f782d..725be7b45ab 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -1,7 +1,6 @@ [relaychain] default_image = "{{RELAY_IMAGE}}" default_command = "polkadot" -default_args = [ "-lcumulus-pov-recovery=debug,parachain=debug" ] chain = "rococo-local" @@ -13,11 +12,13 @@ group_rotation_frequency = 100 # 10 mins [[relaychain.nodes]] name = "ferdie" # bootnode validator = true + args = ["-lparachain::availability-distribution=trace"] [[relaychain.node_groups]] name = "validator" count = 6 - args = ["--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] + args = ["-lparachain::availability-distribution=trace", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] + default_args = [ "-lcumulus-pov-recovery=debug,parachain=debug" ] [[parachains]] id = 2000 @@ -30,7 +31,7 @@ cumulus_based = true validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--use-null-consensus", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] + args = ["-lparachain::availability-recovery=trace", "--use-null-consensus", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] # run bob as a parachain collator who is the only one producing blocks # alice and charlie will need to recover the pov blocks through availability recovery @@ -47,4 +48,4 @@ cumulus_based = true validator = false # full node image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] + args = ["-lparachain::availability-recovery=trace", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] From b19bf62257317df2900941dbf54b8aebb9a00914 Mon Sep 17 00:00:00 2001 From: Andronik Date: Sun, 9 Oct 2022 23:21:12 +0200 Subject: [PATCH 31/40] rm default_args --- zombienet_tests/0002-pov_recovery.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index 725be7b45ab..ecbbc926992 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -18,7 +18,6 @@ group_rotation_frequency = 100 # 10 mins name = "validator" count = 6 args = ["-lparachain::availability-distribution=trace", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] - default_args = [ "-lcumulus-pov-recovery=debug,parachain=debug" ] [[parachains]] id = 2000 From f7886f1bbe82bc0cbff07a97652743756a899e42 Mon Sep 17 00:00:00 2001 From: Andronik Date: Mon, 10 Oct 2022 11:22:53 +0200 Subject: [PATCH 32/40] parachain=debug and cumulus-pov-recovery=debug --- zombienet_tests/0002-pov_recovery.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index ecbbc926992..255a31be54c 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -12,12 +12,12 @@ group_rotation_frequency = 100 # 10 mins [[relaychain.nodes]] name = "ferdie" # bootnode validator = true - args = ["-lparachain::availability-distribution=trace"] + args = ["-lparachain::availability=trace,parachain=debug"] [[relaychain.node_groups]] name = "validator" count = 6 - args = ["-lparachain::availability-distribution=trace", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] + args = ["-lparachain::availability=trace,parachain=debug", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] [[parachains]] id = 2000 @@ -30,7 +30,7 @@ cumulus_based = true validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lparachain::availability-recovery=trace", "--use-null-consensus", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] + args = ["-lparachain::availability=trace,parachain=debug,cumulus-pov-recovery=debug", "--use-null-consensus", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] # run bob as a parachain collator who is the only one producing blocks # alice and charlie will need to recover the pov blocks through availability recovery @@ -47,4 +47,4 @@ cumulus_based = true validator = false # full node image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lparachain::availability-recovery=trace", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] + args = ["-lparachain::availability=trace,parachain=debug,cumulus-pov-recovery=debug", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] From 3a815a82756c31746f6e8f51a6f5e264f5bb8b05 Mon Sep 17 00:00:00 2001 From: Andronik Date: Tue, 11 Oct 2022 02:23:47 +0200 Subject: [PATCH 33/40] try another idea --- zombienet_tests/0002-pov_recovery.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index 255a31be54c..aebe19b3063 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -10,13 +10,12 @@ max_validators_per_core = 1 group_rotation_frequency = 100 # 10 mins [[relaychain.nodes]] - name = "ferdie" # bootnode - validator = true - args = ["-lparachain::availability=trace,parachain=debug"] + name = "ferdie" # bootnode fullnode + validator = false [[relaychain.node_groups]] name = "validator" - count = 6 + count = 7 args = ["-lparachain::availability=trace,parachain=debug", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] [[parachains]] From 025877d658a979c7cd3e45a1a87893e04c3cd315 Mon Sep 17 00:00:00 2001 From: Andronik Date: Tue, 11 Oct 2022 11:08:24 +0200 Subject: [PATCH 34/40] try 13 validators (4 chunks required) --- zombienet_tests/0002-pov_recovery.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index aebe19b3063..dc12c9d7ae3 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -15,7 +15,7 @@ group_rotation_frequency = 100 # 10 mins [[relaychain.node_groups]] name = "validator" - count = 7 + count = 13 args = ["-lparachain::availability=trace,parachain=debug", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] [[parachains]] From 2fe8401dd2b020d1a78e1654033a060927b78776 Mon Sep 17 00:00:00 2001 From: Andronik Date: Fri, 14 Oct 2022 16:36:01 +0200 Subject: [PATCH 35/40] bump block height to 20 --- zombienet_tests/0002-pov_recovery.feature | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zombienet_tests/0002-pov_recovery.feature b/zombienet_tests/0002-pov_recovery.feature index 6116a415241..d51103e51ae 100644 --- a/zombienet_tests/0002-pov_recovery.feature +++ b/zombienet_tests/0002-pov_recovery.feature @@ -11,6 +11,6 @@ alice: is up within 60 seconds bob: is up within 60 seconds charlie: is up within 60 seconds validator-0: parachain 2000 is registered within 225 seconds -bob: reports block height is at least 7 within 250 seconds -alice: reports block height is at least 7 within 250 seconds -charlie: reports block height is at least 7 within 250 seconds +bob: reports block height is at least 20 within 360 seconds +alice: reports block height is at least 20 within 360 seconds +charlie: reports block height is at least 20 within 360 seconds From c768d1c8531ec22a7fb9a2ff13673545993eb131 Mon Sep 17 00:00:00 2001 From: Sebastian Kunert Date: Fri, 14 Oct 2022 17:09:07 +0200 Subject: [PATCH 36/40] Register parachain after 20sec, increase block target to 20 --- zombienet_tests/0002-pov_recovery.feature | 14 ++++++++++---- zombienet_tests/0002-pov_recovery.toml | 22 ++++++++++++---------- zombienet_tests/register-para.js | 10 ++++++++++ 3 files changed, 32 insertions(+), 14 deletions(-) create mode 100644 zombienet_tests/register-para.js diff --git a/zombienet_tests/0002-pov_recovery.feature b/zombienet_tests/0002-pov_recovery.feature index d51103e51ae..0b4d0a81de8 100644 --- a/zombienet_tests/0002-pov_recovery.feature +++ b/zombienet_tests/0002-pov_recovery.feature @@ -10,7 +10,13 @@ validator-3: is up alice: is up within 60 seconds bob: is up within 60 seconds charlie: is up within 60 seconds -validator-0: parachain 2000 is registered within 225 seconds -bob: reports block height is at least 20 within 360 seconds -alice: reports block height is at least 20 within 360 seconds -charlie: reports block height is at least 20 within 360 seconds + +# wait 30 blocks and register parachain +validator-3: reports block height is at least 30 within 250 seconds +validator-0: js-script ./register-para.js with "2000" within 240 seconds +validator-0: parachain 2000 is registered within 300 seconds + +# check block production +bob: reports block height is at least 20 within 600 seconds +alice: reports block height is at least 20 within 600 seconds +charlie: reports block height is at least 20 within 600 seconds diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index dc12c9d7ae3..a9117dd82c6 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -16,29 +16,31 @@ group_rotation_frequency = 100 # 10 mins [[relaychain.node_groups]] name = "validator" count = 13 - args = ["-lparachain::availability=trace,parachain=debug", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] + args = ["-lparachain::availability=trace,sync=debug,parachain=debug", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] [[parachains]] id = 2000 cumulus_based = true +register_para = false +add_to_genesis = false - # run alice as a parachain collator who does not produce blocks - # alice is a bootnode for bob and charlie + # run bob as a parachain collator who is the only one producing blocks + # alice and charlie will need to recover the pov blocks through availability recovery [[parachains.collators]] - name = "alice" + name = "bob" validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lparachain::availability=trace,parachain=debug,cumulus-pov-recovery=debug", "--use-null-consensus", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] + args = ["--disable-block-announcements"] - # run bob as a parachain collator who is the only one producing blocks - # alice and charlie will need to recover the pov blocks through availability recovery + # run alice as a parachain collator who does not produce blocks + # alice is a bootnode for bob and charlie [[parachains.collators]] - name = "bob" + name = "alice" validator = true # collator image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["--disable-block-announcements"] + args = ["-lparachain::availability=trace,sync=debug,parachain=debug,cumulus-pov-recovery=debug", "--use-null-consensus", "--disable-block-announcements", "--bootnodes {{'bob'|zombie('multiAddress')}}", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] # run eve as a parachain full node [[parachains.collators]] @@ -46,4 +48,4 @@ cumulus_based = true validator = false # full node image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lparachain::availability=trace,parachain=debug,cumulus-pov-recovery=debug", "--disable-block-announcements", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] + args = ["-lparachain::availability=trace,sync=debug,parachain=debug,cumulus-pov-recovery=debug", "--disable-block-announcements", "--bootnodes {{'bob'|zombie('multiAddress')}}","--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] diff --git a/zombienet_tests/register-para.js b/zombienet_tests/register-para.js new file mode 100644 index 00000000000..c977cfb36a3 --- /dev/null +++ b/zombienet_tests/register-para.js @@ -0,0 +1,10 @@ +async function run(nodeName, networkInfo, args) { + const paraIdStr = args[0]; + const para = networkInfo.paras[paraIdStr]; + const relayNode = networkInfo.relay[0]; + + console.log(para); + await zombie.registerParachain(parseInt(paraIdStr,10),para.wasmPath, para.statePath, relayNode.wsUri, "//Alice", true); +} + +module.exports = { run } \ No newline at end of file From 581b3b96d43df61b8050a8f3d67f6415b1d83227 Mon Sep 17 00:00:00 2001 From: Javier Viola Date: Fri, 14 Oct 2022 14:17:49 -0300 Subject: [PATCH 37/40] bump zombienet version --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 38bccdb91bf..c77f50bb37a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,7 +29,7 @@ variables: CI_IMAGE: "paritytech/ci-linux:production" DOCKER_OS: "debian:stretch" ARCH: "x86_64" - ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.2.59" + ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.2.79" .collect-artifacts: &collect-artifacts artifacts: From ee3241690fee051aef31fc8fb026e96c8326cd6d Mon Sep 17 00:00:00 2001 From: Javier Viola Date: Mon, 17 Oct 2022 08:49:33 -0300 Subject: [PATCH 38/40] remove debug --- zombienet_tests/register-para.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zombienet_tests/register-para.js b/zombienet_tests/register-para.js index c977cfb36a3..c080904aefe 100644 --- a/zombienet_tests/register-para.js +++ b/zombienet_tests/register-para.js @@ -3,8 +3,7 @@ async function run(nodeName, networkInfo, args) { const para = networkInfo.paras[paraIdStr]; const relayNode = networkInfo.relay[0]; - console.log(para); await zombie.registerParachain(parseInt(paraIdStr,10),para.wasmPath, para.statePath, relayNode.wsUri, "//Alice", true); } -module.exports = { run } \ No newline at end of file +module.exports = { run } From cd8e800c0b3a3b48821c554f9d7585e54a7d565e Mon Sep 17 00:00:00 2001 From: Javier Viola Date: Mon, 17 Oct 2022 12:13:33 -0300 Subject: [PATCH 39/40] bump zombienet --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c77f50bb37a..dcb7de25f2e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,7 +29,7 @@ variables: CI_IMAGE: "paritytech/ci-linux:production" DOCKER_OS: "debian:stretch" ARCH: "x86_64" - ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.2.79" + ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.2.80" .collect-artifacts: &collect-artifacts artifacts: From 1b04f186e806f125144c6870dbe6c0d70fb1b5b7 Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Tue, 18 Oct 2022 13:16:00 +0000 Subject: [PATCH 40/40] update lockfile for {"polkadot", "substrate"} --- Cargo.lock | 373 +++++++++++++++++++++++++++-------------------------- 1 file changed, 187 insertions(+), 186 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dacb281d13b..6f815a333b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "beefy-primitives", "sp-api", @@ -536,10 +536,11 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", + "serde", "sp-api", "sp-application-crypto", "sp-core", @@ -2801,7 +2802,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", ] @@ -2824,7 +2825,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -2847,7 +2848,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "Inflector", "array-bytes", @@ -2898,7 +2899,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2909,7 +2910,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2925,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -2954,7 +2955,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "bitflags", "frame-metadata", @@ -2986,7 +2987,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "Inflector", "cfg-expr", @@ -3000,7 +3001,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3012,7 +3013,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro2", "quote", @@ -3022,7 +3023,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "log", @@ -3040,7 +3041,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3055,7 +3056,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "sp-api", @@ -3064,7 +3065,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "parity-scale-codec", @@ -5247,7 +5248,7 @@ checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5268,7 +5269,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5285,7 +5286,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5299,7 +5300,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5315,7 +5316,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5331,7 +5332,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5346,7 +5347,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5370,7 +5371,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5390,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5405,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "beefy-primitives", "frame-support", @@ -5421,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5444,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5462,7 +5463,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5506,7 +5507,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5523,7 +5524,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "bitflags", "frame-benchmarking", @@ -5552,7 +5553,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "bitflags", "parity-scale-codec", @@ -5564,7 +5565,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro2", "quote", @@ -5574,7 +5575,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5591,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5609,7 +5610,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5633,7 +5634,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5646,7 +5647,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5664,7 +5665,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5685,7 +5686,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5700,7 +5701,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5723,7 +5724,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5739,7 +5740,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5759,7 +5760,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5776,7 +5777,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5793,7 +5794,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5811,7 +5812,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5826,7 +5827,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5842,7 +5843,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5859,7 +5860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5879,7 +5880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "sp-api", @@ -5889,7 +5890,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5906,7 +5907,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5929,7 +5930,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5946,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5961,7 +5962,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5975,7 +5976,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5993,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6008,7 +6009,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6026,7 +6027,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6042,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -6063,7 +6064,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6079,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -6093,7 +6094,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6116,7 +6117,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6127,7 +6128,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "sp-arithmetic", @@ -6136,7 +6137,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -6165,7 +6166,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6183,7 +6184,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6202,7 +6203,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -6218,7 +6219,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6233,7 +6234,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6244,7 +6245,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6261,7 +6262,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6276,7 +6277,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6292,7 +6293,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6307,7 +6308,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -8789,7 +8790,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9153,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "sp-core", @@ -9164,7 +9165,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -9191,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "futures-timer", @@ -9214,7 +9215,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9230,7 +9231,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9247,7 +9248,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9258,7 +9259,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "chrono", @@ -9298,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "fnv", "futures", @@ -9326,7 +9327,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "hash-db", "kvdb", @@ -9351,7 +9352,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -9375,7 +9376,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -9404,7 +9405,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "fork-tree", @@ -9446,7 +9447,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "jsonrpsee", @@ -9468,7 +9469,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9481,7 +9482,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -9505,7 +9506,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9532,7 +9533,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "environmental", "parity-scale-codec", @@ -9548,7 +9549,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "parity-scale-codec", @@ -9563,7 +9564,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9583,7 +9584,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ahash", "array-bytes", @@ -9624,7 +9625,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "finality-grandpa", "futures", @@ -9645,7 +9646,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ansi_term", "futures", @@ -9662,7 +9663,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "async-trait", @@ -9677,7 +9678,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "async-trait", @@ -9724,7 +9725,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "cid", "futures", @@ -9744,7 +9745,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "bitflags", @@ -9770,7 +9771,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ahash", "futures", @@ -9788,7 +9789,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "futures", @@ -9809,7 +9810,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "fork-tree", @@ -9839,7 +9840,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "futures", @@ -9858,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "bytes", @@ -9888,7 +9889,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "libp2p", @@ -9901,7 +9902,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9910,7 +9911,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "hash-db", @@ -9940,7 +9941,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "jsonrpsee", @@ -9963,7 +9964,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "jsonrpsee", @@ -9976,7 +9977,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "hex", @@ -9995,7 +9996,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "directories", @@ -10066,7 +10067,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "parity-scale-codec", @@ -10080,7 +10081,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10099,7 +10100,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "libc", @@ -10118,7 +10119,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "chrono", "futures", @@ -10136,7 +10137,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ansi_term", "atty", @@ -10167,7 +10168,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10178,7 +10179,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -10205,7 +10206,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -10219,7 +10220,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "futures-timer", @@ -10713,7 +10714,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "hash-db", "log", @@ -10731,7 +10732,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "blake2", "proc-macro-crate", @@ -10743,7 +10744,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -10756,7 +10757,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "integer-sqrt", "num-traits", @@ -10771,7 +10772,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -10784,7 +10785,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "parity-scale-codec", @@ -10796,7 +10797,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "sp-api", @@ -10808,7 +10809,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "log", @@ -10826,7 +10827,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -10845,7 +10846,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "parity-scale-codec", @@ -10863,7 +10864,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "merlin", @@ -10886,7 +10887,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -10900,7 +10901,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -10913,7 +10914,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "base58", @@ -10959,7 +10960,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "blake2", "byteorder", @@ -10973,7 +10974,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro2", "quote", @@ -10984,7 +10985,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10993,7 +10994,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro2", "quote", @@ -11003,7 +11004,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "environmental", "parity-scale-codec", @@ -11014,7 +11015,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "finality-grandpa", "log", @@ -11032,7 +11033,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11046,7 +11047,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "bytes", "futures", @@ -11072,7 +11073,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "lazy_static", "sp-core", @@ -11083,7 +11084,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -11100,7 +11101,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "thiserror", "zstd", @@ -11109,7 +11110,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "parity-scale-codec", @@ -11125,7 +11126,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -11139,7 +11140,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "sp-api", "sp-core", @@ -11149,7 +11150,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "backtrace", "lazy_static", @@ -11159,7 +11160,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "rustc-hash", "serde", @@ -11169,7 +11170,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "either", "hash256-std-hasher", @@ -11192,7 +11193,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11210,7 +11211,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "Inflector", "proc-macro-crate", @@ -11222,7 +11223,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "parity-scale-codec", @@ -11236,7 +11237,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "serde", "serde_json", @@ -11245,7 +11246,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -11259,7 +11260,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -11270,7 +11271,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "hash-db", "log", @@ -11292,12 +11293,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11310,7 +11311,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "sp-core", @@ -11323,7 +11324,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures-timer", @@ -11339,7 +11340,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "sp-std", @@ -11351,7 +11352,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "sp-api", "sp-runtime", @@ -11360,7 +11361,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "log", @@ -11376,7 +11377,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ahash", "hash-db", @@ -11399,7 +11400,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11416,7 +11417,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11427,7 +11428,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "impl-trait-for-tuples", "log", @@ -11440,7 +11441,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11736,7 +11737,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "platforms", ] @@ -11744,7 +11745,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11765,7 +11766,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures-util", "hyper", @@ -11778,7 +11779,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "jsonrpsee", "log", @@ -11799,7 +11800,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "async-trait", @@ -11825,7 +11826,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11835,7 +11836,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11846,7 +11847,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ansi_term", "build-helper", @@ -12372,7 +12373,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "clap 4.0.11", "frame-try-runtime",