From 782036dc1f5d67e91caa2813db2e04a5a6bd618c Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Fri, 31 Mar 2023 12:06:35 +0200 Subject: [PATCH 01/10] companion for #13384 --- node/test/service/src/lib.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/node/test/service/src/lib.rs b/node/test/service/src/lib.rs index f2a3c18197b3..0a2d65a01289 100644 --- a/node/test/service/src/lib.rs +++ b/node/test/service/src/lib.rs @@ -190,18 +190,14 @@ pub fn node_config( offchain_worker: sc_client_api::ExecutionStrategy::NativeWhenPossible, other: sc_client_api::ExecutionStrategy::NativeWhenPossible, }, - rpc_http: None, - rpc_ws: None, - rpc_ipc: None, - rpc_max_payload: None, + rpc_addr: None, rpc_max_request_size: None, rpc_max_response_size: None, - rpc_ws_max_connections: None, + rpc_max_connections: None, rpc_cors: None, rpc_methods: Default::default(), rpc_id_provider: None, rpc_max_subs_per_conn: None, - ws_max_out_buffer_capacity: None, prometheus_config: None, telemetry_endpoints: None, default_heap_pages: None, From c9a5df66280ef5056387b15362d838558c00e479 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Fri, 31 Mar 2023 14:42:34 +0200 Subject: [PATCH 02/10] adjust parsing RPC address from process output --- tests/common.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/common.rs b/tests/common.rs index 6a41975f87fa..26dc06eeccb7 100644 --- a/tests/common.rs +++ b/tests/common.rs @@ -89,15 +89,13 @@ pub fn find_ws_url_from_output(read: impl Read + Send) -> (String, String) { data.push_str(&line); // does the line contain our port (we expect this specific output from substrate). - let sock_addr = match line.split_once("Running JSON-RPC WS server: addr=") { + let sock_addr = match line.split_once("Running JSON-RPC server: addr=") { None => return None, Some((_, after)) => after.split_once(',').unwrap().0, }; Some(format!("ws://{}", sock_addr)) }) - .unwrap_or_else(|| { - panic!("Could not find WebSocket address in process output:\n{}", &data) - }); + .unwrap_or_else(|| panic!("Could not find address in process output:\n{}", &data)); (ws_url, data) } From cdb2a12e5a2f94b4b772796c8f18cfc90d639a7d Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 2 May 2023 18:28:11 +0200 Subject: [PATCH 03/10] update rpc cli --- node/test/service/src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/node/test/service/src/lib.rs b/node/test/service/src/lib.rs index c60c4984f42a..efadd4933dfd 100644 --- a/node/test/service/src/lib.rs +++ b/node/test/service/src/lib.rs @@ -190,14 +190,14 @@ pub fn node_config( offchain_worker: sc_client_api::ExecutionStrategy::NativeWhenPossible, other: sc_client_api::ExecutionStrategy::NativeWhenPossible, }, - rpc_addr: None, - rpc_max_request_size: None, - rpc_max_response_size: None, - rpc_max_connections: None, + rpc_addr: Default::default(), + rpc_max_request_size: Default::default(), + rpc_max_response_size: Default::default(), + rpc_max_connections: Default::default(), rpc_cors: None, rpc_methods: Default::default(), rpc_id_provider: None, - rpc_max_subs_per_conn: None, + rpc_max_subs_per_conn: Default::default(), prometheus_config: None, telemetry_endpoints: None, default_heap_pages: None, From b6cdf707a70248361ed236b0a2940db5c01c008b Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Wed, 3 May 2023 15:18:40 +0000 Subject: [PATCH 04/10] update lockfile for {"substrate"} --- Cargo.lock | 367 +++++++++++++++++++++++++++-------------------------- 1 file changed, 184 insertions(+), 183 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bf213e8ef79c..8893d697ff08 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "hash-db", "log", @@ -2460,7 +2460,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", ] @@ -2483,7 +2483,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "frame-support-procedural", @@ -2508,7 +2508,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "Inflector", "array-bytes", @@ -2555,7 +2555,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2566,7 +2566,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2583,7 +2583,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "frame-system", @@ -2612,7 +2612,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-recursion", "futures", @@ -2630,7 +2630,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "bitflags", "environmental", @@ -2663,7 +2663,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "Inflector", "cfg-expr", @@ -2679,7 +2679,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2691,7 +2691,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "proc-macro2", "quote", @@ -2701,7 +2701,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -2726,7 +2726,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "frame-system", @@ -2737,7 +2737,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "log", @@ -2755,7 +2755,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -2770,7 +2770,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", "sp-api", @@ -2779,7 +2779,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "parity-scale-codec", @@ -2961,7 +2961,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "chrono", "frame-election-provider-support", @@ -4811,7 +4811,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "futures", "log", @@ -4830,7 +4830,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "anyhow", "jsonrpsee", @@ -5414,7 +5414,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5429,7 +5429,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "frame-system", @@ -5445,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "frame-system", @@ -5459,7 +5459,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5483,7 +5483,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5503,7 +5503,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-election-provider-support", "frame-remote-externalities", @@ -5522,7 +5522,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5537,7 +5537,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "frame-system", @@ -5556,7 +5556,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -5580,7 +5580,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5598,7 +5598,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5617,7 +5617,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5634,7 +5634,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5651,7 +5651,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5669,7 +5669,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5692,7 +5692,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5705,7 +5705,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5723,7 +5723,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5741,7 +5741,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5764,7 +5764,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5780,7 +5780,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5800,7 +5800,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5817,7 +5817,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5834,7 +5834,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5851,7 +5851,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5867,7 +5867,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5883,7 +5883,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "frame-system", @@ -5900,7 +5900,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5920,7 +5920,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -5931,7 +5931,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "frame-system", @@ -5948,7 +5948,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5972,7 +5972,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -5989,7 +5989,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -6004,7 +6004,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -6022,7 +6022,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -6037,7 +6037,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6056,7 +6056,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -6073,7 +6073,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "frame-system", @@ -6094,7 +6094,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -6110,7 +6110,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "frame-system", @@ -6124,7 +6124,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6147,7 +6147,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6158,7 +6158,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "log", "sp-arithmetic", @@ -6167,7 +6167,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", "sp-api", @@ -6176,7 +6176,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -6193,7 +6193,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "frame-system", @@ -6207,7 +6207,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -6225,7 +6225,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -6244,7 +6244,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-support", "frame-system", @@ -6260,7 +6260,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6276,7 +6276,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6288,7 +6288,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -6305,7 +6305,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -6320,7 +6320,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -6336,7 +6336,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -6351,7 +6351,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-benchmarking", "frame-support", @@ -9358,7 +9358,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "log", "sp-core", @@ -9369,7 +9369,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "futures", @@ -9397,7 +9397,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "futures", "futures-timer", @@ -9420,7 +9420,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9435,7 +9435,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -9454,7 +9454,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9465,7 +9465,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "array-bytes", "chrono", @@ -9505,7 +9505,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "fnv", "futures", @@ -9531,7 +9531,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "hash-db", "kvdb", @@ -9557,7 +9557,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "futures", @@ -9582,7 +9582,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "fork-tree", @@ -9618,7 +9618,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "futures", "jsonrpsee", @@ -9640,7 +9640,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "array-bytes", "async-trait", @@ -9675,7 +9675,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "futures", "jsonrpsee", @@ -9694,7 +9694,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9707,7 +9707,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "ahash 0.8.2", "array-bytes", @@ -9747,7 +9747,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "finality-grandpa", "futures", @@ -9767,7 +9767,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "futures", @@ -9790,7 +9790,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "lru 0.8.1", "parity-scale-codec", @@ -9814,7 +9814,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -9827,7 +9827,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "log", "sc-allocator", @@ -9840,7 +9840,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "anyhow", "cfg-if", @@ -9858,7 +9858,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "ansi_term", "futures", @@ -9874,7 +9874,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "array-bytes", "async-trait", @@ -9889,7 +9889,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "array-bytes", "async-channel", @@ -9934,7 +9934,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "cid", "futures", @@ -9954,7 +9954,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "array-bytes", "async-trait", @@ -9982,7 +9982,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "ahash 0.8.2", "futures", @@ -10001,7 +10001,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "array-bytes", "futures", @@ -10023,7 +10023,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "array-bytes", "async-trait", @@ -10057,7 +10057,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "array-bytes", "futures", @@ -10077,7 +10077,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "array-bytes", "bytes", @@ -10108,7 +10108,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "futures", "libp2p", @@ -10121,7 +10121,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10130,7 +10130,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "futures", "jsonrpsee", @@ -10160,7 +10160,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10179,7 +10179,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "http", "jsonrpsee", @@ -10194,7 +10194,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "array-bytes", "futures", @@ -10220,7 +10220,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "directories", @@ -10286,7 +10286,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "log", "parity-scale-codec", @@ -10297,7 +10297,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "clap 4.2.5", "fs4", @@ -10313,7 +10313,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10332,7 +10332,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "futures", "libc", @@ -10351,7 +10351,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "chrono", "futures", @@ -10370,7 +10370,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "ansi_term", "atty", @@ -10401,7 +10401,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10412,7 +10412,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "futures", @@ -10439,7 +10439,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "futures", @@ -10453,7 +10453,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-channel", "futures", @@ -11001,7 +11001,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "hash-db", "log", @@ -11021,7 +11021,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "Inflector", "blake2", @@ -11035,7 +11035,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", "scale-info", @@ -11048,7 +11048,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "integer-sqrt", "num-traits", @@ -11062,7 +11062,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", "scale-info", @@ -11075,7 +11075,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", "sp-api", @@ -11087,7 +11087,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "futures", "log", @@ -11105,7 +11105,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "futures", @@ -11120,7 +11120,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "parity-scale-codec", @@ -11138,7 +11138,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "parity-scale-codec", @@ -11159,7 +11159,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "lazy_static", "parity-scale-codec", @@ -11178,7 +11178,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "finality-grandpa", "log", @@ -11196,7 +11196,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", "scale-info", @@ -11208,7 +11208,7 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "array-bytes", "bitflags", @@ -11252,7 +11252,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "blake2b_simd", "byteorder", @@ -11266,7 +11266,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "proc-macro2", "quote", @@ -11277,7 +11277,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11286,7 +11286,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "proc-macro2", "quote", @@ -11296,7 +11296,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "environmental", "parity-scale-codec", @@ -11307,7 +11307,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11322,7 +11322,7 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "bytes", "ed25519", @@ -11348,7 +11348,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "lazy_static", "sp-core", @@ -11359,7 +11359,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "futures", "parity-scale-codec", @@ -11373,7 +11373,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "thiserror", "zstd 0.12.3+zstd.1.5.2", @@ -11382,7 +11382,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -11393,7 +11393,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -11411,7 +11411,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", "scale-info", @@ -11425,7 +11425,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "sp-api", "sp-core", @@ -11435,7 +11435,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "backtrace", "lazy_static", @@ -11445,7 +11445,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "rustc-hash", "serde", @@ -11455,7 +11455,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "either", "hash256-std-hasher", @@ -11477,7 +11477,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11495,7 +11495,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "Inflector", "proc-macro-crate", @@ -11507,7 +11507,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", "scale-info", @@ -11521,10 +11521,11 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", "scale-info", + "serde", "sp-core", "sp-runtime", "sp-std", @@ -11533,7 +11534,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "hash-db", "log", @@ -11553,12 +11554,12 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" [[package]] name = "sp-storage" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11571,7 +11572,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "futures-timer", @@ -11586,7 +11587,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", "sp-std", @@ -11598,7 +11599,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "sp-api", "sp-runtime", @@ -11607,7 +11608,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "log", @@ -11623,7 +11624,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "ahash 0.8.2", "hash-db", @@ -11646,7 +11647,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11663,7 +11664,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11674,7 +11675,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -11688,7 +11689,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "parity-scale-codec", "scale-info", @@ -11918,7 +11919,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "platforms 2.0.0", ] @@ -11926,7 +11927,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11945,7 +11946,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "hyper", "log", @@ -11957,7 +11958,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "jsonrpsee", @@ -11970,7 +11971,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "jsonrpsee", "log", @@ -11989,7 +11990,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "array-bytes", "async-trait", @@ -12015,7 +12016,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12025,7 +12026,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12036,7 +12037,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "ansi_term", "build-helper", @@ -12870,7 +12871,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#db6ebf564bcdfdfaf5fd026bb321de6f7d7e6fc0" +source = "git+https://github.com/paritytech/substrate?branch=master#71d749c74e43c7a840c94fcbbdd2b0172a21d473" dependencies = [ "async-trait", "clap 4.2.5", From cf26bdfa842dc87cfd19c331373b6f1b7c9803d1 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Wed, 3 May 2023 17:54:48 +0200 Subject: [PATCH 05/10] bump zombienet v1.3.48 --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4db0fcc90f38..0cd27cfa3f9d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,7 +38,7 @@ variables: BUILDAH_COMMAND: "buildah --storage-driver overlay2" DOCKER_OS: "debian:stretch" ARCH: "x86_64" - ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.3.43" + ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.3.48" default: cache: {} From d22b6b74e0573782baeaf0c4a86e61fb661d8716 Mon Sep 17 00:00:00 2001 From: Javier Viola Date: Wed, 3 May 2023 16:10:59 -0300 Subject: [PATCH 06/10] 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 0cd27cfa3f9d..6ff9429b2bb5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,7 +38,7 @@ variables: BUILDAH_COMMAND: "buildah --storage-driver overlay2" DOCKER_OS: "debian:stretch" ARCH: "x86_64" - ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.3.48" + ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.3.49" default: cache: {} From 523986e4cf545746b8f982354705320cfc8607ca Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 4 May 2023 09:50:21 +0200 Subject: [PATCH 07/10] allow zombienet-tests-misc-upgrade-node to fail --- scripts/ci/gitlab/pipeline/zombienet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/gitlab/pipeline/zombienet.yml b/scripts/ci/gitlab/pipeline/zombienet.yml index be61502eb8a8..8a3eaca90dfa 100644 --- a/scripts/ci/gitlab/pipeline/zombienet.yml +++ b/scripts/ci/gitlab/pipeline/zombienet.yml @@ -210,7 +210,7 @@ zombienet-tests-misc-upgrade-node: - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh --github-remote-dir="${GH_DIR}" --test="0002-upgrade-node.zndsl" - allow_failure: false + allow_failure: true retry: 2 tags: - zombienet-polkadot-integration-test From bb1cc5df03baca2d7368a5f73bb772ac5c82db06 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 4 May 2023 10:19:00 +0200 Subject: [PATCH 08/10] add comment and issue link to allowed_failure --- scripts/ci/gitlab/pipeline/zombienet.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/ci/gitlab/pipeline/zombienet.yml b/scripts/ci/gitlab/pipeline/zombienet.yml index 8a3eaca90dfa..16f12fbc385f 100644 --- a/scripts/ci/gitlab/pipeline/zombienet.yml +++ b/scripts/ci/gitlab/pipeline/zombienet.yml @@ -149,6 +149,8 @@ zombienet-test-parachains-upgrade-smoke-test: - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh --github-remote-dir="${GH_DIR}" --test="0002-parachains-upgrade-smoke-test.zndsl" + # TODO: This is a temporarily fix to allow this job to fail + # https://github.com/paritytech/polkadot/issues/7177 allow_failure: true retry: 2 tags: From f338bc06590319e01f45dd06e1d5fa93f372c91b Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 4 May 2023 10:23:48 +0200 Subject: [PATCH 09/10] grumbles: disable failed job --- scripts/ci/gitlab/pipeline/zombienet.yml | 63 ++++++++++++------------ 1 file changed, 32 insertions(+), 31 deletions(-) diff --git a/scripts/ci/gitlab/pipeline/zombienet.yml b/scripts/ci/gitlab/pipeline/zombienet.yml index 16f12fbc385f..98c4ea8eab20 100644 --- a/scripts/ci/gitlab/pipeline/zombienet.yml +++ b/scripts/ci/gitlab/pipeline/zombienet.yml @@ -124,37 +124,38 @@ zombienet-tests-parachains-disputes-garbage-candidate: tags: - zombienet-polkadot-integration-test -zombienet-test-parachains-upgrade-smoke-test: - stage: zombienet - image: "${ZOMBIENET_IMAGE}" - extends: - - .kubernetes-env - - .zombienet-refs - needs: - - job: publish-polkadot-debug-image - - job: publish-malus-image - - job: publish-test-collators-image - variables: - GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/smoke" - before_script: - - echo "ZombieNet Tests Config" - - echo "${PARACHAINS_IMAGE_NAME}:${PARACHAINS_IMAGE_TAG}" - - echo "docker.io/parity/polkadot-collator:latest" - - echo "${ZOMBIENET_IMAGE}" - - echo "${GH_DIR}" - - export DEBUG=zombie,zombie::network-node - - export ZOMBIENET_INTEGRATION_TEST_IMAGE=${PARACHAINS_IMAGE_NAME}:${PARACHAINS_IMAGE_TAG} - - export COL_IMAGE="docker.io/parity/polkadot-collator:latest" # Use cumulus lastest image - script: - - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh - --github-remote-dir="${GH_DIR}" - --test="0002-parachains-upgrade-smoke-test.zndsl" - # TODO: This is a temporarily fix to allow this job to fail - # https://github.com/paritytech/polkadot/issues/7177 - allow_failure: true - retry: 2 - tags: - - zombienet-polkadot-integration-test +## TODO: https://github.com/paritytech/polkadot/issues/7177 +## This is temporarily because it's currently broken +## +# zombienet-test-parachains-upgrade-smoke-test: +# stage: zombienet +# image: "${ZOMBIENET_IMAGE}" +# extends: +# - .kubernetes-env +# - .zombienet-refs +# needs: +# - job: publish-polkadot-debug-image +# - job: publish-malus-image +# - job: publish-test-collators-image +# variables: +# GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/smoke" +# before_script: +# - echo "ZombieNet Tests Config" +# - echo "${PARACHAINS_IMAGE_NAME}:${PARACHAINS_IMAGE_TAG}" +# - echo "docker.io/parity/polkadot-collator:latest" +# - echo "${ZOMBIENET_IMAGE}" +# - echo "${GH_DIR}" +# - export DEBUG=zombie,zombie::network-node +# - export ZOMBIENET_INTEGRATION_TEST_IMAGE=${PARACHAINS_IMAGE_NAME}:${PARACHAINS_IMAGE_TAG} +# - export COL_IMAGE="docker.io/parity/polkadot-collator:latest" # Use cumulus lastest image +# script: +# - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh +# --github-remote-dir="${GH_DIR}" +# --test="0002-parachains-upgrade-smoke-test.zndsl" +# allow_failure: false +# retry: 2 +# tags: +# - zombienet-polkadot-integration-test zombienet-tests-misc-paritydb: stage: zombienet From 4907b9e6e241dde6611922d3e4a16a9c6a9bed77 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 4 May 2023 11:03:14 +0200 Subject: [PATCH 10/10] disabled the correct test --- scripts/ci/gitlab/pipeline/zombienet.yml | 96 ++++++++++++------------ 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/scripts/ci/gitlab/pipeline/zombienet.yml b/scripts/ci/gitlab/pipeline/zombienet.yml index 98c4ea8eab20..cf147ee0eb07 100644 --- a/scripts/ci/gitlab/pipeline/zombienet.yml +++ b/scripts/ci/gitlab/pipeline/zombienet.yml @@ -124,40 +124,7 @@ zombienet-tests-parachains-disputes-garbage-candidate: tags: - zombienet-polkadot-integration-test -## TODO: https://github.com/paritytech/polkadot/issues/7177 -## This is temporarily because it's currently broken -## -# zombienet-test-parachains-upgrade-smoke-test: -# stage: zombienet -# image: "${ZOMBIENET_IMAGE}" -# extends: -# - .kubernetes-env -# - .zombienet-refs -# needs: -# - job: publish-polkadot-debug-image -# - job: publish-malus-image -# - job: publish-test-collators-image -# variables: -# GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/smoke" -# before_script: -# - echo "ZombieNet Tests Config" -# - echo "${PARACHAINS_IMAGE_NAME}:${PARACHAINS_IMAGE_TAG}" -# - echo "docker.io/parity/polkadot-collator:latest" -# - echo "${ZOMBIENET_IMAGE}" -# - echo "${GH_DIR}" -# - export DEBUG=zombie,zombie::network-node -# - export ZOMBIENET_INTEGRATION_TEST_IMAGE=${PARACHAINS_IMAGE_NAME}:${PARACHAINS_IMAGE_TAG} -# - export COL_IMAGE="docker.io/parity/polkadot-collator:latest" # Use cumulus lastest image -# script: -# - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh -# --github-remote-dir="${GH_DIR}" -# --test="0002-parachains-upgrade-smoke-test.zndsl" -# allow_failure: false -# retry: 2 -# tags: -# - zombienet-polkadot-integration-test - -zombienet-tests-misc-paritydb: +zombienet-test-parachains-upgrade-smoke-test: stage: zombienet image: "${ZOMBIENET_IMAGE}" extends: @@ -165,28 +132,29 @@ zombienet-tests-misc-paritydb: - .zombienet-refs needs: - job: publish-polkadot-debug-image + - job: publish-malus-image - job: publish-test-collators-image - artifacts: true variables: - GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/misc" + GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/smoke" before_script: - - echo "Zombie-net Tests Config" - - echo "${ZOMBIENET_IMAGE_NAME}" - - echo "${PARACHAINS_IMAGE_NAME} ${PARACHAINS_IMAGE_TAG}" + - echo "ZombieNet Tests Config" + - echo "${PARACHAINS_IMAGE_NAME}:${PARACHAINS_IMAGE_TAG}" + - echo "docker.io/parity/polkadot-collator:latest" + - echo "${ZOMBIENET_IMAGE}" - echo "${GH_DIR}" - export DEBUG=zombie,zombie::network-node - export ZOMBIENET_INTEGRATION_TEST_IMAGE=${PARACHAINS_IMAGE_NAME}:${PARACHAINS_IMAGE_TAG} - - export COL_IMAGE=${COLLATOR_IMAGE_NAME}:${COLLATOR_IMAGE_TAG} + - export COL_IMAGE="docker.io/parity/polkadot-collator:latest" # Use cumulus lastest image script: - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh --github-remote-dir="${GH_DIR}" - --test="0001-paritydb.zndsl" + --test="0002-parachains-upgrade-smoke-test.zndsl" allow_failure: false retry: 2 tags: - zombienet-polkadot-integration-test -zombienet-tests-misc-upgrade-node: +zombienet-tests-misc-paritydb: stage: zombienet image: "${ZOMBIENET_IMAGE}" extends: @@ -195,7 +163,6 @@ zombienet-tests-misc-upgrade-node: needs: - job: publish-polkadot-debug-image - job: publish-test-collators-image - - job: build-linux-stable artifacts: true variables: GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/misc" @@ -205,19 +172,52 @@ zombienet-tests-misc-upgrade-node: - echo "${PARACHAINS_IMAGE_NAME} ${PARACHAINS_IMAGE_TAG}" - echo "${GH_DIR}" - export DEBUG=zombie,zombie::network-node - - export ZOMBIENET_INTEGRATION_TEST_IMAGE="docker.io/parity/polkadot:latest" + - export ZOMBIENET_INTEGRATION_TEST_IMAGE=${PARACHAINS_IMAGE_NAME}:${PARACHAINS_IMAGE_TAG} - export COL_IMAGE=${COLLATOR_IMAGE_NAME}:${COLLATOR_IMAGE_TAG} - - BUILD_LINUX_JOB_ID="$(cat ./artifacts/BUILD_LINUX_JOB_ID)" - - export POLKADOT_PR_BIN_URL="https://gitlab.parity.io/parity/mirrors/polkadot/-/jobs/${BUILD_LINUX_JOB_ID}/artifacts/raw/artifacts/polkadot" script: - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh --github-remote-dir="${GH_DIR}" - --test="0002-upgrade-node.zndsl" - allow_failure: true + --test="0001-paritydb.zndsl" + allow_failure: false retry: 2 tags: - zombienet-polkadot-integration-test +## TODO: https://github.com/paritytech/polkadot/issues/7177 +## This is temporarily because it's currently broken +## +# zombienet-tests-misc-upgrade-node: +# stage: zombienet +# image: "${ZOMBIENET_IMAGE}" +# extends: +# - .kubernetes-env +# - .zombienet-refs +# needs: +# - job: publish-polkadot-debug-image +# - job: publish-test-collators-image +# - job: build-linux-stable +# artifacts: true +# variables: +# GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/misc" +# before_script: +# - echo "Zombie-net Tests Config" +# - echo "${ZOMBIENET_IMAGE_NAME}" +# - echo "${PARACHAINS_IMAGE_NAME} ${PARACHAINS_IMAGE_TAG}" +# - echo "${GH_DIR}" +# - export DEBUG=zombie,zombie::network-node +# - export ZOMBIENET_INTEGRATION_TEST_IMAGE="docker.io/parity/polkadot:latest" +# - export COL_IMAGE=${COLLATOR_IMAGE_NAME}:${COLLATOR_IMAGE_TAG} +# - BUILD_LINUX_JOB_ID="$(cat ./artifacts/BUILD_LINUX_JOB_ID)" +# - export POLKADOT_PR_BIN_URL="https://gitlab.parity.io/parity/mirrors/polkadot/-/jobs/${BUILD_LINUX_JOB_ID}/artifacts/raw/artifacts/polkadot" +# script: +# - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh +# --github-remote-dir="${GH_DIR}" +# --test="0002-upgrade-node.zndsl" +# allow_failure: true +# retry: 2 +# tags: +# - zombienet-polkadot-integration-test + zombienet-tests-malus-dispute-valid: stage: zombienet image: "${ZOMBIENET_IMAGE}"