From 34f65f125296e54cab6373901baff9cbe3f0a211 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Fri, 12 Jun 2020 13:17:35 +0200 Subject: [PATCH 1/6] Bump versions, tweak deposit costs. --- runtime/kusama/src/constants.rs | 4 ++-- runtime/kusama/src/lib.rs | 2 +- runtime/polkadot/src/constants.rs | 2 +- runtime/polkadot/src/lib.rs | 2 +- runtime/westend/src/constants.rs | 2 +- runtime/westend/src/lib.rs | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/runtime/kusama/src/constants.rs b/runtime/kusama/src/constants.rs index e760362cc042..284f56f24969 100644 --- a/runtime/kusama/src/constants.rs +++ b/runtime/kusama/src/constants.rs @@ -19,12 +19,12 @@ pub mod currency { use primitives::Balance; pub const DOTS: Balance = 1_000_000_000_000; - pub const DOLLARS: Balance = DOTS; + pub const DOLLARS: Balance = DOTS / 6; pub const CENTS: Balance = DOLLARS / 100; pub const MILLICENTS: Balance = CENTS / 1_000; pub const fn deposit(items: u32, bytes: u32) -> Balance { - items as Balance * 15 * CENTS + (bytes as Balance) * 6 * CENTS + items as Balance * 20 * DOLLARS + (bytes as Balance) * 100 * MILLICENTS } } diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index ed27fdf660e8..39aeb3e318d2 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -85,7 +85,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("kusama"), impl_name: create_runtime_str!("parity-kusama"), authoring_version: 2, - spec_version: 2007, + spec_version: 2008, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, diff --git a/runtime/polkadot/src/constants.rs b/runtime/polkadot/src/constants.rs index 8aede2f547d2..72e109ef8f96 100644 --- a/runtime/polkadot/src/constants.rs +++ b/runtime/polkadot/src/constants.rs @@ -24,7 +24,7 @@ pub mod currency { pub const MILLICENTS: Balance = CENTS / 1_000; // 100_000 pub const fn deposit(items: u32, bytes: u32) -> Balance { - items as Balance * 15 * CENTS + (bytes as Balance) * 6 * CENTS + items as Balance * 20 * DOLLARS + (bytes as Balance) * 100 * MILLICENTS } } diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index cc40ee538d96..dbe7046db89b 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -90,7 +90,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("polkadot"), impl_name: create_runtime_str!("parity-polkadot"), authoring_version: 0, - spec_version: 7, + spec_version: 8, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 0, diff --git a/runtime/westend/src/constants.rs b/runtime/westend/src/constants.rs index b51a202225b4..779f08c287bb 100644 --- a/runtime/westend/src/constants.rs +++ b/runtime/westend/src/constants.rs @@ -24,7 +24,7 @@ pub mod currency { pub const MILLICENTS: Balance = CENTS / 1_000; pub const fn deposit(items: u32, bytes: u32) -> Balance { - items as Balance * 15 * CENTS + (bytes as Balance) * 6 * CENTS + items as Balance * 20 * DOLLARS + (bytes as Balance) * 100 * MILLICENTS } } diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 14b8cbb4ccfd..9eed9beb0708 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -82,7 +82,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("westend"), impl_name: create_runtime_str!("parity-westend"), authoring_version: 2, - spec_version: 27, + spec_version: 28, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, From 8a2779013c01c14038c1c37fe13404a9e7f45c91 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Fri, 12 Jun 2020 13:19:06 +0200 Subject: [PATCH 2/6] Version --- Cargo.toml | 2 +- availability-store/Cargo.toml | 2 +- cli/Cargo.toml | 2 +- collator/Cargo.toml | 2 +- erasure-coding/Cargo.toml | 2 +- network/Cargo.toml | 2 +- network/test/Cargo.toml | 2 +- parachain/Cargo.toml | 2 +- parachain/test-parachains/adder/Cargo.toml | 2 +- parachain/test-parachains/halt/Cargo.toml | 2 +- primitives/Cargo.toml | 2 +- rpc/Cargo.toml | 2 +- runtime/common/Cargo.toml | 2 +- runtime/kusama/Cargo.toml | 2 +- runtime/polkadot/Cargo.toml | 2 +- runtime/test-runtime/Cargo.toml | 2 +- runtime/westend/Cargo.toml | 2 +- service/Cargo.toml | 2 +- statement-table/Cargo.toml | 2 +- validation/Cargo.toml | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7b6d6aed5502..b98ef7495026 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ path = "src/main.rs" [package] name = "polkadot" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] edition = "2018" diff --git a/availability-store/Cargo.toml b/availability-store/Cargo.toml index 77d9b6b21d98..c5e7d5349e67 100644 --- a/availability-store/Cargo.toml +++ b/availability-store/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "polkadot-availability-store" description = "Persistent database for parachain data" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] edition = "2018" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ec4df900be11..58ade5b86aa7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-cli" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] description = "Polkadot Relay-chain Client Node" edition = "2018" diff --git a/collator/Cargo.toml b/collator/Cargo.toml index a2e8691e7a64..98fa136dc4dc 100644 --- a/collator/Cargo.toml +++ b/collator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-collator" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] description = "Collator node implementation" edition = "2018" diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index 1fd28dfe78f9..70902eb800be 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-erasure-coding" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] edition = "2018" diff --git a/network/Cargo.toml b/network/Cargo.toml index 5a806c5b0be2..7def2b8ddb3d 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-network" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] description = "Polkadot-specific networking protocol" edition = "2018" diff --git a/network/test/Cargo.toml b/network/test/Cargo.toml index 1cf3a0040863..4819dbf807a4 100644 --- a/network/test/Cargo.toml +++ b/network/test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-network-test" -version = "0.8.7" +version = "0.8.8-dev" license = "GPL-3.0" authors = ["Parity Technologies "] edition = "2018" diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 0bfb5351c139..1616c84fdf4c 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-parachain" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] description = "Types and utilities for creating and working with parachains" edition = "2018" diff --git a/parachain/test-parachains/adder/Cargo.toml b/parachain/test-parachains/adder/Cargo.toml index f592051e6f4e..68f0c53dd949 100644 --- a/parachain/test-parachains/adder/Cargo.toml +++ b/parachain/test-parachains/adder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-parachain-adder" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] description = "Test parachain which adds to a number as its state transition" edition = "2018" diff --git a/parachain/test-parachains/halt/Cargo.toml b/parachain/test-parachains/halt/Cargo.toml index ef16dee2a49d..96cb5ad1f718 100644 --- a/parachain/test-parachains/halt/Cargo.toml +++ b/parachain/test-parachains/halt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-parachain-halt" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] description = "Test parachain which executes forever" edition = "2018" diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 1b67dce9c51b..0263c476f3bd 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-primitives" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] edition = "2018" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index c5f6c4ac6125..27914f426508 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-rpc" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] edition = "2018" diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 16fa4610ca55..81cdd8cfc69e 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-runtime-common" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] edition = "2018" diff --git a/runtime/kusama/Cargo.toml b/runtime/kusama/Cargo.toml index 184ea7c080f2..018060b0971d 100644 --- a/runtime/kusama/Cargo.toml +++ b/runtime/kusama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kusama-runtime" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" diff --git a/runtime/polkadot/Cargo.toml b/runtime/polkadot/Cargo.toml index d5c2db050e3d..301e6c3e311d 100644 --- a/runtime/polkadot/Cargo.toml +++ b/runtime/polkadot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-runtime" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" diff --git a/runtime/test-runtime/Cargo.toml b/runtime/test-runtime/Cargo.toml index 809a11965dd6..41ddd2b64961 100644 --- a/runtime/test-runtime/Cargo.toml +++ b/runtime/test-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-test-runtime" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" diff --git a/runtime/westend/Cargo.toml b/runtime/westend/Cargo.toml index 8446071d2976..32a898c5e2eb 100644 --- a/runtime/westend/Cargo.toml +++ b/runtime/westend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "westend-runtime" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" diff --git a/service/Cargo.toml b/service/Cargo.toml index 9c50b3c99a81..9c4482d358da 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-service" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] edition = "2018" diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index d2f2d0f8cb36..0118ec9f5393 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-statement-table" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] edition = "2018" diff --git a/validation/Cargo.toml b/validation/Cargo.toml index 91b3104a6421..ca5928a3a181 100644 --- a/validation/Cargo.toml +++ b/validation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-validation" -version = "0.8.7" +version = "0.8.8-dev" authors = ["Parity Technologies "] edition = "2018" From 5f1ada31b41c76551d3f77d96b1d86f24c45805f Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Fri, 12 Jun 2020 13:37:50 +0200 Subject: [PATCH 3/6] Lock --- Cargo.lock | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 379d3340120c..65c60919a2d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2222,7 +2222,7 @@ dependencies = [ [[package]] name = "kusama-runtime" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "bitvec", "frame-benchmarking", @@ -4064,7 +4064,7 @@ checksum = "feb3b2b1033b8a60b4da6ee470325f887758c95d5320f52f9ce0df055a55940e" [[package]] name = "polkadot" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "assert_cmd", "futures 0.3.5", @@ -4077,7 +4077,7 @@ dependencies = [ [[package]] name = "polkadot-availability-store" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "derive_more 0.99.7", "exit-future", @@ -4103,7 +4103,7 @@ dependencies = [ [[package]] name = "polkadot-cli" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "frame-benchmarking-cli", "futures 0.3.5", @@ -4127,7 +4127,7 @@ dependencies = [ [[package]] name = "polkadot-collator" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "futures 0.3.5", "futures-timer 2.0.2", @@ -4154,7 +4154,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "derive_more 0.15.0", "parity-scale-codec", @@ -4166,7 +4166,7 @@ dependencies = [ [[package]] name = "polkadot-network" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "arrayvec 0.4.12", "bytes 0.5.4", @@ -4194,7 +4194,7 @@ dependencies = [ [[package]] name = "polkadot-network-test" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "futures 0.3.5", "log 0.4.8", @@ -4237,7 +4237,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "derive_more 0.99.7", "log 0.4.8", @@ -4256,7 +4256,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "bitvec", "frame-system", @@ -4278,7 +4278,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "jsonrpc-core", "pallet-transaction-payment-rpc", @@ -4303,7 +4303,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "bitvec", "frame-benchmarking", @@ -4377,7 +4377,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "bitvec", "frame-benchmarking", @@ -4462,7 +4462,7 @@ dependencies = [ [[package]] name = "polkadot-service" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "env_logger", "frame-benchmarking", @@ -4521,7 +4521,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -4530,7 +4530,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "bitvec", "frame-executive", @@ -4608,7 +4608,7 @@ dependencies = [ [[package]] name = "polkadot-validation" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "bitvec", "derive_more 0.14.1", @@ -7706,7 +7706,7 @@ dependencies = [ [[package]] name = "test-parachain-adder" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "dlmalloc", "parity-scale-codec", @@ -7745,7 +7745,7 @@ dependencies = [ [[package]] name = "test-parachain-halt" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "substrate-wasm-builder-runner 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -8613,7 +8613,7 @@ dependencies = [ [[package]] name = "westend-runtime" -version = "0.8.7" +version = "0.8.8-dev" dependencies = [ "bitvec", "frame-benchmarking", From 0854987d21aeae3cae9275f864a1e132185d3c01 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Fri, 12 Jun 2020 15:12:43 +0200 Subject: [PATCH 4/6] Make test work ok when numbers are not round. --- runtime/kusama/src/constants.rs | 10 +++++++--- runtime/polkadot/src/constants.rs | 14 ++++++++++---- runtime/westend/src/constants.rs | 14 ++++++++++---- 3 files changed, 27 insertions(+), 11 deletions(-) diff --git a/runtime/kusama/src/constants.rs b/runtime/kusama/src/constants.rs index 284f56f24969..e06325d1bb95 100644 --- a/runtime/kusama/src/constants.rs +++ b/runtime/kusama/src/constants.rs @@ -97,14 +97,16 @@ mod tests { use frame_support::weights::WeightToFeePolynomial; use runtime_common::{MaximumBlockWeight, ExtrinsicBaseWeight}; use super::fee::WeightToFee; - use super::currency::{CENTS, DOLLARS}; + use super::currency::{CENTS, DOLLARS, MILLICENTS}; #[test] // This function tests that the fee for `MaximumBlockWeight` of weight is correct fn full_block_fee_is_correct() { // A full block should cost 16 DOLLARS println!("Base: {}", ExtrinsicBaseWeight::get()); - assert_eq!(WeightToFee::calc(&MaximumBlockWeight::get()), 16 * DOLLARS) + let x = WeightToFee::calc(&MaximumBlockWeight::get()); + let y = 16 * DOLLARS; + assert!(x.max(y) - x.min(y) < MILLICENTS); } #[test] @@ -112,6 +114,8 @@ mod tests { fn extrinsic_base_fee_is_correct() { // `ExtrinsicBaseWeight` should cost 1/10 of a CENT println!("Base: {}", ExtrinsicBaseWeight::get()); - assert_eq!(WeightToFee::calc(&ExtrinsicBaseWeight::get()), CENTS / 10) + let x = WeightToFee::calc(&ExtrinsicBaseWeight::get()); + let y = CENTS / 10; + assert!(x.max(y) - x.min(y) < MILLICENTS); } } diff --git a/runtime/polkadot/src/constants.rs b/runtime/polkadot/src/constants.rs index 72e109ef8f96..331d97f364cf 100644 --- a/runtime/polkadot/src/constants.rs +++ b/runtime/polkadot/src/constants.rs @@ -86,22 +86,28 @@ pub mod fee { #[cfg(test)] mod tests { + use frame_support::weights::WeightToFeePolynomial; use runtime_common::{MaximumBlockWeight, ExtrinsicBaseWeight}; use super::fee::WeightToFee; - use super::currency::{CENTS, DOLLARS}; - use frame_support::weights::WeightToFeePolynomial; + use super::currency::{CENTS, DOLLARS, MILLICENTS}; #[test] // This function tests that the fee for `MaximumBlockWeight` of weight is correct fn full_block_fee_is_correct() { // A full block should cost 16 DOLLARS - assert_eq!(WeightToFee::calc(&MaximumBlockWeight::get()), 16 * DOLLARS) + println!("Base: {}", ExtrinsicBaseWeight::get()); + let x = WeightToFee::calc(&MaximumBlockWeight::get()); + let y = 16 * DOLLARS; + assert!(x.max(y) - x.min(y) < MILLICENTS); } #[test] // This function tests that the fee for `ExtrinsicBaseWeight` of weight is correct fn extrinsic_base_fee_is_correct() { // `ExtrinsicBaseWeight` should cost 1/10 of a CENT - assert_eq!(WeightToFee::calc(&ExtrinsicBaseWeight::get()), CENTS / 10) + println!("Base: {}", ExtrinsicBaseWeight::get()); + let x = WeightToFee::calc(&ExtrinsicBaseWeight::get()); + let y = CENTS / 10; + assert!(x.max(y) - x.min(y) < MILLICENTS); } } diff --git a/runtime/westend/src/constants.rs b/runtime/westend/src/constants.rs index 779f08c287bb..57250b6d9e59 100644 --- a/runtime/westend/src/constants.rs +++ b/runtime/westend/src/constants.rs @@ -86,22 +86,28 @@ pub mod fee { #[cfg(test)] mod tests { + use frame_support::weights::WeightToFeePolynomial; use runtime_common::{MaximumBlockWeight, ExtrinsicBaseWeight}; use super::fee::WeightToFee; - use super::currency::{CENTS, DOLLARS}; - use frame_support::weights::WeightToFeePolynomial; + use super::currency::{CENTS, DOLLARS, MILLICENTS}; #[test] // This function tests that the fee for `MaximumBlockWeight` of weight is correct fn full_block_fee_is_correct() { // A full block should cost 16 DOLLARS - assert_eq!(WeightToFee::calc(&MaximumBlockWeight::get()), 16 * DOLLARS) + println!("Base: {}", ExtrinsicBaseWeight::get()); + let x = WeightToFee::calc(&MaximumBlockWeight::get()); + let y = 16 * DOLLARS; + assert!(x.max(y) - x.min(y) < MILLICENTS); } #[test] // This function tests that the fee for `ExtrinsicBaseWeight` of weight is correct fn extrinsic_base_fee_is_correct() { // `ExtrinsicBaseWeight` should cost 1/10 of a CENT - assert_eq!(WeightToFee::calc(&ExtrinsicBaseWeight::get()), CENTS / 10) + println!("Base: {}", ExtrinsicBaseWeight::get()); + let x = WeightToFee::calc(&ExtrinsicBaseWeight::get()); + let y = CENTS / 10; + assert!(x.max(y) - x.min(y) < MILLICENTS); } } From d0cd201f7adb1b33488621a7c9d016b1a35928da Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Fri, 12 Jun 2020 15:26:05 +0200 Subject: [PATCH 5/6] Bump Substrate --- Cargo.lock | 275 +++++++++++++++++++++++++++-------------------------- 1 file changed, 138 insertions(+), 137 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 65c60919a2d1..96989df2d7b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1171,7 +1171,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", ] @@ -1179,7 +1179,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -1196,7 +1196,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "parity-scale-codec", @@ -1214,7 +1214,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -1229,7 +1229,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "11.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "serde", @@ -1240,7 +1240,7 @@ dependencies = [ [[package]] name = "frame-support" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "bitmask", "frame-metadata", @@ -1265,7 +1265,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support-procedural-tools", "proc-macro2 1.0.17", @@ -1276,7 +1276,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -1288,7 +1288,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "proc-macro2 1.0.17", "quote 1.0.6", @@ -1298,7 +1298,7 @@ dependencies = [ [[package]] name = "frame-system" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -1314,7 +1314,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "frame-support", @@ -1328,7 +1328,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "sp-api", @@ -3230,7 +3230,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3246,7 +3246,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3261,7 +3261,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3283,7 +3283,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3297,7 +3297,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3313,7 +3313,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3328,7 +3328,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3343,7 +3343,7 @@ dependencies = [ [[package]] name = "pallet-finality-tracker" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3359,7 +3359,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3379,7 +3379,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "enumflags2", "frame-benchmarking", @@ -3395,7 +3395,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3415,7 +3415,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3431,7 +3431,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3445,7 +3445,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3460,7 +3460,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3474,7 +3474,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3489,7 +3489,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3510,7 +3510,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3525,7 +3525,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3538,7 +3538,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "enumflags2", "frame-support", @@ -3553,7 +3553,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3568,7 +3568,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3586,7 +3586,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3600,7 +3600,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3614,7 +3614,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3636,7 +3636,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.17", @@ -3647,7 +3647,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3661,7 +3661,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3679,7 +3679,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "frame-system", @@ -3693,7 +3693,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -3711,7 +3711,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-support", "parity-scale-codec", @@ -3724,7 +3724,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3739,7 +3739,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3755,7 +3755,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5376,7 +5376,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "bytes 0.5.4", "derive_more 0.99.7", @@ -5403,7 +5403,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5427,7 +5427,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -5443,7 +5443,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "impl-trait-for-tuples", "sc-chain-spec-derive", @@ -5459,7 +5459,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.17", @@ -5470,13 +5470,12 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "ansi_term 0.12.1", "atty", "chrono", "derive_more 0.99.7", - "directories", "env_logger", "fdlimit", "futures 0.3.5", @@ -5511,7 +5510,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "fnv", @@ -5547,7 +5546,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "blake2-rfc", "hash-db", @@ -5576,7 +5575,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "sc-client-api", "sp-blockchain", @@ -5587,7 +5586,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "fork-tree", @@ -5629,7 +5628,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -5652,7 +5651,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "fork-tree", "parity-scale-codec", @@ -5665,7 +5664,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5687,7 +5686,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "log 0.4.8", "sc-client-api", @@ -5701,7 +5700,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "lazy_static", @@ -5729,7 +5728,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "log 0.4.8", @@ -5746,7 +5745,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -5761,7 +5760,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "cranelift-codegen", "cranelift-wasm", @@ -5782,7 +5781,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "assert_matches", "derive_more 0.99.7", @@ -5820,7 +5819,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "finality-grandpa", @@ -5837,7 +5836,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "ansi_term 0.12.1", "futures 0.3.5", @@ -5855,7 +5854,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "hex", @@ -5870,7 +5869,7 @@ dependencies = [ [[package]] name = "sc-light" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "hash-db", "lazy_static", @@ -5889,7 +5888,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "bitflags", "bs58", @@ -5941,7 +5940,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5956,7 +5955,7 @@ dependencies = [ [[package]] name = "sc-network-test" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "env_logger", "futures 0.3.5", @@ -5983,7 +5982,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "bytes 0.5.4", "fnv", @@ -6010,7 +6009,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "futures 0.3.5", "libp2p", @@ -6023,7 +6022,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "log 0.4.8", "substrate-prometheus-endpoint", @@ -6032,7 +6031,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "futures 0.3.5", "hash-db", @@ -6064,7 +6063,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -6088,7 +6087,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "jsonrpc-core", "jsonrpc-http-server", @@ -6103,9 +6102,10 @@ dependencies = [ [[package]] name = "sc-service" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", + "directories", "exit-future", "futures 0.1.29", "futures 0.3.5", @@ -6157,6 +6157,7 @@ dependencies = [ "sp-version", "substrate-prometheus-endpoint", "sysinfo", + "tempfile", "tracing", "wasm-timer", ] @@ -6164,7 +6165,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -6178,7 +6179,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "bytes 0.5.4", "futures 0.3.5", @@ -6200,7 +6201,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "erased-serde", "log 0.4.8", @@ -6215,7 +6216,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -6235,7 +6236,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -6622,7 +6623,7 @@ dependencies = [ [[package]] name = "sp-allocator" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "log 0.4.8", @@ -6634,7 +6635,7 @@ dependencies = [ [[package]] name = "sp-api" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "hash-db", "parity-scale-codec", @@ -6649,7 +6650,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "blake2-rfc", "proc-macro-crate", @@ -6661,7 +6662,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "serde", @@ -6673,7 +6674,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "integer-sqrt", "num-traits 0.2.11", @@ -6686,7 +6687,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "sp-api", @@ -6698,7 +6699,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -6709,7 +6710,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "sp-api", @@ -6721,7 +6722,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "log 0.4.8", @@ -6737,7 +6738,7 @@ dependencies = [ [[package]] name = "sp-chain-spec" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "serde", "serde_json", @@ -6746,7 +6747,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -6769,7 +6770,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "sp-api", @@ -6783,7 +6784,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "merlin", "parity-scale-codec", @@ -6800,7 +6801,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -6812,7 +6813,7 @@ dependencies = [ [[package]] name = "sp-core" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "base58", "blake2-rfc", @@ -6854,7 +6855,7 @@ dependencies = [ [[package]] name = "sp-database" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "kvdb", "parking_lot 0.10.2", @@ -6863,7 +6864,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "proc-macro2 1.0.17", "quote 1.0.6", @@ -6873,7 +6874,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "environmental", "parity-scale-codec", @@ -6884,7 +6885,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "finality-grandpa", "log 0.4.8", @@ -6900,7 +6901,7 @@ dependencies = [ [[package]] name = "sp-finality-tracker" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -6910,7 +6911,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "parity-scale-codec", @@ -6922,7 +6923,7 @@ dependencies = [ [[package]] name = "sp-io" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "futures 0.3.5", "hash-db", @@ -6942,7 +6943,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "lazy_static", "sp-core", @@ -6953,7 +6954,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "serde", @@ -6965,7 +6966,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.17", @@ -6976,7 +6977,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "sp-api", "sp-core", @@ -6986,7 +6987,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "backtrace", "log 0.4.8", @@ -6995,7 +6996,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "serde", "sp-core", @@ -7004,7 +7005,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "either", "hash256-std-hasher", @@ -7026,7 +7027,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "primitive-types", @@ -7041,7 +7042,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "Inflector", "proc-macro-crate", @@ -7053,7 +7054,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "serde", "serde_json", @@ -7062,7 +7063,7 @@ dependencies = [ [[package]] name = "sp-session" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "sp-api", @@ -7075,7 +7076,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -7085,7 +7086,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "hash-db", "log 0.4.8", @@ -7104,12 +7105,12 @@ dependencies = [ [[package]] name = "sp-std" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" [[package]] name = "sp-storage" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "impl-serde 0.2.3", "ref-cast", @@ -7121,7 +7122,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7135,7 +7136,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "tracing", ] @@ -7143,7 +7144,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -7159,7 +7160,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "hash-db", "memory-db", @@ -7173,7 +7174,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "futures 0.3.5", "futures-core", @@ -7184,7 +7185,7 @@ dependencies = [ [[package]] name = "sp-version" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "impl-serde 0.2.3", "parity-scale-codec", @@ -7196,7 +7197,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7327,7 +7328,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "chrono", "clear_on_drop", @@ -7354,7 +7355,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "platforms", ] @@ -7362,7 +7363,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.5", @@ -7383,7 +7384,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.8.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "async-std", "derive_more 0.99.7", @@ -7397,7 +7398,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "futures 0.3.5", "hash-db", @@ -7419,7 +7420,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "cfg-if", "frame-executive", @@ -7459,7 +7460,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0-rc3" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" dependencies = [ "futures 0.3.5", "parity-scale-codec", @@ -7480,7 +7481,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder-runner" version = "1.0.6" -source = "git+https://github.com/paritytech/substrate#e2a6c3e58c4d13b1f08bfd93b0373cb59b44aa61" +source = "git+https://github.com/paritytech/substrate#d735e4d0b5378c227f81a5127a1d4544de112fd8" [[package]] name = "substrate-wasm-builder-runner" From e6da2a38e75dc1b202aa0b7e72c62616e802f242 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Fri, 12 Jun 2020 15:27:34 +0200 Subject: [PATCH 6/6] Lock --- Cargo.lock | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 96989df2d7b7..9863a9901a06 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4071,6 +4071,7 @@ dependencies = [ "nix 0.17.0", "parity-util-mem", "polkadot-cli", + "polkadot-collator", "polkadot-service", "tempfile", ] @@ -4109,6 +4110,7 @@ dependencies = [ "futures 0.3.5", "log 0.4.8", "polkadot-service", + "polkadot-service-new", "sc-cli", "sc-client-api", "sc-client-db", @@ -4137,6 +4139,7 @@ dependencies = [ "polkadot-network", "polkadot-primitives", "polkadot-service", + "polkadot-service-new", "polkadot-validation", "sc-cli", "sc-client-api", @@ -4442,6 +4445,8 @@ dependencies = [ "pallet-vesting", "parity-scale-codec", "polkadot-primitives", + "rand 0.7.3", + "rand_chacha 0.2.2", "rustc-hex", "serde", "serde_derive", @@ -4519,6 +4524,65 @@ dependencies = [ "westend-runtime", ] +[[package]] +name = "polkadot-service-new" +version = "0.8.3" +dependencies = [ + "env_logger", + "frame-benchmarking", + "frame-system-rpc-runtime-api", + "futures 0.3.5", + "hex-literal", + "kusama-runtime", + "lazy_static", + "log 0.4.8", + "pallet-babe", + "pallet-im-online", + "pallet-staking", + "pallet-transaction-payment-rpc-runtime-api", + "parity-scale-codec", + "parking_lot 0.9.0", + "polkadot-network", + "polkadot-overseer", + "polkadot-primitives", + "polkadot-rpc", + "polkadot-runtime", + "polkadot-test-runtime-client", + "sc-authority-discovery", + "sc-basic-authorship", + "sc-block-builder", + "sc-chain-spec", + "sc-client-api", + "sc-client-db", + "sc-consensus", + "sc-consensus-babe", + "sc-executor", + "sc-finality-grandpa", + "sc-keystore", + "sc-network", + "sc-service", + "sc-telemetry", + "sc-transaction-pool", + "serde", + "slog", + "sp-api", + "sp-authority-discovery", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", + "sp-consensus-babe", + "sp-core", + "sp-finality-grandpa", + "sp-inherents", + "sp-io", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-transaction-pool", + "substrate-prometheus-endpoint", + "westend-runtime", +] + [[package]] name = "polkadot-statement-table" version = "0.8.8-dev"