From c81fb04560c843fdc58892f663a111fcdd314b97 Mon Sep 17 00:00:00 2001 From: Ross Bulat Date: Tue, 17 May 2022 20:21:02 +0100 Subject: [PATCH] Nomination Pools: add MinPointsToBalance constant (#5520) * add MinPointsToBalance * Typo * cargo update -p sp-io Co-authored-by: Oliver Tale-Yazdi Co-authored-by: parity-processbot <> Co-authored-by: Shawn Tabrizi --- Cargo.lock | 555 +++++++++++++++++-------------------- runtime/kusama/src/lib.rs | 2 + runtime/westend/src/lib.rs | 2 + 3 files changed, 257 insertions(+), 302 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4da998d0dc0e..2209faeba657 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -433,7 +433,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "beefy-primitives", "fnv", @@ -467,7 +467,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -487,12 +487,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", "scale-info", @@ -574,17 +574,6 @@ dependencies = [ "constant_time_eq", ] -[[package]] -name = "blake2b_simd" -version = "0.5.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587" -dependencies = [ - "arrayref", - "arrayvec 0.5.2", - "constant_time_eq", -] - [[package]] name = "blake2b_simd" version = "1.0.0" @@ -862,7 +851,6 @@ dependencies = [ "lazy_static", "memchr", "regex-automata", - "serde", ] [[package]] @@ -1132,6 +1120,17 @@ dependencies = [ "owo-colors", ] +[[package]] +name = "comfy-table" +version = "5.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b103d85ca6e209388771bfb7aa6b68a7aeec4afbf6f0a0264bfbf50360e5212e" +dependencies = [ + "strum 0.23.0", + "strum_macros 0.23.1", + "unicode-width", +] + [[package]] name = "concurrent-queue" version = "1.2.2" @@ -1402,28 +1401,6 @@ dependencies = [ "subtle", ] -[[package]] -name = "csv" -version = "1.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1" -dependencies = [ - "bstr", - "csv-core", - "itoa 0.4.8", - "ryu", - "serde", -] - -[[package]] -name = "csv-core" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" -dependencies = [ - "memchr", -] - [[package]] name = "ct-logs" version = "0.8.0" @@ -1630,17 +1607,6 @@ dependencies = [ "dirs-sys-next", ] -[[package]] -name = "dirs" -version = "1.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901" -dependencies = [ - "libc", - "redox_users 0.3.5", - "winapi", -] - [[package]] name = "dirs-sys" version = "0.3.6" @@ -1648,7 +1614,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780" dependencies = [ "libc", - "redox_users 0.4.0", + "redox_users", "winapi", ] @@ -1659,7 +1625,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" dependencies = [ "libc", - "redox_users 0.4.0", + "redox_users", "winapi", ] @@ -1792,12 +1758,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "encode_unicode" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" - [[package]] name = "encoding_rs" version = "0.8.30" @@ -2136,7 +2096,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", ] @@ -2154,7 +2114,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "frame-system", @@ -2176,11 +2136,12 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "Inflector", "chrono", "clap", + "comfy-table", "frame-benchmarking", "frame-support", "frame-system", @@ -2194,7 +2155,6 @@ dependencies = [ "log", "memory-db", "parity-scale-codec", - "prettytable-rs", "rand 0.8.5", "rand_pcg 0.3.1", "sc-block-builder", @@ -2226,7 +2186,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2237,7 +2197,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2253,7 +2213,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "frame-system", @@ -2281,7 +2241,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "bitflags", "frame-metadata", @@ -2311,7 +2271,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2323,7 +2283,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2335,7 +2295,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "proc-macro2", "quote", @@ -2345,7 +2305,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2368,7 +2328,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "frame-system", @@ -2379,7 +2339,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "log", @@ -2396,7 +2356,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -2411,7 +2371,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", "sp-api", @@ -2420,7 +2380,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "sp-api", @@ -2599,7 +2559,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "chrono", "frame-election-provider-support", @@ -3607,7 +3567,7 @@ dependencies = [ "libp2p-request-response", "libp2p-swarm", "log", - "prost", + "prost 0.9.0", "prost-build", "rand 0.8.5", ] @@ -3634,7 +3594,7 @@ dependencies = [ "multistream-select", "parking_lot 0.12.0", "pin-project 1.0.10", - "prost", + "prost 0.9.0", "prost-build", "rand 0.8.5", "ring", @@ -3684,7 +3644,7 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "prost", + "prost 0.9.0", "prost-build", "rand 0.7.3", "smallvec", @@ -3708,7 +3668,7 @@ dependencies = [ "libp2p-swarm", "log", "prometheus-client", - "prost", + "prost 0.9.0", "prost-build", "rand 0.7.3", "regex", @@ -3730,7 +3690,7 @@ dependencies = [ "libp2p-swarm", "log", "lru 0.7.5", - "prost", + "prost 0.9.0", "prost-build", "smallvec", ] @@ -3752,7 +3712,7 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "prost", + "prost 0.9.0", "prost-build", "rand 0.7.3", "sha2 0.10.2", @@ -3830,7 +3790,7 @@ dependencies = [ "lazy_static", "libp2p-core", "log", - "prost", + "prost 0.9.0", "prost-build", "rand 0.8.5", "sha2 0.10.2", @@ -3867,7 +3827,7 @@ dependencies = [ "futures 0.3.21", "libp2p-core", "log", - "prost", + "prost 0.9.0", "prost-build", "unsigned-varint", "void", @@ -3903,7 +3863,7 @@ dependencies = [ "libp2p-swarm", "log", "pin-project 1.0.10", - "prost", + "prost 0.9.0", "prost-build", "rand 0.8.5", "smallvec", @@ -3927,7 +3887,7 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "prost", + "prost 0.9.0", "prost-build", "rand 0.8.5", "sha2 0.10.2", @@ -4481,7 +4441,7 @@ version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3db354f401db558759dfc1e568d010a5d4146f4d3f637be1275ec4a3cf09689" dependencies = [ - "blake2b_simd 1.0.0", + "blake2b_simd", "blake2s_simd", "blake3", "core2", @@ -4910,7 +4870,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -4924,7 +4884,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "frame-system", @@ -4940,7 +4900,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "frame-system", @@ -4955,7 +4915,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -4979,7 +4939,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4999,7 +4959,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-election-provider-support", "frame-support", @@ -5018,7 +4978,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5033,7 +4993,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "beefy-primitives", "frame-support", @@ -5049,7 +5009,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5072,7 +5032,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5154,7 +5114,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5173,7 +5133,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5190,7 +5150,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5206,7 +5166,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5229,7 +5189,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5242,7 +5202,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5260,7 +5220,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5275,7 +5235,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5298,7 +5258,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5314,7 +5274,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5334,7 +5294,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5351,7 +5311,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5368,7 +5328,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5386,7 +5346,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5401,7 +5361,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5416,7 +5376,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "frame-system", @@ -5430,10 +5390,11 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "frame-system", + "log", "parity-scale-codec", "scale-info", "sp-core", @@ -5445,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5464,7 +5425,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "frame-system", @@ -5481,7 +5442,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5504,7 +5465,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5520,7 +5481,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5535,7 +5496,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5550,7 +5511,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5566,7 +5527,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "frame-system", @@ -5587,7 +5548,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5603,7 +5564,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "frame-system", @@ -5617,7 +5578,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5640,7 +5601,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5651,7 +5612,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "log", "sp-arithmetic", @@ -5660,7 +5621,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "frame-system", @@ -5674,7 +5635,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5692,7 +5653,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5711,7 +5672,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-support", "frame-system", @@ -5728,7 +5689,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -5743,7 +5704,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5754,7 +5715,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5771,7 +5732,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5787,7 +5748,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5977,7 +5938,7 @@ dependencies = [ "cfg-if 1.0.0", "instant", "libc", - "redox_syscall 0.2.10", + "redox_syscall", "smallvec", "winapi", ] @@ -5990,7 +5951,7 @@ checksum = "28141e0cc4143da2443301914478dc976a61ffdb3f043058310c70df2fed8954" dependencies = [ "cfg-if 1.0.0", "libc", - "redox_syscall 0.2.10", + "redox_syscall", "smallvec", "windows-sys", ] @@ -7793,20 +7754,6 @@ dependencies = [ "output_vt100", ] -[[package]] -name = "prettytable-rs" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fd04b170004fa2daccf418a7f8253aaf033c27760b5f225889024cf66d7ac2e" -dependencies = [ - "atty", - "csv", - "encode_unicode", - "lazy_static", - "term", - "unicode-width", -] - [[package]] name = "primitive-types" version = "0.11.1" @@ -7918,7 +7865,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "444879275cb4fd84958b1a1d5420d15e6fcf7c235fe47f053c9c2a80aceb6001" dependencies = [ "bytes", - "prost-derive", + "prost-derive 0.9.0", +] + +[[package]] +name = "prost" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc03e116981ff7d8da8e5c220e374587b98d294af7ba7dd7fda761158f00086f" +dependencies = [ + "bytes", + "prost-derive 0.10.1", ] [[package]] @@ -7934,7 +7891,7 @@ dependencies = [ "log", "multimap", "petgraph", - "prost", + "prost 0.9.0", "prost-types", "regex", "tempfile", @@ -7954,6 +7911,19 @@ dependencies = [ "syn", ] +[[package]] +name = "prost-derive" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b670f45da57fb8542ebdbb6105a925fe571b67f9e7ed9f47a06a84e72b4e7cc" +dependencies = [ + "anyhow", + "itertools", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "prost-types" version = "0.9.0" @@ -7961,7 +7931,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "534b7a0e836e3c482d2693070f982e39e7611da9695d4d1f5a4b186b51faef0a" dependencies = [ "bytes", - "prost", + "prost 0.9.0", ] [[package]] @@ -8155,12 +8125,6 @@ dependencies = [ "num_cpus", ] -[[package]] -name = "redox_syscall" -version = "0.1.57" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" - [[package]] name = "redox_syscall" version = "0.2.10" @@ -8170,17 +8134,6 @@ dependencies = [ "bitflags", ] -[[package]] -name = "redox_users" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d" -dependencies = [ - "getrandom 0.1.16", - "redox_syscall 0.1.57", - "rust-argon2", -] - [[package]] name = "redox_users" version = "0.4.0" @@ -8188,7 +8141,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64" dependencies = [ "getrandom 0.2.3", - "redox_syscall 0.2.10", + "redox_syscall", ] [[package]] @@ -8295,7 +8248,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -8518,18 +8471,6 @@ dependencies = [ "thiserror", ] -[[package]] -name = "rust-argon2" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb" -dependencies = [ - "base64", - "blake2b_simd 0.5.11", - "constant_time_eq", - "crossbeam-utils", -] - [[package]] name = "rustc-demangle" version = "0.1.21" @@ -8673,7 +8614,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "log", "sp-core", @@ -8684,7 +8625,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "futures 0.3.21", @@ -8693,7 +8634,7 @@ dependencies = [ "libp2p", "log", "parity-scale-codec", - "prost", + "prost 0.10.3", "prost-build", "rand 0.7.3", "sc-client-api", @@ -8711,7 +8652,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8734,7 +8675,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8750,7 +8691,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8767,7 +8708,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8778,7 +8719,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "chrono", "clap", @@ -8817,7 +8758,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "fnv", "futures 0.3.21", @@ -8845,7 +8786,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "hash-db", "kvdb", @@ -8870,7 +8811,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "futures 0.3.21", @@ -8894,7 +8835,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "fork-tree", @@ -8937,7 +8878,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "jsonrpsee", @@ -8959,7 +8900,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8972,7 +8913,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "futures 0.3.21", @@ -8997,7 +8938,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "sc-client-api", "sp-authorship", @@ -9008,7 +8949,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "lazy_static", "lru 0.7.5", @@ -9035,7 +8976,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "environmental", "parity-scale-codec", @@ -9052,7 +8993,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "log", "parity-scale-codec", @@ -9067,7 +9008,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9085,7 +9026,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "ahash", "async-trait", @@ -9125,7 +9066,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "finality-grandpa", "futures 0.3.21", @@ -9146,7 +9087,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "ansi_term", "futures 0.3.21", @@ -9163,7 +9104,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "hex", @@ -9178,7 +9119,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "asynchronous-codec", @@ -9200,13 +9141,14 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.0", "pin-project 1.0.10", - "prost", + "prost 0.10.3", "prost-build", "rand 0.7.3", "sc-block-builder", "sc-client-api", "sc-consensus", "sc-network-common", + "sc-network-light", "sc-network-sync", "sc-peerset", "sc-utils", @@ -9229,7 +9171,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "libp2p", @@ -9242,7 +9184,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "ahash", "futures 0.3.21", @@ -9256,10 +9198,30 @@ dependencies = [ "tracing", ] +[[package]] +name = "sc-network-light" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" +dependencies = [ + "futures 0.3.21", + "libp2p", + "log", + "parity-scale-codec", + "prost 0.10.3", + "prost-build", + "sc-client-api", + "sc-network-common", + "sc-peerset", + "sp-blockchain", + "sp-core", + "sp-runtime", + "thiserror", +] + [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "bitflags", "either", @@ -9269,7 +9231,7 @@ dependencies = [ "log", "lru 0.7.5", "parity-scale-codec", - "prost", + "prost 0.10.3", "prost-build", "sc-client-api", "sc-consensus", @@ -9288,7 +9250,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "bytes", "fnv", @@ -9316,7 +9278,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "libp2p", @@ -9329,7 +9291,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9338,7 +9300,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "hash-db", @@ -9368,7 +9330,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "jsonrpsee", @@ -9391,7 +9353,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "jsonrpsee", @@ -9404,7 +9366,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "directories", @@ -9469,7 +9431,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "log", "parity-scale-codec", @@ -9483,7 +9445,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9502,7 +9464,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "libc", @@ -9521,7 +9483,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "chrono", "futures 0.3.21", @@ -9539,7 +9501,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "ansi_term", "atty", @@ -9570,7 +9532,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9581,7 +9543,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9608,7 +9570,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "log", @@ -9621,7 +9583,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "futures-timer", @@ -10098,7 +10060,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "hash-db", "log", @@ -10115,7 +10077,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "blake2", "proc-macro-crate", @@ -10127,7 +10089,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10140,7 +10102,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "integer-sqrt", "num-traits", @@ -10155,7 +10117,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10168,7 +10130,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "parity-scale-codec", @@ -10180,7 +10142,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", "sp-api", @@ -10192,7 +10154,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "log", @@ -10210,7 +10172,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "futures 0.3.21", @@ -10229,7 +10191,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "merlin", @@ -10252,7 +10214,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10266,7 +10228,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10279,7 +10241,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "base58", "bitflags", @@ -10325,7 +10287,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "blake2", "byteorder", @@ -10339,7 +10301,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "proc-macro2", "quote", @@ -10350,7 +10312,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -10359,7 +10321,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "proc-macro2", "quote", @@ -10369,7 +10331,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "environmental", "parity-scale-codec", @@ -10380,7 +10342,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "finality-grandpa", "log", @@ -10398,7 +10360,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10412,7 +10374,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "hash-db", @@ -10437,7 +10399,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "lazy_static", "sp-core", @@ -10448,7 +10410,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "futures 0.3.21", @@ -10465,7 +10427,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "thiserror", "zstd", @@ -10474,7 +10436,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "log", "parity-scale-codec", @@ -10489,7 +10451,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10503,7 +10465,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "sp-api", "sp-core", @@ -10513,7 +10475,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "backtrace", "lazy_static", @@ -10523,7 +10485,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "rustc-hash", "serde", @@ -10533,7 +10495,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "either", "hash256-std-hasher", @@ -10555,7 +10517,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10572,7 +10534,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "Inflector", "proc-macro-crate", @@ -10584,7 +10546,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "log", "parity-scale-codec", @@ -10598,7 +10560,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "serde", "serde_json", @@ -10607,7 +10569,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10621,7 +10583,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10632,7 +10594,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "hash-db", "log", @@ -10654,12 +10616,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10672,7 +10634,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "log", "sp-core", @@ -10685,7 +10647,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "futures-timer", @@ -10701,7 +10663,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", "sp-std", @@ -10713,7 +10675,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "sp-api", "sp-runtime", @@ -10722,7 +10684,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "log", @@ -10738,7 +10700,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "hash-db", "memory-db", @@ -10754,7 +10716,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10771,7 +10733,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10782,7 +10744,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "impl-trait-for-tuples", "log", @@ -10800,9 +10762,9 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "ss58-registry" -version = "1.17.0" +version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b84a70894df7a73666e0694f44b41a9571625e9546fb58a0818a565d2c7e084" +checksum = "ceb8b72a924ccfe7882d0e26144c114503760a4d1248bb5cd06c8ab2d55404cc" dependencies = [ "Inflector", "num-format", @@ -10974,7 +10936,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "platforms", ] @@ -10982,7 +10944,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", @@ -11003,7 +10965,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures-util", "hyper", @@ -11016,7 +10978,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "jsonrpsee", "log", @@ -11037,7 +10999,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "async-trait", "futures 0.3.21", @@ -11063,7 +11025,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -11073,7 +11035,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11084,7 +11046,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "ansi_term", "build-helper", @@ -11200,22 +11162,11 @@ dependencies = [ "cfg-if 1.0.0", "libc", "rand 0.8.5", - "redox_syscall 0.2.10", + "redox_syscall", "remove_dir_all", "winapi", ] -[[package]] -name = "term" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edd106a334b7657c10b7c540a0106114feadeb4dc314513e97df481d5d966f42" -dependencies = [ - "byteorder", - "dirs", - "winapi", -] - [[package]] name = "termcolor" version = "1.1.2" @@ -11810,7 +11761,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#76a6cc3ca66926fa88569c2b5bfe2b311ef335ae" +source = "git+https://github.com/paritytech/substrate?branch=master#6a7af64fea375bd8599dbf1389a38c53e169808f" dependencies = [ "clap", "jsonrpsee", diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index d615b932bc30..935863d683ad 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1437,6 +1437,7 @@ impl sp_runtime::traits::Convert for U256ToBalance { parameter_types! { pub const PoolsPalletId: PalletId = PalletId(*b"py/nopls"); + pub const MinPointsToBalance: u32 = 10; } impl pallet_nomination_pools::Config for Runtime { @@ -1451,6 +1452,7 @@ impl pallet_nomination_pools::Config for Runtime { // we use the same number of allowed unlocking chunks as with staking. type MaxUnbonding = ::MaxUnlockingChunks; type PalletId = PoolsPalletId; + type MinPointsToBalance = MinPointsToBalance; } pub struct InitiatePoolConfigs; diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 00bcdb8b44cf..cd266a91667a 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -1020,6 +1020,7 @@ impl sp_runtime::traits::Convert for U256ToBalance { parameter_types! { pub const PoolsPalletId: PalletId = PalletId(*b"py/nopls"); + pub const MinPointsToBalance: u32 = 10; } impl pallet_nomination_pools::Config for Runtime { @@ -1034,6 +1035,7 @@ impl pallet_nomination_pools::Config for Runtime { // we use the same number of allowed unlocking chunks as with staking. type MaxUnbonding = ::MaxUnlockingChunks; type PalletId = PoolsPalletId; + type MinPointsToBalance = MinPointsToBalance; } construct_runtime! {