From b452e12f330e5bb462cb8cd031f6e739fd9c000d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Wed, 20 May 2020 16:03:28 +0200 Subject: [PATCH] Companion for #6067 (#1110) * Companion to #6067 * Fix tests? * Use AvailableBlockLimit instead of hardcoding the value. * Bump substrate. --- Cargo.lock | 278 +++++++++++++++---------------- runtime/common/src/claims.rs | 1 + runtime/common/src/crowdfund.rs | 1 + runtime/common/src/lib.rs | 4 +- runtime/common/src/parachains.rs | 1 + runtime/common/src/registrar.rs | 1 + runtime/common/src/slots.rs | 1 + runtime/kusama/src/lib.rs | 2 + runtime/polkadot/src/lib.rs | 2 + runtime/test-runtime/src/lib.rs | 1 + runtime/westend/src/lib.rs | 3 +- 11 files changed, 154 insertions(+), 141 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c98bb7f44840..657ac9129473 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1221,7 +1221,7 @@ checksum = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" [[package]] name = "fork-tree" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", ] @@ -1229,7 +1229,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -1246,7 +1246,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-benchmarking", "parity-scale-codec", @@ -1264,7 +1264,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -1279,7 +1279,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "11.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "serde", @@ -1290,7 +1290,7 @@ dependencies = [ [[package]] name = "frame-support" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "bitmask", "frame-metadata", @@ -1314,7 +1314,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support-procedural-tools", "proc-macro2 1.0.12", @@ -1325,7 +1325,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -1337,7 +1337,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "proc-macro2 1.0.12", "quote 1.0.5", @@ -1347,7 +1347,7 @@ dependencies = [ [[package]] name = "frame-system" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -1363,7 +1363,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "sp-api", @@ -3265,7 +3265,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3281,7 +3281,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3296,7 +3296,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3318,7 +3318,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-benchmarking", "frame-support", @@ -3332,7 +3332,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-benchmarking", "frame-support", @@ -3348,7 +3348,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-benchmarking", "frame-support", @@ -3363,7 +3363,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-benchmarking", "frame-support", @@ -3378,7 +3378,7 @@ dependencies = [ [[package]] name = "pallet-finality-tracker" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3394,7 +3394,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3414,7 +3414,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "enumflags2", "frame-benchmarking", @@ -3430,7 +3430,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-benchmarking", "frame-support", @@ -3450,7 +3450,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3466,7 +3466,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3480,7 +3480,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3494,7 +3494,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3509,7 +3509,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-benchmarking", "frame-support", @@ -3530,7 +3530,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3543,7 +3543,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "enumflags2", "frame-support", @@ -3558,7 +3558,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-benchmarking", "frame-support", @@ -3573,7 +3573,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3591,7 +3591,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-benchmarking", "frame-support", @@ -3605,7 +3605,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3619,7 +3619,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-benchmarking", "frame-support", @@ -3642,7 +3642,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.12", @@ -3653,7 +3653,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3667,7 +3667,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-benchmarking", "frame-support", @@ -3685,7 +3685,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "frame-system", @@ -3698,7 +3698,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -3716,7 +3716,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-support", "parity-scale-codec", @@ -3729,7 +3729,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-benchmarking", "frame-support", @@ -3744,7 +3744,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-benchmarking", "frame-support", @@ -3760,7 +3760,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5309,7 +5309,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "bytes 0.5.4", "derive_more 0.99.6", @@ -5336,7 +5336,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -5352,7 +5352,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "impl-trait-for-tuples", "sc-chain-spec-derive", @@ -5368,7 +5368,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.12", @@ -5379,7 +5379,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "ansi_term 0.12.1", "app_dirs", @@ -5421,7 +5421,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "fnv", @@ -5457,7 +5457,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "blake2-rfc", "hash-db", @@ -5486,7 +5486,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "sc-client-api", "sp-blockchain", @@ -5497,7 +5497,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "fork-tree", @@ -5539,7 +5539,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -5561,7 +5561,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "fork-tree", "parity-scale-codec", @@ -5574,7 +5574,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5596,7 +5596,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "log 0.4.8", "sc-client-api", @@ -5610,7 +5610,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "lazy_static", @@ -5638,7 +5638,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "log 0.4.8", @@ -5655,7 +5655,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -5670,7 +5670,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "cranelift-codegen", "cranelift-wasm", @@ -5691,7 +5691,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "assert_matches", "derive_more 0.99.6", @@ -5728,7 +5728,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "finality-grandpa", @@ -5745,7 +5745,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "ansi_term 0.12.1", "futures 0.3.5", @@ -5762,7 +5762,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "hex", @@ -5777,7 +5777,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "bitflags", "bs58", @@ -5829,7 +5829,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5844,7 +5844,7 @@ dependencies = [ [[package]] name = "sc-network-test" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "env_logger", "futures 0.3.5", @@ -5871,7 +5871,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "bytes 0.5.4", "fnv", @@ -5898,7 +5898,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "futures 0.3.5", "libp2p", @@ -5911,7 +5911,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "log 0.4.8", "substrate-prometheus-endpoint", @@ -5920,7 +5920,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "futures 0.3.5", "hash-db", @@ -5952,7 +5952,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -5976,7 +5976,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "jsonrpc-core", "jsonrpc-http-server", @@ -5991,7 +5991,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "exit-future", @@ -6049,7 +6049,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -6063,7 +6063,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "bytes 0.5.4", "futures 0.3.5", @@ -6085,7 +6085,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "erased-serde", "log 0.4.8", @@ -6100,7 +6100,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -6120,7 +6120,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -6517,7 +6517,7 @@ dependencies = [ [[package]] name = "sp-allocator" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "log 0.4.8", @@ -6529,7 +6529,7 @@ dependencies = [ [[package]] name = "sp-api" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "hash-db", "parity-scale-codec", @@ -6544,7 +6544,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "blake2-rfc", "proc-macro-crate", @@ -6556,7 +6556,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "serde", @@ -6568,7 +6568,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "integer-sqrt", "num-traits 0.2.11", @@ -6582,7 +6582,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "sp-api", @@ -6594,7 +6594,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -6605,7 +6605,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "sp-api", @@ -6617,7 +6617,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "log 0.4.8", @@ -6633,7 +6633,7 @@ dependencies = [ [[package]] name = "sp-chain-spec" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "serde", "serde_json", @@ -6642,7 +6642,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -6665,7 +6665,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "sp-api", @@ -6679,7 +6679,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "merlin", "parity-scale-codec", @@ -6696,7 +6696,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -6708,7 +6708,7 @@ dependencies = [ [[package]] name = "sp-core" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "base58", "blake2-rfc", @@ -6750,7 +6750,7 @@ dependencies = [ [[package]] name = "sp-database" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "kvdb", "parking_lot 0.10.2", @@ -6759,7 +6759,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "proc-macro2 1.0.12", "quote 1.0.5", @@ -6769,7 +6769,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "environmental", "parity-scale-codec", @@ -6780,7 +6780,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "finality-grandpa", "log 0.4.8", @@ -6796,7 +6796,7 @@ dependencies = [ [[package]] name = "sp-finality-tracker" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -6806,7 +6806,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "parity-scale-codec", @@ -6818,7 +6818,7 @@ dependencies = [ [[package]] name = "sp-io" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "futures 0.3.5", "hash-db", @@ -6838,7 +6838,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "lazy_static", "sp-core", @@ -6849,7 +6849,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "sp-api", "sp-core", @@ -6859,7 +6859,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "backtrace", "log 0.4.8", @@ -6868,7 +6868,7 @@ dependencies = [ [[package]] name = "sp-phragmen" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "serde", @@ -6880,7 +6880,7 @@ dependencies = [ [[package]] name = "sp-phragmen-compact" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.12", @@ -6891,7 +6891,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "serde", "sp-core", @@ -6900,7 +6900,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "hash256-std-hasher", "impl-trait-for-tuples", @@ -6921,7 +6921,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "primitive-types", @@ -6936,7 +6936,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "Inflector", "proc-macro-crate", @@ -6948,7 +6948,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "serde", "serde_json", @@ -6957,7 +6957,7 @@ dependencies = [ [[package]] name = "sp-session" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "sp-api", @@ -6970,7 +6970,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -6980,7 +6980,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "hash-db", "log 0.4.8", @@ -6999,12 +6999,12 @@ dependencies = [ [[package]] name = "sp-std" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" [[package]] name = "sp-storage" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "impl-serde 0.2.3", "ref-cast", @@ -7016,7 +7016,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7030,7 +7030,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "tracing", ] @@ -7038,7 +7038,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -7053,7 +7053,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "hash-db", "memory-db", @@ -7067,7 +7067,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "futures 0.3.5", "futures-core", @@ -7078,7 +7078,7 @@ dependencies = [ [[package]] name = "sp-version" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "impl-serde 0.2.3", "parity-scale-codec", @@ -7090,7 +7090,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7218,7 +7218,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "chrono", "clear_on_drop", @@ -7245,7 +7245,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "platforms", ] @@ -7253,7 +7253,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.5", @@ -7274,7 +7274,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "async-std", "derive_more 0.99.6", @@ -7288,7 +7288,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "futures 0.3.5", "hash-db", @@ -7309,7 +7309,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "cfg-if", "frame-executive", @@ -7349,7 +7349,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" dependencies = [ "futures 0.3.5", "parity-scale-codec", @@ -7369,7 +7369,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder-runner" version = "1.0.6" -source = "git+https://github.com/paritytech/substrate#9891eabe2a27d24734d6c58fc91e437e04e9a7bd" +source = "git+https://github.com/paritytech/substrate#0227ff513a045305efee0d8c2cb6025bcefb69ff" [[package]] name = "substrate-wasm-builder-runner" @@ -7379,9 +7379,9 @@ checksum = "d2a965994514ab35d3893e9260245f2947fd1981cdd4fffd2c6e6d1a9ce02e6a" [[package]] name = "substrate-wasmtime" -version = "0.16.0-threadsafe.3" +version = "0.16.0-threadsafe.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b0d8eca5d0186e98c8d13399423853e2356b593e028b53e43b2aa35e9105a82" +checksum = "6bd62264edc1a5f3ef44d86fb0c11c9fb142894b9a2da034f34afae482080d7a" dependencies = [ "anyhow", "backtrace", @@ -7402,9 +7402,9 @@ dependencies = [ [[package]] name = "substrate-wasmtime-jit" -version = "0.16.0-threadsafe.3" +version = "0.16.0-threadsafe.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e95772b1778186e4f5c9ae9148bab9911cddf563805a403dee418780e2ed14b4" +checksum = "4ce43c159d4f3ef6b19641e1ae045847fd202d8e2cc74df7ccb2b6475e069d4a" dependencies = [ "anyhow", "cfg-if", @@ -7429,9 +7429,9 @@ dependencies = [ [[package]] name = "substrate-wasmtime-profiling" -version = "0.16.0-threadsafe.3" +version = "0.16.0-threadsafe.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f8a0bf9ca20bee7d83338470247a3f1823158382ebd51fadefcc986e0a6c3de" +checksum = "c77f0ce539b5a09a54dc80a1cf0c7cd7e694df11029354fe50a2d5fe889bdb97" dependencies = [ "anyhow", "cfg-if", @@ -7448,9 +7448,9 @@ dependencies = [ [[package]] name = "substrate-wasmtime-runtime" -version = "0.16.0-threadsafe.3" +version = "0.16.0-threadsafe.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a559895fe1efab16d1c490199225ae35c153ed432ef87ebc177fb37edbd20c7c" +checksum = "46516af0a64a7d9b652c5aa7436b6ce13edfa54435a66ef177fc02d2283e2dc2" dependencies = [ "backtrace", "cc", diff --git a/runtime/common/src/claims.rs b/runtime/common/src/claims.rs index 38378b961501..53e58caebe93 100644 --- a/runtime/common/src/claims.rs +++ b/runtime/common/src/claims.rs @@ -646,6 +646,7 @@ mod tests { type DbWeight = (); type BlockExecutionWeight = (); type ExtrinsicBaseWeight = (); + type MaximumExtrinsicWeight = MaximumBlockWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = (); diff --git a/runtime/common/src/crowdfund.rs b/runtime/common/src/crowdfund.rs index e3c8bb6eb1e4..8433bb064bfa 100644 --- a/runtime/common/src/crowdfund.rs +++ b/runtime/common/src/crowdfund.rs @@ -608,6 +608,7 @@ mod tests { type DbWeight = (); type BlockExecutionWeight = (); type ExtrinsicBaseWeight = (); + type MaximumExtrinsicWeight = MaximumBlockWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = (); diff --git a/runtime/common/src/lib.rs b/runtime/common/src/lib.rs index 57ef31b70cae..1dbabf92d4b3 100644 --- a/runtime/common/src/lib.rs +++ b/runtime/common/src/lib.rs @@ -28,7 +28,7 @@ pub mod crowdfund; pub mod impls; use primitives::BlockNumber; -use sp_runtime::Perbill; +use sp_runtime::{traits::Saturating, Perbill}; use frame_support::{ parameter_types, traits::Currency, weights::{Weight, constants::WEIGHT_PER_SECOND}, @@ -54,5 +54,7 @@ parameter_types! { pub const BlockHashCount: BlockNumber = 2400; pub const MaximumBlockWeight: Weight = 2 * WEIGHT_PER_SECOND; pub const AvailableBlockRatio: Perbill = Perbill::from_percent(75); + pub const MaximumExtrinsicWeight: Weight = AvailableBlockRatio::get() + .saturating_sub(Perbill::from_percent(10)) * MaximumBlockWeight::get(); pub const MaximumBlockLength: u32 = 5 * 1024 * 1024; } diff --git a/runtime/common/src/parachains.rs b/runtime/common/src/parachains.rs index cb9b3d5d7765..d1c551304817 100644 --- a/runtime/common/src/parachains.rs +++ b/runtime/common/src/parachains.rs @@ -1624,6 +1624,7 @@ mod tests { type DbWeight = (); type BlockExecutionWeight = (); type ExtrinsicBaseWeight = (); + type MaximumExtrinsicWeight = MaximumBlockWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = (); diff --git a/runtime/common/src/registrar.rs b/runtime/common/src/registrar.rs index c736a4fe9f89..9e79e29a792c 100644 --- a/runtime/common/src/registrar.rs +++ b/runtime/common/src/registrar.rs @@ -738,6 +738,7 @@ mod tests { type DbWeight = (); type BlockExecutionWeight = (); type ExtrinsicBaseWeight = (); + type MaximumExtrinsicWeight = MaximumBlockWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = (); diff --git a/runtime/common/src/slots.rs b/runtime/common/src/slots.rs index 302cf4ef6a1f..02efa1f90e68 100644 --- a/runtime/common/src/slots.rs +++ b/runtime/common/src/slots.rs @@ -924,6 +924,7 @@ mod tests { type DbWeight = (); type BlockExecutionWeight = (); type ExtrinsicBaseWeight = (); + type MaximumExtrinsicWeight = MaximumBlockWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = (); diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 4f9d0f20e7f3..e0552983b2dc 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -31,6 +31,7 @@ use runtime_common::{attestations, claims, parachains, registrar, slots, impls::{CurrencyToVoteHandler, TargetedFeeAdjustment, ToAuthor}, NegativeImbalance, BlockHashCount, MaximumBlockWeight, AvailableBlockRatio, MaximumBlockLength, BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, + MaximumExtrinsicWeight }; use sp_runtime::{ create_runtime_str, generic, impl_opaque_keys, ModuleId, @@ -148,6 +149,7 @@ impl system::Trait for Runtime { type DbWeight = RocksDbWeight; type BlockExecutionWeight = BlockExecutionWeight; type ExtrinsicBaseWeight = ExtrinsicBaseWeight; + type MaximumExtrinsicWeight = MaximumExtrinsicWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = Version; diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 0a16390001e3..2b7151e7a1c9 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -24,6 +24,7 @@ use runtime_common::{attestations, claims, parachains, registrar, slots, impls::{CurrencyToVoteHandler, TargetedFeeAdjustment, ToAuthor}, NegativeImbalance, BlockHashCount, MaximumBlockWeight, AvailableBlockRatio, MaximumBlockLength, BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, + MaximumExtrinsicWeight, }; use sp_std::prelude::*; @@ -154,6 +155,7 @@ impl system::Trait for Runtime { type DbWeight = RocksDbWeight; type BlockExecutionWeight = BlockExecutionWeight; type ExtrinsicBaseWeight = ExtrinsicBaseWeight; + type MaximumExtrinsicWeight = MaximumExtrinsicWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = Version; diff --git a/runtime/test-runtime/src/lib.rs b/runtime/test-runtime/src/lib.rs index 3de486587713..94ef6acebd47 100644 --- a/runtime/test-runtime/src/lib.rs +++ b/runtime/test-runtime/src/lib.rs @@ -144,6 +144,7 @@ impl system::Trait for Runtime { type DbWeight = (); type BlockExecutionWeight = BlockExecutionWeight; type ExtrinsicBaseWeight = ExtrinsicBaseWeight; + type MaximumExtrinsicWeight = MaximumBlockWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = Version; diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 30741ebd7534..71a0eeb7c21d 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -29,7 +29,7 @@ use primitives::{ use runtime_common::{attestations, parachains, registrar, impls::{CurrencyToVoteHandler, TargetedFeeAdjustment, ToAuthor}, BlockHashCount, MaximumBlockWeight, AvailableBlockRatio, MaximumBlockLength, - BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, + BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, MaximumExtrinsicWeight }; use sp_runtime::{ create_runtime_str, generic, impl_opaque_keys, @@ -147,6 +147,7 @@ impl system::Trait for Runtime { type DbWeight = RocksDbWeight; type BlockExecutionWeight = BlockExecutionWeight; type ExtrinsicBaseWeight = ExtrinsicBaseWeight; + type MaximumExtrinsicWeight = MaximumExtrinsicWeight; type MaximumBlockLength = MaximumBlockLength; type AvailableBlockRatio = AvailableBlockRatio; type Version = Version;