From 83a4123d5ee6e3f37aa00dd1fcd1977388c5fa9a Mon Sep 17 00:00:00 2001 From: eNddy Date: Mon, 24 Jun 2024 16:37:16 -0600 Subject: [PATCH] chore(upgrade): v1.5.0 to v1.6.0 - Upgrade Polkadot-sdk to v.1.6.0. - Update weights to reflect the new version. - Modify extrinsic weight test due to an improvement in weights. Notable Changes: - [Rename ExportGenesisStateCommand to ExportGenesisHeadCommand ](https://github.com/paritytech/polkadot-sdk/pull/2331) For more details, please refer to: [Release Notes](https://github.com/paritytech/polkadot-sdk/releases/tag/polkadot-v1.6.0) [Release Analysis](https://forum.polkadot.network/t/polkadot-release-analysis-v1-6-0/58550) issue-1841 --- Cargo.lock | 992 ++++++++---------- Cargo.toml | 196 ++-- e2e/capacity/capacity_rpc.test.ts | 4 +- node/cli/Cargo.toml | 2 +- node/cli/src/benchmarking.rs | 2 +- node/cli/src/cli.rs | 3 +- node/cli/src/command.rs | 4 +- node/service/Cargo.toml | 1 - node/service/src/service.rs | 1 - pallets/capacity/src/tests/mock.rs | 1 + pallets/capacity/src/weights.rs | 44 +- .../frequency-tx-payment/src/tests/mock.rs | 1 + pallets/frequency-tx-payment/src/weights.rs | 28 +- pallets/handles/src/lib.rs | 4 +- pallets/handles/src/tests/mock.rs | 1 + pallets/handles/src/weights.rs | 44 +- pallets/messages/src/tests/mock.rs | 1 + pallets/messages/src/weights.rs | 28 +- pallets/msa/src/lib.rs | 4 +- pallets/msa/src/tests/mock.rs | 1 + pallets/msa/src/weights.rs | 128 +-- pallets/passkey/src/mock.rs | 1 + pallets/schemas/src/tests/mock.rs | 1 + pallets/schemas/src/weights.rs | 132 +-- pallets/stateful-storage/src/tests/mock.rs | 1 + pallets/stateful-storage/src/weights.rs | 100 +- pallets/time-release/src/mock.rs | 1 + pallets/time-release/src/weights.rs | 52 +- runtime/common/src/fee.rs | 2 +- runtime/common/src/weights/block_weights.rs | 20 +- .../common/src/weights/extrinsic_weights.rs | 20 +- runtime/common/src/weights/pallet_balances.rs | 40 +- .../src/weights/pallet_collator_selection.rs | 92 +- .../src/weights/pallet_collective_council.rs | 128 +-- .../pallet_collective_technical_committee.rs | 126 +-- .../common/src/weights/pallet_democracy.rs | 148 +-- runtime/common/src/weights/pallet_multisig.rs | 68 +- runtime/common/src/weights/pallet_preimage.rs | 72 +- runtime/common/src/weights/pallet_proxy.rs | 100 +- .../common/src/weights/pallet_scheduler.rs | 76 +- runtime/common/src/weights/pallet_session.rs | 12 +- .../common/src/weights/pallet_timestamp.rs | 12 +- runtime/common/src/weights/pallet_utility.rs | 36 +- runtime/frequency/src/lib.rs | 5 +- 44 files changed, 1318 insertions(+), 1417 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 85304f39c2..8599147f66 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -215,7 +215,7 @@ dependencies = [ "log", "num-bigint", "quad-rand", - "rand 0.8.5", + "rand", "regex", "serde", "serde_json", @@ -239,16 +239,16 @@ dependencies = [ [[package]] name = "aquamarine" -version = "0.3.3" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1da02abba9f9063d786eab1509833ebb2fac0f966862ca59439c76b9c566760" +checksum = "21cc1548309245035eb18aa7f0967da6bc65587005170c56e6ef2788a4cf3f4e" dependencies = [ "include_dir", "itertools 0.10.5", "proc-macro-error", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.66", ] [[package]] @@ -462,20 +462,6 @@ dependencies = [ "hashbrown 0.13.2", ] -[[package]] -name = "ark-scale" -version = "0.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51bd73bb6ddb72630987d37fa963e99196896c0d0ea81b7c894567e74a2f83af" -dependencies = [ - "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", - "parity-scale-codec", - "scale-info", -] - [[package]] name = "ark-scale" version = "0.0.12" @@ -493,7 +479,7 @@ dependencies = [ [[package]] name = "ark-secret-scalar" version = "0.0.2" -source = "git+https://github.com/w3f/ring-vrf?rev=2019248#2019248785389b3246d55b1c3b0e9bdef4454cb7" +source = "git+https://github.com/w3f/ring-vrf?rev=e9782f9#e9782f938629c90f3adb3fff2358bc8d1386af3e" dependencies = [ "ark-ec", "ark-ff", @@ -535,14 +521,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185" dependencies = [ "num-traits", - "rand 0.8.5", + "rand", "rayon", ] [[package]] name = "ark-transcript" version = "0.0.2" -source = "git+https://github.com/w3f/ring-vrf?rev=2019248#2019248785389b3246d55b1c3b0e9bdef4454cb7" +source = "git+https://github.com/w3f/ring-vrf?rev=e9782f9#e9782f938629c90f3adb3fff2358bc8d1386af3e" dependencies = [ "ark-ff", "ark-serialize", @@ -579,12 +565,6 @@ dependencies = [ "nodrop", ] -[[package]] -name = "arrayvec" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" - [[package]] name = "arrayvec" version = "0.7.4" @@ -831,17 +811,6 @@ version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" -[[package]] -name = "atty" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -dependencies = [ - "hermit-abi 0.1.19", - "libc", - "winapi", -] - [[package]] name = "autocfg" version = "1.3.0" @@ -866,7 +835,7 @@ dependencies = [ [[package]] name = "bandersnatch_vrfs" version = "0.0.4" -source = "git+https://github.com/w3f/ring-vrf?rev=2019248#2019248785389b3246d55b1c3b0e9bdef4454cb7" +source = "git+https://github.com/w3f/ring-vrf?rev=e9782f9#e9782f938629c90f3adb3fff2358bc8d1386af3e" dependencies = [ "ark-bls12-381", "ark-ec", @@ -876,7 +845,7 @@ dependencies = [ "ark-std", "dleq_vrf", "fflonk", - "merlin 3.0.0", + "merlin", "rand_chacha 0.3.1", "rand_core 0.6.4", "ring 0.1.0", @@ -928,7 +897,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "hash-db", "log", @@ -971,7 +940,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93f2635620bf0b9d4576eb7bb9a38a55df78bd1205d26fa994b25911a69f212f" dependencies = [ "bitcoin_hashes", - "rand 0.8.5", + "rand", "rand_core 0.6.4", "serde", "unicode-normalization", @@ -1074,18 +1043,6 @@ dependencies = [ "constant_time_eq 0.3.0", ] -[[package]] -name = "block-buffer" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" -dependencies = [ - "block-padding", - "byte-tools", - "byteorder", - "generic-array 0.12.4", -] - [[package]] name = "block-buffer" version = "0.9.0" @@ -1104,15 +1061,6 @@ dependencies = [ "generic-array 0.14.7", ] -[[package]] -name = "block-padding" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" -dependencies = [ - "byte-tools", -] - [[package]] name = "blocking" version = "1.6.1" @@ -1521,7 +1469,7 @@ dependencies = [ "ark-std", "fflonk", "getrandom_or_panic", - "merlin 3.0.0", + "merlin", "rand_chacha 0.3.1", ] @@ -1933,7 +1881,7 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "clap", "parity-scale-codec", @@ -1941,6 +1889,7 @@ dependencies = [ "sc-cli", "sc-client-api", "sc-service", + "sp-blockchain", "sp-core", "sp-runtime", "url", @@ -1949,7 +1898,7 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -1972,15 +1921,15 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "cumulus-client-collator", "cumulus-client-consensus-common", "cumulus-client-consensus-proposer", + "cumulus-client-parachain-inherent", "cumulus-primitives-aura", "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", "cumulus-relay-chain-interface", "futures", "parity-scale-codec", @@ -2014,7 +1963,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -2043,7 +1992,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-proposer" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "anyhow", "async-trait", @@ -2058,7 +2007,7 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -2078,10 +2027,34 @@ dependencies = [ "tracing", ] +[[package]] +name = "cumulus-client-parachain-inherent" +version = "0.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" +dependencies = [ + "async-trait", + "cumulus-primitives-core", + "cumulus-primitives-parachain-inherent", + "cumulus-relay-chain-interface", + "cumulus-test-relay-sproof-builder", + "parity-scale-codec", + "sc-client-api", + "scale-info", + "sp-api", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", + "sp-std 8.0.0", + "sp-storage 13.0.0", + "sp-trie", + "tracing", +] + [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2093,11 +2066,11 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-overseer", "polkadot-primitives", - "rand 0.8.5", + "rand", "sc-client-api", "sc-consensus", "sp-consensus", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0)", "sp-runtime", "tracing", ] @@ -2105,7 +2078,7 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -2141,7 +2114,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2159,7 +2132,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2193,9 +2166,9 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ - "proc-macro-crate 2.0.0", + "proc-macro-crate 3.1.0", "proc-macro2", "quote", "syn 2.0.66", @@ -2204,7 +2177,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -2218,7 +2191,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2232,7 +2205,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2249,30 +2222,22 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "cumulus-primitives-core", - "cumulus-relay-chain-interface", - "cumulus-test-relay-sproof-builder", "parity-scale-codec", - "sc-client-api", "scale-info", - "sp-api", "sp-core", "sp-inherents", - "sp-runtime", - "sp-state-machine", "sp-std 8.0.0", - "sp-storage 13.0.0", "sp-trie", - "tracing", ] [[package]] name = "cumulus-primitives-proof-size-hostfunction" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "sp-externalities 0.19.0", "sp-runtime-interface 17.0.0", @@ -2282,7 +2247,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "cumulus-primitives-core", "futures", @@ -2295,7 +2260,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2319,7 +2284,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2337,7 +2302,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "async-trait", @@ -2378,7 +2343,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2390,7 +2355,7 @@ dependencies = [ "parity-scale-codec", "pin-project", "polkadot-overseer", - "rand 0.8.5", + "rand", "sc-client-api", "sc-rpc-api", "sc-service", @@ -2417,7 +2382,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -2428,19 +2393,6 @@ dependencies = [ "sp-trie", ] -[[package]] -name = "curve25519-dalek" -version = "2.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a9b85542f99a2dfa2a1b8e192662741c9859a846b296bef1c92ef9b58b5a216" -dependencies = [ - "byteorder", - "digest 0.8.1", - "rand_core 0.5.1", - "subtle 2.4.1", - "zeroize", -] - [[package]] name = "curve25519-dalek" version = "3.2.0" @@ -2754,11 +2706,11 @@ dependencies = [ [[package]] name = "dleq_vrf" version = "0.0.2" -source = "git+https://github.com/w3f/ring-vrf?rev=2019248#2019248785389b3246d55b1c3b0e9bdef4454cb7" +source = "git+https://github.com/w3f/ring-vrf?rev=e9782f9#e9782f938629c90f3adb3fff2358bc8d1386af3e" dependencies = [ "ark-ec", "ark-ff", - "ark-scale 0.0.11", + "ark-scale", "ark-secret-scalar", "ark-serialize", "ark-std", @@ -3090,12 +3042,6 @@ dependencies = [ "syn 2.0.66", ] -[[package]] -name = "fake-simd" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" - [[package]] name = "fallible-iterator" version = "0.2.0" @@ -3172,7 +3118,7 @@ dependencies = [ "ark-poly", "ark-serialize", "ark-std", - "merlin 3.0.0", + "merlin", ] [[package]] @@ -3236,7 +3182,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534" dependencies = [ "byteorder", - "rand 0.8.5", + "rand", "rustc-hex", "static_assertions", ] @@ -3276,7 +3222,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", ] @@ -3299,7 +3245,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "frame-support-procedural", @@ -3324,7 +3270,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "Inflector", "array-bytes 6.2.3", @@ -3341,7 +3287,7 @@ dependencies = [ "linked-hash-map", "log", "parity-scale-codec", - "rand 0.8.5", + "rand", "rand_pcg", "sc-block-builder", "sc-cli", @@ -3372,9 +3318,9 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ - "proc-macro-crate 2.0.0", + "proc-macro-crate 3.1.0", "proc-macro2", "quote", "syn 2.0.66", @@ -3383,7 +3329,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3400,7 +3346,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "frame-system", @@ -3430,7 +3376,7 @@ dependencies = [ [[package]] name = "frame-metadata-hash-extension" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "docify", @@ -3445,7 +3391,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "indicatif", @@ -3466,7 +3412,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "aquamarine", "array-bytes 6.2.3", @@ -3507,7 +3453,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "Inflector", "cfg-expr", @@ -3526,10 +3472,10 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support-procedural-tools-derive", - "proc-macro-crate 2.0.0", + "proc-macro-crate 3.1.0", "proc-macro2", "quote", "syn 2.0.66", @@ -3538,7 +3484,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "proc-macro2", "quote", @@ -3548,7 +3494,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "cfg-if", "docify", @@ -3568,7 +3514,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -3583,7 +3529,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "sp-api", @@ -3592,7 +3538,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "parity-scale-codec", @@ -3619,9 +3565,9 @@ dependencies = [ "common-primitives", "common-runtime", "cumulus-client-cli", + "cumulus-client-parachain-inherent", "cumulus-client-service", "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", "derive_more", "frame-benchmarking", "frame-benchmarking-cli", @@ -3755,7 +3701,6 @@ dependencies = [ "cumulus-client-network", "cumulus-client-service", "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", "cumulus-relay-chain-inprocess-interface", "cumulus-relay-chain-interface", "cumulus-relay-chain-minimal-node", @@ -4069,7 +4014,7 @@ version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ea1015b5a70616b688dc230cfe50c8af89d972cb132d5a622814d29773b10b9" dependencies = [ - "rand 0.8.5", + "rand", "rand_core 0.6.4", ] @@ -4238,15 +4183,6 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" -[[package]] -name = "hermit-abi" -version = "0.1.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" -dependencies = [ - "libc", -] - [[package]] name = "hermit-abi" version = "0.3.9" @@ -4778,7 +4714,7 @@ dependencies = [ "hyper", "jsonrpsee-types", "parking_lot 0.12.3", - "rand 0.8.5", + "rand", "rustc-hash", "serde", "serde_json", @@ -5071,7 +5007,7 @@ dependencies = [ "parking_lot 0.12.3", "pin-project", "quick-protobuf", - "rand 0.8.5", + "rand", "rw-stream-sink", "smallvec", "thiserror", @@ -5127,7 +5063,7 @@ dependencies = [ "multiaddr", "multihash 0.17.0", "quick-protobuf", - "rand 0.8.5", + "rand", "sha2 0.10.8", "thiserror", "zeroize", @@ -5152,7 +5088,7 @@ dependencies = [ "libp2p-swarm", "log", "quick-protobuf", - "rand 0.8.5", + "rand", "sha2 0.10.8", "smallvec", "thiserror", @@ -5174,7 +5110,7 @@ dependencies = [ "libp2p-identity", "libp2p-swarm", "log", - "rand 0.8.5", + "rand", "smallvec", "socket2 0.4.10", "tokio", @@ -5210,7 +5146,7 @@ dependencies = [ "log", "once_cell", "quick-protobuf", - "rand 0.8.5", + "rand", "sha2 0.10.8", "snow", "static_assertions", @@ -5232,7 +5168,7 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "rand 0.8.5", + "rand", "void", ] @@ -5252,7 +5188,7 @@ dependencies = [ "log", "parking_lot 0.12.3", "quinn-proto", - "rand 0.8.5", + "rand", "rustls 0.20.9", "thiserror", "tokio", @@ -5270,7 +5206,7 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm", - "rand 0.8.5", + "rand", "smallvec", ] @@ -5289,7 +5225,7 @@ dependencies = [ "libp2p-identity", "libp2p-swarm-derive", "log", - "rand 0.8.5", + "rand", "smallvec", "tokio", "void", @@ -5425,7 +5361,7 @@ dependencies = [ "libsecp256k1-core", "libsecp256k1-gen-ecmult", "libsecp256k1-gen-genmult", - "rand 0.8.5", + "rand", "serde", "sha2 0.9.9", "typenum", @@ -5739,18 +5675,6 @@ dependencies = [ "hash-db", ] -[[package]] -name = "merlin" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e261cf0f8b3c42ded9f7d2bb59dea03aa52bc8a1cbc7482f9fc3fd1229d3b42" -dependencies = [ - "byteorder", - "keccak", - "rand_core 0.5.1", - "zeroize", -] - [[package]] name = "merlin" version = "3.0.0" @@ -5770,7 +5694,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69672161530e8aeca1d1400fbf3f1a1747ff60ea604265a4e906c2442df20532" dependencies = [ "futures", - "rand 0.8.5", + "rand", "thrift", ] @@ -5817,7 +5741,7 @@ dependencies = [ "lioness", "log", "parking_lot 0.12.3", - "rand 0.8.5", + "rand", "rand_chacha 0.3.1", "rand_distr", "subtle 2.4.1", @@ -5828,7 +5752,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "log", @@ -5847,7 +5771,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "anyhow", "jsonrpsee", @@ -6065,11 +5989,11 @@ dependencies = [ [[package]] name = "names" -version = "0.13.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7d66043b25d4a6cccb23619d10c19c25304b355a7dccd4a8e11423dd2382146" +checksum = "7bddcd3bf5144b6392de80e04c347cd7fab2508f6df16a85fc496ecd5cec39bc" dependencies = [ - "rand 0.8.5", + "rand", ] [[package]] @@ -6403,7 +6327,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "pallet-asset-rate" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -6418,7 +6342,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "frame-system", @@ -6435,7 +6359,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "frame-system", @@ -6451,7 +6375,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "frame-system", @@ -6465,7 +6389,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -6489,7 +6413,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "aquamarine", "docify", @@ -6511,7 +6435,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -6526,7 +6450,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "frame-system", @@ -6546,7 +6470,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "binary-merkle-tree", @@ -6571,7 +6495,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -6586,6 +6510,23 @@ dependencies = [ "sp-std 8.0.0", ] +[[package]] +name = "pallet-broker" +version = "0.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" +dependencies = [ + "bitvec", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-arithmetic", + "sp-core", + "sp-runtime", + "sp-std 8.0.0", +] + [[package]] name = "pallet-capacity" version = "0.0.0" @@ -6609,7 +6550,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -6628,7 +6569,7 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -6637,7 +6578,7 @@ dependencies = [ "pallet-authorship", "pallet-session", "parity-scale-codec", - "rand 0.8.5", + "rand", "scale-info", "sp-runtime", "sp-staking", @@ -6647,7 +6588,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -6664,7 +6605,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6681,7 +6622,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -6699,7 +6640,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6708,7 +6649,7 @@ dependencies = [ "log", "pallet-election-provider-support-benchmarking", "parity-scale-codec", - "rand 0.8.5", + "rand", "scale-info", "sp-arithmetic", "sp-core", @@ -6722,7 +6663,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6736,7 +6677,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -6755,7 +6696,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "docify", "frame-benchmarking", @@ -6830,7 +6771,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -6904,12 +6845,13 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "enumflags2", "frame-benchmarking", "frame-support", "frame-system", + "log", "parity-scale-codec", "scale-info", "sp-io", @@ -6920,7 +6862,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -6940,7 +6882,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -6957,7 +6899,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -6974,8 +6916,9 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ + "environmental", "frame-benchmarking", "frame-support", "frame-system", @@ -7004,7 +6947,7 @@ dependencies = [ "multibase", "parity-scale-codec", "pretty_assertions", - "rand 0.8.5", + "rand", "scale-info", "serde", "serde_json", @@ -7043,7 +6986,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7122,7 +7065,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7138,7 +7081,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7154,7 +7097,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "frame-system", @@ -7173,7 +7116,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7193,7 +7136,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7204,7 +7147,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "frame-system", @@ -7221,7 +7164,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7266,7 +7209,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7283,7 +7226,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7298,7 +7241,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7316,7 +7259,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7331,7 +7274,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7350,7 +7293,7 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "frame-system", @@ -7365,7 +7308,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "docify", "frame-benchmarking", @@ -7438,7 +7381,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "frame-system", @@ -7460,7 +7403,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7468,7 +7411,7 @@ dependencies = [ "pallet-session", "pallet-staking", "parity-scale-codec", - "rand 0.8.5", + "rand", "sp-runtime", "sp-session", "sp-std 8.0.0", @@ -7477,7 +7420,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7495,7 +7438,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7518,9 +7461,9 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ - "proc-macro-crate 2.0.0", + "proc-macro-crate 3.1.0", "proc-macro2", "quote", "syn 2.0.66", @@ -7529,7 +7472,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "log", "sp-arithmetic", @@ -7538,7 +7481,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "sp-api", @@ -7548,7 +7491,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7617,7 +7560,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "docify", "frame-benchmarking", @@ -7653,7 +7596,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "docify", "frame-benchmarking", @@ -7673,7 +7616,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7692,7 +7635,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "frame-system", @@ -7708,7 +7651,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -7724,7 +7667,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -7736,7 +7679,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "docify", "frame-benchmarking", @@ -7755,7 +7698,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7771,7 +7714,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7786,7 +7729,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7801,7 +7744,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -7824,7 +7767,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-benchmarking", "frame-support", @@ -7855,7 +7798,7 @@ dependencies = [ "lz4", "memmap2", "parking_lot 0.12.3", - "rand 0.8.5", + "rand", "siphasher", "snap", "winapi", @@ -8077,7 +8020,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" dependencies = [ "phf_shared", - "rand 0.8.5", + "rand", ] [[package]] @@ -8170,7 +8113,7 @@ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" [[package]] name = "polkadot-approval-distribution" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bitvec", "futures", @@ -8183,14 +8126,14 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "rand 0.8.5", + "rand", "tracing-gum", ] [[package]] name = "polkadot-availability-bitfield-distribution" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "always-assert", "futures", @@ -8199,14 +8142,14 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "rand 0.8.5", + "rand", "tracing-gum", ] [[package]] name = "polkadot-availability-distribution" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "derive_more", "fatality", @@ -8218,7 +8161,7 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "rand 0.8.5", + "rand", "schnellru", "sp-core", "sp-keystore", @@ -8229,7 +8172,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "fatality", @@ -8241,17 +8184,18 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "rand 0.8.5", + "rand", "sc-network", "schnellru", "thiserror", + "tokio", "tracing-gum", ] [[package]] name = "polkadot-cli" version = "1.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "cfg-if", "clap", @@ -8270,7 +8214,7 @@ dependencies = [ "sp-core", "sp-io", "sp-keyring", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0)", "substrate-build-script-utils", "thiserror", "try-runtime-cli", @@ -8279,7 +8223,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bitvec", "fatality", @@ -8301,7 +8245,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "scale-info", @@ -8313,7 +8257,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "derive_more", "fatality", @@ -8338,7 +8282,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -8352,7 +8296,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "futures-timer", @@ -8360,7 +8304,7 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "rand 0.8.5", + "rand", "rand_chacha 0.3.1", "sc-network", "sc-network-common", @@ -8373,7 +8317,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "always-assert", "async-trait", @@ -8396,7 +8340,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "parity-scale-codec", @@ -8406,7 +8350,7 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "sp-core", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0)", "thiserror", "tracing-gum", ] @@ -8414,7 +8358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bitvec", "derive_more", @@ -8422,7 +8366,7 @@ dependencies = [ "futures-timer", "itertools 0.10.5", "kvdb", - "merlin 2.0.1", + "merlin", "parity-scale-codec", "polkadot-node-jaeger", "polkadot-node-primitives", @@ -8430,12 +8374,12 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-overseer", "polkadot-primitives", - "rand 0.8.5", + "rand", "rand_chacha 0.3.1", - "rand_core 0.5.1", + "rand_core 0.6.4", "sc-keystore", "schnellru", - "schnorrkel 0.9.1", + "schnorrkel 0.11.4", "sp-application-crypto", "sp-consensus", "sp-consensus-slots", @@ -8447,7 +8391,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bitvec", "futures", @@ -8469,7 +8413,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bitvec", "fatality", @@ -8488,7 +8432,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "polkadot-node-subsystem", @@ -8503,7 +8447,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "futures", @@ -8517,14 +8461,14 @@ dependencies = [ "polkadot-overseer", "polkadot-parachain-primitives", "polkadot-primitives", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0)", "tracing-gum", ] [[package]] name = "polkadot-node-core-chain-api" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "polkadot-node-metrics", @@ -8538,7 +8482,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "futures-timer", @@ -8555,7 +8499,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "fatality", "futures", @@ -8574,7 +8518,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "futures", @@ -8591,7 +8535,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bitvec", "fatality", @@ -8608,7 +8552,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bitvec", "fatality", @@ -8625,9 +8569,10 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "always-assert", + "array-bytes 6.2.3", "blake3", "cfg-if", "futures", @@ -8643,10 +8588,10 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-parachain-primitives", "polkadot-primitives", - "rand 0.8.5", + "rand", "slotmap", "sp-core", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0)", "sp-wasm-interface 14.0.0", "tempfile", "thiserror", @@ -8657,7 +8602,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "polkadot-node-primitives", @@ -8673,7 +8618,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "cfg-if", "cpu-time", @@ -8691,7 +8636,6 @@ dependencies = [ "sp-externalities 0.19.0", "sp-io", "sp-tracing 10.0.0", - "substrate-build-script-utils", "thiserror", "tracing-gum", ] @@ -8699,7 +8643,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "polkadot-node-metrics", @@ -8714,7 +8658,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "lazy_static", "log", @@ -8732,7 +8676,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bs58 0.5.1", "futures", @@ -8751,7 +8695,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -8764,7 +8708,7 @@ dependencies = [ "polkadot-node-jaeger", "polkadot-node-primitives", "polkadot-primitives", - "rand 0.8.5", + "rand", "sc-authority-discovery", "sc-network", "strum 0.24.1", @@ -8775,7 +8719,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bitvec", "bounded-vec", @@ -8783,13 +8727,13 @@ dependencies = [ "parity-scale-codec", "polkadot-parachain-primitives", "polkadot-primitives", - "schnorrkel 0.9.1", + "schnorrkel 0.11.4", "serde", "sp-application-crypto", "sp-consensus-babe", "sp-core", "sp-keystore", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0)", "sp-runtime", "thiserror", "zstd 0.12.4", @@ -8798,7 +8742,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -8808,7 +8752,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "bitvec", @@ -8836,7 +8780,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "derive_more", @@ -8847,7 +8791,7 @@ dependencies = [ "kvdb", "parity-db", "parity-scale-codec", - "parking_lot 0.11.2", + "parking_lot 0.12.3", "pin-project", "polkadot-node-jaeger", "polkadot-node-metrics", @@ -8858,7 +8802,7 @@ dependencies = [ "polkadot-overseer", "polkadot-primitives", "prioritized-metered-channel 0.5.1", - "rand 0.8.5", + "rand", "sc-client-api", "schnellru", "sp-application-crypto", @@ -8871,7 +8815,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "futures", @@ -8893,7 +8837,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bounded-collections", "derive_more", @@ -8910,7 +8854,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bitvec", "hex-literal", @@ -8936,7 +8880,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -8952,6 +8896,7 @@ dependencies = [ "sc-consensus-grandpa", "sc-consensus-grandpa-rpc", "sc-rpc", + "sc-rpc-spec-v2", "sc-sync-state-rpc", "sc-transaction-pool-api", "sp-api", @@ -8968,7 +8913,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bitvec", "frame-benchmarking", @@ -8982,6 +8927,7 @@ dependencies = [ "pallet-authorship", "pallet-babe", "pallet-balances", + "pallet-broker", "pallet-election-provider-multi-phase", "pallet-fast-unstake", "pallet-identity", @@ -9019,7 +8965,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bs58 0.5.1", "frame-benchmarking", @@ -9032,7 +8978,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -9046,6 +8992,7 @@ dependencies = [ "pallet-authorship", "pallet-babe", "pallet-balances", + "pallet-broker", "pallet-message-queue", "pallet-session", "pallet-staking", @@ -9056,13 +9003,14 @@ dependencies = [ "polkadot-parachain-primitives", "polkadot-primitives", "polkadot-runtime-metrics", - "rand 0.8.5", + "rand", "rand_chacha 0.3.1", "rustc-hex", "scale-info", "serde", "sp-api", "sp-application-crypto", + "sp-arithmetic", "sp-core", "sp-inherents", "sp-io", @@ -9079,7 +9027,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "frame-benchmarking", @@ -9196,7 +9144,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "arrayvec 0.7.4", "bitvec", @@ -9219,7 +9167,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -9450,15 +9398,6 @@ dependencies = [ "toml_edit 0.19.15", ] -[[package]] -name = "proc-macro-crate" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" -dependencies = [ - "toml_edit 0.20.7", -] - [[package]] name = "proc-macro-crate" version = "3.1.0" @@ -9664,7 +9603,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94b0b33c13a79f669c85defaf4c275dc86a0c0372807d0ca3d78e0bb87274863" dependencies = [ "bytes", - "rand 0.8.5", + "rand", "ring 0.16.20", "rustc-hash", "rustls 0.20.9", @@ -9690,19 +9629,6 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" -[[package]] -name = "rand" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" -dependencies = [ - "getrandom 0.1.16", - "libc", - "rand_chacha 0.2.2", - "rand_core 0.5.1", - "rand_hc", -] - [[package]] name = "rand" version = "0.8.5" @@ -9759,16 +9685,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" dependencies = [ "num-traits", - "rand 0.8.5", -] - -[[package]] -name = "rand_hc" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" -dependencies = [ - "rand_core 0.5.1", + "rand", ] [[package]] @@ -9978,7 +9895,7 @@ dependencies = [ "blake2 0.10.6", "common", "fflonk", - "merlin 3.0.0", + "merlin", ] [[package]] @@ -10039,7 +9956,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -10130,13 +10047,13 @@ dependencies = [ "staging-xcm-builder", "staging-xcm-executor", "static_assertions", - "substrate-wasm-builder 5.0.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0)", + "substrate-wasm-builder 5.0.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0)", ] [[package]] name = "rococo-runtime-constants" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "polkadot-primitives", @@ -10146,6 +10063,7 @@ dependencies = [ "sp-runtime", "sp-weights", "staging-xcm", + "staging-xcm-builder", ] [[package]] @@ -10371,7 +10289,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "log", "sp-core", @@ -10382,7 +10300,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "futures", @@ -10395,7 +10313,7 @@ dependencies = [ "parity-scale-codec", "prost", "prost-build", - "rand 0.8.5", + "rand", "sc-client-api", "sc-network", "sp-api", @@ -10411,7 +10329,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "futures-timer", @@ -10433,7 +10351,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "sp-api", @@ -10448,7 +10366,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "docify", @@ -10473,9 +10391,9 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ - "proc-macro-crate 2.0.0", + "proc-macro-crate 3.1.0", "proc-macro2", "quote", "syn 2.0.66", @@ -10484,7 +10402,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "bip39", @@ -10497,7 +10415,7 @@ dependencies = [ "log", "names", "parity-scale-codec", - "rand 0.8.5", + "rand", "regex", "rpassword", "sc-client-api", @@ -10525,7 +10443,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "fnv", "futures", @@ -10552,7 +10470,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "hash-db", "kvdb", @@ -10578,7 +10496,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "futures", @@ -10603,7 +10521,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "futures", @@ -10632,7 +10550,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "fork-tree", @@ -10667,7 +10585,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "jsonrpsee", @@ -10689,7 +10607,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", @@ -10717,13 +10635,14 @@ dependencies = [ "sp-runtime", "substrate-prometheus-endpoint", "thiserror", + "tokio", "wasm-timer", ] [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "jsonrpsee", @@ -10742,7 +10661,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "fork-tree", "parity-scale-codec", @@ -10755,7 +10674,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "ahash 0.8.11", "array-bytes 6.2.3", @@ -10768,7 +10687,7 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.3", - "rand 0.8.5", + "rand", "sc-block-builder", "sc-chain-spec", "sc-client-api", @@ -10797,7 +10716,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "finality-grandpa", "futures", @@ -10817,7 +10736,7 @@ dependencies = [ [[package]] name = "sc-consensus-manual-seal" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "assert_matches", "async-trait", @@ -10852,7 +10771,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "futures", @@ -10875,7 +10794,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "parking_lot 0.12.3", @@ -10897,10 +10816,10 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "sc-allocator", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0)", "sp-wasm-interface 14.0.0", "thiserror", "wasm-instrument", @@ -10909,7 +10828,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "anyhow", "cfg-if", @@ -10927,7 +10846,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "ansi_term", "futures", @@ -10944,7 +10863,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "parking_lot 0.12.3", @@ -10958,7 +10877,7 @@ dependencies = [ [[package]] name = "sc-mixnet" version = "0.1.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 4.2.0", "arrayvec 0.7.4", @@ -10987,7 +10906,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", @@ -11007,7 +10926,7 @@ dependencies = [ "parking_lot 0.12.3", "partial_sort", "pin-project", - "rand 0.8.5", + "rand", "sc-client-api", "sc-network-common", "sc-utils", @@ -11030,7 +10949,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-channel 1.9.0", "cid 0.9.0", @@ -11050,7 +10969,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -11067,7 +10986,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "ahash 0.8.11", "futures", @@ -11086,7 +11005,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", @@ -11107,7 +11026,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", @@ -11143,7 +11062,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "futures", @@ -11162,7 +11081,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "bytes", @@ -11177,7 +11096,7 @@ dependencies = [ "once_cell", "parity-scale-codec", "parking_lot 0.12.3", - "rand 0.8.5", + "rand", "sc-client-api", "sc-network", "sc-network-common", @@ -11196,7 +11115,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -11205,7 +11124,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "jsonrpsee", @@ -11237,7 +11156,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -11257,7 +11176,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "http", "jsonrpsee", @@ -11272,7 +11191,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "futures", @@ -11301,7 +11220,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "directories", @@ -11313,7 +11232,7 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.3", "pin-project", - "rand 0.8.5", + "rand", "sc-chain-spec", "sc-client-api", "sc-client-db", @@ -11364,7 +11283,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "log", "parity-scale-codec", @@ -11375,12 +11294,11 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "clap", "fs4", "log", - "sc-client-db", "sp-core", "thiserror", "tokio", @@ -11389,7 +11307,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -11408,13 +11326,13 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "derive_more", "futures", "libc", "log", - "rand 0.8.5", + "rand", "rand_pcg", "regex", "sc-telemetry", @@ -11428,7 +11346,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "chrono", "futures", @@ -11436,7 +11354,7 @@ dependencies = [ "log", "parking_lot 0.12.3", "pin-project", - "rand 0.8.5", + "rand", "sc-utils", "serde", "serde_json", @@ -11447,11 +11365,11 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "ansi_term", - "atty", "chrono", + "is-terminal", "lazy_static", "libc", "log", @@ -11477,9 +11395,9 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ - "proc-macro-crate 2.0.0", + "proc-macro-crate 3.1.0", "proc-macro2", "quote", "syn 2.0.66", @@ -11488,7 +11406,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "futures", @@ -11514,7 +11432,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "futures", @@ -11530,7 +11448,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-channel 1.9.0", "futures", @@ -11588,24 +11506,6 @@ dependencies = [ "hashbrown 0.13.2", ] -[[package]] -name = "schnorrkel" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "021b403afe70d81eea68f6ea12f6b3c9588e5d536a94c3bf80f15e7faa267862" -dependencies = [ - "arrayref", - "arrayvec 0.5.2", - "curve25519-dalek 2.1.3", - "getrandom 0.1.16", - "merlin 2.0.1", - "rand 0.7.3", - "rand_core 0.5.1", - "sha2 0.8.2", - "subtle 2.4.1", - "zeroize", -] - [[package]] name = "schnorrkel" version = "0.10.2" @@ -11615,7 +11515,7 @@ dependencies = [ "arrayref", "arrayvec 0.7.4", "curve25519-dalek-ng", - "merlin 3.0.0", + "merlin", "rand_core 0.6.4", "sha2 0.9.9", "subtle-ng", @@ -11628,12 +11528,14 @@ version = "0.11.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8de18f6d8ba0aad7045f5feae07ec29899c1112584a38509a84ad7b04451eaa0" dependencies = [ + "aead", "arrayref", "arrayvec 0.7.4", "curve25519-dalek 4.1.3", "getrandom_or_panic", - "merlin 3.0.0", + "merlin", "rand_core 0.6.4", + "serde_bytes", "sha2 0.10.8", "subtle 2.4.1", "zeroize", @@ -11767,6 +11669,15 @@ dependencies = [ "serde_derive", ] +[[package]] +name = "serde_bytes" +version = "0.11.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734" +dependencies = [ + "serde", +] + [[package]] name = "serde_derive" version = "1.0.203" @@ -11846,18 +11757,6 @@ dependencies = [ "digest 0.10.7", ] -[[package]] -name = "sha2" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69" -dependencies = [ - "block-buffer 0.7.3", - "digest 0.8.1", - "fake-simd", - "opaque-debug 0.2.3", -] - [[package]] name = "sha2" version = "0.9.9" @@ -11942,7 +11841,7 @@ dependencies = [ [[package]] name = "simple-mermaid" version = "0.1.0" -source = "git+https://github.com/kianenigma/simple-mermaid.git?branch=main#e48b187bcfd5cc75111acd9d241f1bd36604344b" +source = "git+https://github.com/kianenigma/simple-mermaid.git?rev=e48b187bcfd5cc75111acd9d241f1bd36604344b#e48b187bcfd5cc75111acd9d241f1bd36604344b" [[package]] name = "siphasher" @@ -11968,7 +11867,7 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "enumn", "parity-scale-codec", @@ -12036,7 +11935,7 @@ dependencies = [ "hmac 0.12.1", "itertools 0.11.0", "libsecp256k1", - "merlin 3.0.0", + "merlin", "no-std-net", "nom", "num-bigint", @@ -12045,7 +11944,7 @@ dependencies = [ "pbkdf2 0.12.2", "pin-project", "poly1305", - "rand 0.8.5", + "rand", "rand_chacha 0.3.1", "ruzstd", "schnorrkel 0.10.2", @@ -12088,7 +11987,7 @@ dependencies = [ "no-std-net", "parking_lot 0.12.3", "pin-project", - "rand 0.8.5", + "rand", "rand_chacha 0.3.1", "serde", "serde_json", @@ -12155,14 +12054,14 @@ dependencies = [ "http", "httparse", "log", - "rand 0.8.5", + "rand", "sha-1", ] [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "hash-db", "log", @@ -12183,12 +12082,12 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "Inflector", "blake2 0.10.6", "expander 2.2.1", - "proc-macro-crate 2.0.0", + "proc-macro-crate 3.1.0", "proc-macro2", "quote", "syn 2.0.66", @@ -12197,7 +12096,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "scale-info", @@ -12210,7 +12109,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "integer-sqrt", "num-traits", @@ -12242,7 +12141,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "scale-info", @@ -12255,7 +12154,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "sp-api", "sp-inherents", @@ -12266,7 +12165,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "futures", "log", @@ -12284,7 +12183,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "futures", @@ -12299,7 +12198,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "parity-scale-codec", @@ -12316,7 +12215,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "parity-scale-codec", @@ -12335,7 +12234,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "lazy_static", "parity-scale-codec", @@ -12354,7 +12253,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "finality-grandpa", "log", @@ -12372,7 +12271,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "scale-info", @@ -12384,7 +12283,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "array-bytes 6.2.3", "bandersnatch_vrfs", @@ -12402,14 +12301,14 @@ dependencies = [ "itertools 0.10.5", "libsecp256k1", "log", - "merlin 2.0.1", + "merlin", "parity-scale-codec", "parking_lot 0.12.3", "paste", "primitive-types", - "rand 0.8.5", + "rand", "scale-info", - "schnorrkel 0.9.1", + "schnorrkel 0.11.4", "secp256k1", "secrecy", "serde", @@ -12430,7 +12329,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "blake2b_simd", "byteorder", @@ -12443,7 +12342,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "quote", "sp-core-hashing", @@ -12466,14 +12365,14 @@ dependencies = [ "ark-ed-on-bls12-377-ext", "ark-ed-on-bls12-381-bandersnatch", "ark-ed-on-bls12-381-bandersnatch-ext", - "ark-scale 0.0.12", + "ark-scale", "sp-runtime-interface 24.0.0", ] [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "kvdb", "parking_lot 0.12.3", @@ -12482,7 +12381,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "proc-macro2", "quote", @@ -12502,7 +12401,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "environmental", "parity-scale-codec", @@ -12523,7 +12422,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "serde_json", "sp-api", @@ -12534,7 +12433,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -12548,7 +12447,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bytes", "ed25519-dalek", @@ -12572,9 +12471,8 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ - "lazy_static", "sp-core", "sp-runtime", "strum 0.24.1", @@ -12583,7 +12481,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "parking_lot 0.12.3", @@ -12604,7 +12502,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "thiserror", "zstd 0.12.4", @@ -12613,7 +12511,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -12624,7 +12522,7 @@ dependencies = [ [[package]] name = "sp-mixnet" version = "0.1.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "scale-info", @@ -12636,7 +12534,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -12654,7 +12552,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "scale-info", @@ -12668,7 +12566,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "sp-api", "sp-core", @@ -12678,7 +12576,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "backtrace", "lazy_static", @@ -12688,7 +12586,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "rustc-hash", "serde", @@ -12698,7 +12596,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "docify", "either", @@ -12707,7 +12605,7 @@ dependencies = [ "log", "parity-scale-codec", "paste", - "rand 0.8.5", + "rand", "scale-info", "serde", "simple-mermaid", @@ -12722,7 +12620,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -12759,11 +12657,11 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "Inflector", "expander 2.2.1", - "proc-macro-crate 2.0.0", + "proc-macro-crate 3.1.0", "proc-macro2", "quote", "syn 2.0.66", @@ -12785,7 +12683,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "scale-info", @@ -12800,7 +12698,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -12814,13 +12712,13 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "hash-db", "log", "parity-scale-codec", "parking_lot 0.12.3", - "rand 0.8.5", + "rand", "smallvec", "sp-core", "sp-externalities 0.19.0", @@ -12835,14 +12733,14 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "aes-gcm", "curve25519-dalek 4.1.3", "ed25519-dalek", "hkdf", "parity-scale-codec", - "rand 0.8.5", + "rand", "scale-info", "sha2 0.10.8", "sp-api", @@ -12859,7 +12757,7 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" [[package]] name = "sp-std" @@ -12869,7 +12767,7 @@ source = "git+https://github.com/paritytech/polkadot-sdk#74decbbdf22a7b109209448 [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "impl-serde", "parity-scale-codec", @@ -12894,7 +12792,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "parity-scale-codec", @@ -12907,7 +12805,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "sp-std 8.0.0", @@ -12930,7 +12828,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "sp-api", "sp-runtime", @@ -12939,7 +12837,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "parity-scale-codec", @@ -12954,17 +12852,16 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "ahash 0.8.11", "hash-db", - "hashbrown 0.13.2", "lazy_static", "memory-db", "nohash-hasher", "parity-scale-codec", "parking_lot 0.12.3", - "rand 0.8.5", + "rand", "scale-info", "schnellru", "sp-core", @@ -12979,7 +12876,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "impl-serde", "parity-scale-codec", @@ -12996,7 +12893,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13007,7 +12904,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -13030,7 +12927,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -13099,7 +12996,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-parachain-info" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -13113,8 +13010,9 @@ dependencies = [ [[package]] name = "staging-xcm" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ + "array-bytes 6.2.3", "bounded-collections", "derivative", "environmental", @@ -13130,7 +13028,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "frame-system", @@ -13152,7 +13050,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "environmental", "frame-benchmarking", @@ -13280,12 +13178,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -13304,7 +13202,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "hyper", "log", @@ -13316,7 +13214,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "jsonrpsee", @@ -13329,7 +13227,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -13364,17 +13262,17 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "ansi_term", "build-helper", "cargo_metadata", "filetime", "parity-wasm", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0)", "strum 0.24.1", "tempfile", - "toml 0.7.8", + "toml 0.8.14", "walkdir", "wasm-opt", ] @@ -13705,7 +13603,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f" dependencies = [ "pin-project", - "rand 0.8.5", + "rand", "tokio", ] @@ -13800,17 +13698,6 @@ dependencies = [ "winnow 0.5.40", ] -[[package]] -name = "toml_edit" -version = "0.20.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" -dependencies = [ - "indexmap 2.2.6", - "toml_datetime", - "winnow 0.5.40", -] - [[package]] name = "toml_edit" version = "0.21.1" @@ -13922,7 +13809,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "coarsetime", "polkadot-primitives", @@ -13933,10 +13820,10 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "expander 2.2.1", - "proc-macro-crate 2.0.0", + "proc-macro-crate 3.1.0", "proc-macro2", "quote", "syn 2.0.66", @@ -14053,7 +13940,7 @@ dependencies = [ "idna 0.2.3", "ipnet", "lazy_static", - "rand 0.8.5", + "rand", "smallvec", "socket2 0.4.10", "thiserror", @@ -14092,7 +13979,7 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "async-trait", "clap", @@ -14139,7 +14026,7 @@ checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ "cfg-if", "digest 0.10.7", - "rand 0.8.5", + "rand", "static_assertions", ] @@ -14316,7 +14203,7 @@ dependencies = [ "arrayref", "constcat", "digest 0.10.7", - "rand 0.8.5", + "rand", "rand_chacha 0.3.1", "rand_core 0.6.4", "sha2 0.10.8", @@ -14726,7 +14613,7 @@ dependencies = [ "memfd", "memoffset", "paste", - "rand 0.8.5", + "rand", "rustix 0.36.17", "wasmtime-asm-macros", "wasmtime-environ", @@ -14784,7 +14671,7 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "westend-runtime" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "binary-merkle-tree", "bitvec", @@ -14884,14 +14771,14 @@ dependencies = [ "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", - "substrate-wasm-builder 5.0.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0)", + "substrate-wasm-builder 5.0.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0)", "westend-runtime-constants", ] [[package]] name = "westend-runtime-constants" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "frame-support", "polkadot-primitives", @@ -14901,6 +14788,7 @@ dependencies = [ "sp-runtime", "sp-weights", "staging-xcm", + "staging-xcm-builder", ] [[package]] @@ -15276,7 +15164,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.5.0#a56caf11845f2118a34d9464b8e929315c12c8e3" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.6.0#a115b1dff31b70168fed20b582089d51d9b0d3bd" dependencies = [ "Inflector", "proc-macro2", @@ -15294,7 +15182,7 @@ dependencies = [ "log", "nohash-hasher", "parking_lot 0.12.3", - "rand 0.8.5", + "rand", "static_assertions", ] diff --git a/Cargo.toml b/Cargo.toml index 6681cfe4b7..0a8c0d6fd3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,28 +22,28 @@ parking_lot = "0.12.1" # substrate wasm parity-scale-codec = { version = "3.6.12", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -frame-executive = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -# frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -frame-system-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -frame-try-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-io = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-std = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-offchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +frame-executive = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +# frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +frame-system-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +frame-try-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-io = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-std = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-offchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } scale-info = { version = "2.10.0", default-features = false, features = [ "derive", ] } -sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-version = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } +sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-version = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } chrono = { version = "0.4.24" } pretty_assertions = { version = "1.3.0" } smallvec = "1.11.0" @@ -53,52 +53,52 @@ serde = { version = "1.0", default-features = false } serial_test = { version = "0.9.0", default-features = false } # substrate pallets -pallet-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } +pallet-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-democracy = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-preimage = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-scheduler = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } # polkadot -polkadot-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -polkadot-parachain-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -polkadot-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } +polkadot-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +polkadot-parachain-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +polkadot-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } # cumulus -cumulus-client-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -cumulus-client-collator = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -cumulus-client-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -cumulus-client-consensus-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -cumulus-client-consensus-proposer = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -cumulus-client-network = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -cumulus-client-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -cumulus-relay-chain-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -cumulus-relay-chain-minimal-node = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -cumulus-relay-chain-rpc-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } +cumulus-client-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +cumulus-client-collator = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +cumulus-client-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +cumulus-client-consensus-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +cumulus-client-consensus-proposer = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +cumulus-client-network = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +cumulus-client-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +cumulus-relay-chain-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +cumulus-relay-chain-minimal-node = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +cumulus-relay-chain-rpc-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } -cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -cumulus-pallet-session-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -cumulus-primitives-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -cumulus-primitives-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -cumulus-primitives-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -pallet-collator-selection = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -parachain-info = { package = "staging-parachain-info", git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } +cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +cumulus-pallet-session-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +cumulus-primitives-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +cumulus-primitives-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +cumulus-client-parachain-inherent = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +cumulus-primitives-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +pallet-collator-selection = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +parachain-info = { package = "staging-parachain-info", git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } # client derive_more = "0.99.17" @@ -115,45 +115,45 @@ tokio = { version = "1.25.0", default-features = false } unicode-normalization = { version = "0.1.22", default-features = false } clap = { version = "4.2.5", features = ["derive"] } -frame-benchmarking-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-basic-authorship = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-chain-spec = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-client-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-client-db = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-consensus = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-consensus-manual-seal = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sc-keystore = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-network = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-network-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-network-sync = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-offchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-rpc = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-sysinfo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-telemetry = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-tracing = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sp-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-consensus = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-genesis-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-inherents = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-rpc = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sp-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0", default-features = false } -sp-wasm-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -sp-metadata-ir = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -substrate-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-basic-authorship = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-chain-spec = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-client-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-client-db = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-consensus = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-consensus-manual-seal = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sc-keystore = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-network = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-network-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-network-sync = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-offchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-rpc = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-sysinfo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-telemetry = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-tracing = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sp-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-consensus = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-genesis-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-inherents = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-rpc = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sp-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0", default-features = false } +sp-wasm-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +sp-metadata-ir = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +substrate-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } -try-runtime-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.5.0" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } +try-runtime-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.6.0" } [profile.release] panic = "unwind" diff --git a/e2e/capacity/capacity_rpc.test.ts b/e2e/capacity/capacity_rpc.test.ts index 5b7d623cef..d8d9f530bf 100644 --- a/e2e/capacity/capacity_rpc.test.ts +++ b/e2e/capacity/capacity_rpc.test.ts @@ -70,7 +70,7 @@ describe('Capacity RPC', function () { assert.notEqual(feeDetails.inclusionFee, undefined, 'should have returned a partialFee'); assert(feeDetails.inclusionFee.isSome, 'should have returned a partialFee'); const { baseFee, lenFee, adjustedWeightFee } = feeDetails.inclusionFee.toJSON() as any; - const baseFeeSnapshot = 139448; + const baseFeeSnapshot = 177812; assert( Math.abs(baseFee - baseFeeSnapshot) < 10_000, 'The base fee appears to be wrong or have changed more than expected' @@ -78,7 +78,7 @@ describe('Capacity RPC', function () { assert(Math.abs(lenFee - 1170000) < 100, 'The len fee appears to be wrong or have changed more than expected'); // This is comparing stable weight, which has no impact from targeted_fee_adjustment, with actual weights. assert( - Math.abs(adjustedWeightFee - weightFee.toNumber()) < 10_000, + Math.abs(adjustedWeightFee - weightFee.toNumber()) < 50_000, 'The adjusted weight fee appears to be wrong or have changed more than expected' ); }); diff --git a/node/cli/Cargo.toml b/node/cli/Cargo.toml index 051f9f4ba2..0e62acd0c1 100644 --- a/node/cli/Cargo.toml +++ b/node/cli/Cargo.toml @@ -56,7 +56,7 @@ polkadot-service = { workspace = true } # Cumulus cumulus-client-cli = { workspace = true } cumulus-client-service = { workspace = true } -cumulus-primitives-parachain-inherent = { workspace = true } +cumulus-client-parachain-inherent = { workspace = true } cumulus-primitives-core = { workspace = true } [build-dependencies] diff --git a/node/cli/src/benchmarking.rs b/node/cli/src/benchmarking.rs index 7fe52764d0..7da5492912 100644 --- a/node/cli/src/benchmarking.rs +++ b/node/cli/src/benchmarking.rs @@ -166,7 +166,7 @@ pub fn inherent_benchmark_data() -> Result { let d = Duration::from_millis(0); let timestamp = sp_timestamp::InherentDataProvider::new(d.into()); let mock_para_inherent_provider = - cumulus_primitives_parachain_inherent::MockValidationDataInherentDataProvider { + cumulus_client_parachain_inherent::MockValidationDataInherentDataProvider { current_para_block: 0, relay_offset: 1, relay_blocks_per_para_block: 2, diff --git a/node/cli/src/cli.rs b/node/cli/src/cli.rs index 3b2be64ea3..43b0d081d8 100644 --- a/node/cli/src/cli.rs +++ b/node/cli/src/cli.rs @@ -39,7 +39,8 @@ pub enum Subcommand { PurgeChain(cumulus_client_cli::PurgeChainCmd), /// Export the genesis state of the parachain. - ExportGenesisState(cumulus_client_cli::ExportGenesisStateCommand), + #[command(alias = "export-genesis-state")] + ExportGenesisHead(cumulus_client_cli::ExportGenesisHeadCommand), /// Export the genesis wasm of the parachain. ExportGenesisWasm(cumulus_client_cli::ExportGenesisWasmCommand), diff --git a/node/cli/src/command.rs b/node/cli/src/command.rs index 8f303d0067..fbec3ba209 100644 --- a/node/cli/src/command.rs +++ b/node/cli/src/command.rs @@ -335,12 +335,12 @@ pub fn run() -> Result<()> { Ok(cmd.run(components.client, components.backend, None)) }) }, - Some(Subcommand::ExportGenesisState(cmd)) => { + Some(Subcommand::ExportGenesisHead(cmd)) => { let runner = cli.create_runner(cmd)?; runner.sync_run(|config| { let partials = new_partial(&config, false)?; - cmd.run(&*config.chain_spec, &*partials.client) + cmd.run(partials.client) }) }, Some(Subcommand::ExportGenesisWasm(cmd)) => { diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 942678fa00..8f19d3436e 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -87,7 +87,6 @@ cumulus-client-consensus-proposer = { workspace = true } cumulus-client-network = { workspace = true } cumulus-client-service = { workspace = true } cumulus-primitives-core = { workspace = true } -cumulus-primitives-parachain-inherent = { workspace = true } cumulus-relay-chain-inprocess-interface = { workspace = true } cumulus-relay-chain-interface = { workspace = true } cumulus-relay-chain-minimal-node = { workspace = true } diff --git a/node/service/src/service.rs b/node/service/src/service.rs index 8e253f7609..5be991b30b 100644 --- a/node/service/src/service.rs +++ b/node/service/src/service.rs @@ -31,7 +31,6 @@ use cumulus_primitives_core::{ relay_chain::{CollatorPair, ValidationCode}, ParaId, }; -use cumulus_primitives_parachain_inherent::MockValidationDataInherentDataProvider; use cumulus_relay_chain_interface::{OverseerHandle, RelayChainError, RelayChainInterface}; // Substrate Imports diff --git a/pallets/capacity/src/tests/mock.rs b/pallets/capacity/src/tests/mock.rs index dca00446da..252676a12f 100644 --- a/pallets/capacity/src/tests/mock.rs +++ b/pallets/capacity/src/tests/mock.rs @@ -42,6 +42,7 @@ impl frame_system::Config for Test { type AccountId = u64; type Lookup = IdentityLookup; type RuntimeEvent = RuntimeEvent; + type RuntimeTask = RuntimeTask; type BlockHashCount = ConstU32<250>; type Version = (); type PalletInfo = PalletInfo; diff --git a/pallets/capacity/src/weights.rs b/pallets/capacity/src/weights.rs index 3e7eeda7ad..e864f911eb 100644 --- a/pallets/capacity/src/weights.rs +++ b/pallets/capacity/src/weights.rs @@ -2,9 +2,9 @@ //! Autogenerated weights for `pallet_capacity` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("frequency-bench")`, DB CACHE: `1024` // Executed Command: @@ -61,8 +61,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `174` // Estimated: `6249` - // Minimum execution time: 36_066_000 picoseconds. - Weight::from_parts(38_095_000, 6249) + // Minimum execution time: 35_780_000 picoseconds. + Weight::from_parts(36_737_000, 6249) .saturating_add(T::DbWeight::get().reads(7_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) } @@ -78,8 +78,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `285` // Estimated: `6249` - // Minimum execution time: 25_054_000 picoseconds. - Weight::from_parts(25_867_000, 6249) + // Minimum execution time: 24_827_000 picoseconds. + Weight::from_parts(25_463_000, 6249) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -91,8 +91,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `2974` - // Minimum execution time: 2_311_000 picoseconds. - Weight::from_parts(2_434_000, 2974) + // Minimum execution time: 2_272_000 picoseconds. + Weight::from_parts(2_384_000, 2974) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -108,8 +108,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `271` // Estimated: `5071` - // Minimum execution time: 23_861_000 picoseconds. - Weight::from_parts(24_530_000, 5071) + // Minimum execution time: 23_943_000 picoseconds. + Weight::from_parts(24_949_000, 5071) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) } @@ -119,8 +119,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_376_000 picoseconds. - Weight::from_parts(4_646_000, 0) + // Minimum execution time: 4_069_000 picoseconds. + Weight::from_parts(4_348_000, 0) .saturating_add(T::DbWeight::get().writes(1_u64)) } } @@ -145,8 +145,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `174` // Estimated: `6249` - // Minimum execution time: 36_066_000 picoseconds. - Weight::from_parts(38_095_000, 6249) + // Minimum execution time: 35_780_000 picoseconds. + Weight::from_parts(36_737_000, 6249) .saturating_add(RocksDbWeight::get().reads(7_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) } @@ -162,8 +162,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `285` // Estimated: `6249` - // Minimum execution time: 25_054_000 picoseconds. - Weight::from_parts(25_867_000, 6249) + // Minimum execution time: 24_827_000 picoseconds. + Weight::from_parts(25_463_000, 6249) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(2_u64)) } @@ -175,8 +175,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `0` // Estimated: `2974` - // Minimum execution time: 2_311_000 picoseconds. - Weight::from_parts(2_434_000, 2974) + // Minimum execution time: 2_272_000 picoseconds. + Weight::from_parts(2_384_000, 2974) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } @@ -192,8 +192,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `271` // Estimated: `5071` - // Minimum execution time: 23_861_000 picoseconds. - Weight::from_parts(24_530_000, 5071) + // Minimum execution time: 23_943_000 picoseconds. + Weight::from_parts(24_949_000, 5071) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) } @@ -203,8 +203,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_376_000 picoseconds. - Weight::from_parts(4_646_000, 0) + // Minimum execution time: 4_069_000 picoseconds. + Weight::from_parts(4_348_000, 0) .saturating_add(RocksDbWeight::get().writes(1_u64)) } } diff --git a/pallets/frequency-tx-payment/src/tests/mock.rs b/pallets/frequency-tx-payment/src/tests/mock.rs index 898cbf859c..3bc45ddb67 100644 --- a/pallets/frequency-tx-payment/src/tests/mock.rs +++ b/pallets/frequency-tx-payment/src/tests/mock.rs @@ -69,6 +69,7 @@ impl frame_system::Config for Test { type AccountId = u64; type Lookup = IdentityLookup; type RuntimeEvent = RuntimeEvent; + type RuntimeTask = RuntimeTask; type BlockHashCount = ConstU32<250>; type Version = (); type PalletInfo = PalletInfo; diff --git a/pallets/frequency-tx-payment/src/weights.rs b/pallets/frequency-tx-payment/src/weights.rs index 637c5b7ffe..dd26c846b6 100644 --- a/pallets/frequency-tx-payment/src/weights.rs +++ b/pallets/frequency-tx-payment/src/weights.rs @@ -2,9 +2,9 @@ //! Autogenerated weights for `pallet_frequency_tx_payment` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("frequency-bench")`, DB CACHE: `1024` // Executed Command: @@ -44,18 +44,18 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_122_000 picoseconds. - Weight::from_parts(3_444_000, 0) + // Minimum execution time: 3_154_000 picoseconds. + Weight::from_parts(3_326_000, 0) } /// The range of component `n` is `[0, 10]`. fn pay_with_capacity_batch_all(n: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 5_376_000 picoseconds. - Weight::from_parts(6_226_919, 0) - // Standard Error: 9_132 - .saturating_add(Weight::from_parts(3_030_627, 0).saturating_mul(n.into())) + // Minimum execution time: 5_117_000 picoseconds. + Weight::from_parts(6_107_676, 0) + // Standard Error: 11_748 + .saturating_add(Weight::from_parts(3_023_884, 0).saturating_mul(n.into())) } } @@ -65,18 +65,18 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_122_000 picoseconds. - Weight::from_parts(3_444_000, 0) + // Minimum execution time: 3_154_000 picoseconds. + Weight::from_parts(3_326_000, 0) } /// The range of component `n` is `[0, 10]`. fn pay_with_capacity_batch_all(n: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 5_376_000 picoseconds. - Weight::from_parts(6_226_919, 0) - // Standard Error: 9_132 - .saturating_add(Weight::from_parts(3_030_627, 0).saturating_mul(n.into())) + // Minimum execution time: 5_117_000 picoseconds. + Weight::from_parts(6_107_676, 0) + // Standard Error: 11_748 + .saturating_add(Weight::from_parts(3_023_884, 0).saturating_mul(n.into())) } } diff --git a/pallets/handles/src/lib.rs b/pallets/handles/src/lib.rs index a7aa63e45a..9542b234e7 100644 --- a/pallets/handles/src/lib.rs +++ b/pallets/handles/src/lib.rs @@ -387,7 +387,7 @@ pub mod pallet { .map_err(|_| Error::::InvalidMessageSourceAccount)?; // Validation: The signature is within the mortality window - Self::verify_signature_mortality(payload.expiration.into())?; + Self::verify_signature_mortality(payload.expiration)?; // Validation: Verify the payload was signed Self::verify_signed_payload(&proof, &msa_owner_key, payload.encode())?; @@ -473,7 +473,7 @@ pub mod pallet { .map_err(|_| Error::::InvalidMessageSourceAccount)?; // Validation: The signature is within the mortality window - Self::verify_signature_mortality(payload.expiration.into())?; + Self::verify_signature_mortality(payload.expiration)?; // Validation: Verify the payload was signed Self::verify_signed_payload(&proof, &msa_owner_key, payload.encode())?; diff --git a/pallets/handles/src/tests/mock.rs b/pallets/handles/src/tests/mock.rs index 6dda9aae66..fda66e25a7 100644 --- a/pallets/handles/src/tests/mock.rs +++ b/pallets/handles/src/tests/mock.rs @@ -68,6 +68,7 @@ impl frame_system::Config for Test { type AccountId = AccountId; type Lookup = IdentityLookup; type Block = Block; + type RuntimeTask = RuntimeTask; type RuntimeEvent = RuntimeEvent; type BlockHashCount = ConstU32<250>; type Version = (); diff --git a/pallets/handles/src/weights.rs b/pallets/handles/src/weights.rs index 03148aff42..ed5e688493 100644 --- a/pallets/handles/src/weights.rs +++ b/pallets/handles/src/weights.rs @@ -2,9 +2,9 @@ //! Autogenerated weights for `pallet_handles` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("frequency-bench")`, DB CACHE: `1024` // Executed Command: @@ -54,10 +54,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `116` // Estimated: `5009` - // Minimum execution time: 78_291_000 picoseconds. - Weight::from_parts(80_302_371, 5009) - // Standard Error: 12_151 - .saturating_add(Weight::from_parts(65_937, 0).saturating_mul(b.into())) + // Minimum execution time: 64_969_000 picoseconds. + Weight::from_parts(66_133_125, 5009) + // Standard Error: 6_779 + .saturating_add(Weight::from_parts(100_429, 0).saturating_mul(b.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -74,10 +74,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `222 + b * (1 ±0)` // Estimated: `5009` - // Minimum execution time: 87_080_000 picoseconds. - Weight::from_parts(88_770_583, 5009) - // Standard Error: 14_395 - .saturating_add(Weight::from_parts(169_095, 0).saturating_mul(b.into())) + // Minimum execution time: 73_102_000 picoseconds. + Weight::from_parts(74_258_336, 5009) + // Standard Error: 8_730 + .saturating_add(Weight::from_parts(176_259, 0).saturating_mul(b.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) } @@ -91,8 +91,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `231` // Estimated: `5009` - // Minimum execution time: 19_542_000 picoseconds. - Weight::from_parts(20_398_000, 5009) + // Minimum execution time: 20_395_000 picoseconds. + Weight::from_parts(20_978_000, 5009) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -113,10 +113,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `116` // Estimated: `5009` - // Minimum execution time: 78_291_000 picoseconds. - Weight::from_parts(80_302_371, 5009) - // Standard Error: 12_151 - .saturating_add(Weight::from_parts(65_937, 0).saturating_mul(b.into())) + // Minimum execution time: 64_969_000 picoseconds. + Weight::from_parts(66_133_125, 5009) + // Standard Error: 6_779 + .saturating_add(Weight::from_parts(100_429, 0).saturating_mul(b.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } @@ -133,10 +133,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `222 + b * (1 ±0)` // Estimated: `5009` - // Minimum execution time: 87_080_000 picoseconds. - Weight::from_parts(88_770_583, 5009) - // Standard Error: 14_395 - .saturating_add(Weight::from_parts(169_095, 0).saturating_mul(b.into())) + // Minimum execution time: 73_102_000 picoseconds. + Weight::from_parts(74_258_336, 5009) + // Standard Error: 8_730 + .saturating_add(Weight::from_parts(176_259, 0).saturating_mul(b.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) } @@ -150,8 +150,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `231` // Estimated: `5009` - // Minimum execution time: 19_542_000 picoseconds. - Weight::from_parts(20_398_000, 5009) + // Minimum execution time: 20_395_000 picoseconds. + Weight::from_parts(20_978_000, 5009) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().writes(2_u64)) } diff --git a/pallets/messages/src/tests/mock.rs b/pallets/messages/src/tests/mock.rs index 7cbdd256dc..c95090ad6b 100644 --- a/pallets/messages/src/tests/mock.rs +++ b/pallets/messages/src/tests/mock.rs @@ -56,6 +56,7 @@ impl system::Config for Test { type Lookup = IdentityLookup; type RuntimeEvent = RuntimeEvent; type BlockHashCount = ConstU32<250>; + type RuntimeTask = RuntimeTask; type Version = (); type PalletInfo = PalletInfo; type AccountData = (); diff --git a/pallets/messages/src/weights.rs b/pallets/messages/src/weights.rs index a300b584f4..a8c4cac7e0 100644 --- a/pallets/messages/src/weights.rs +++ b/pallets/messages/src/weights.rs @@ -2,9 +2,9 @@ //! Autogenerated weights for `pallet_messages` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("frequency-bench")`, DB CACHE: `1024` // Executed Command: @@ -53,10 +53,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `329` // Estimated: `5167` - // Minimum execution time: 28_791_000 picoseconds. - Weight::from_parts(30_241_861, 5167) - // Standard Error: 74 - .saturating_add(Weight::from_parts(712, 0).saturating_mul(n.into())) + // Minimum execution time: 27_933_000 picoseconds. + Weight::from_parts(29_247_111, 5167) + // Standard Error: 40 + .saturating_add(Weight::from_parts(699, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -70,8 +70,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `722` // Estimated: `4998` - // Minimum execution time: 28_835_000 picoseconds. - Weight::from_parts(29_352_000, 4998) + // Minimum execution time: 28_548_000 picoseconds. + Weight::from_parts(29_152_000, 4998) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -92,10 +92,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `329` // Estimated: `5167` - // Minimum execution time: 28_791_000 picoseconds. - Weight::from_parts(30_241_861, 5167) - // Standard Error: 74 - .saturating_add(Weight::from_parts(712, 0).saturating_mul(n.into())) + // Minimum execution time: 27_933_000 picoseconds. + Weight::from_parts(29_247_111, 5167) + // Standard Error: 40 + .saturating_add(Weight::from_parts(699, 0).saturating_mul(n.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } @@ -109,8 +109,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `722` // Estimated: `4998` - // Minimum execution time: 28_835_000 picoseconds. - Weight::from_parts(29_352_000, 4998) + // Minimum execution time: 28_548_000 picoseconds. + Weight::from_parts(29_152_000, 4998) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } diff --git a/pallets/msa/src/lib.rs b/pallets/msa/src/lib.rs index 45d13adb85..4e912982ec 100644 --- a/pallets/msa/src/lib.rs +++ b/pallets/msa/src/lib.rs @@ -669,8 +669,8 @@ pub mod pallet { ) .map_err(|_| Error::::NewKeyOwnershipInvalidSignature)?; - Self::register_signature(&msa_owner_proof, add_key_payload.expiration.into())?; - Self::register_signature(&new_key_owner_proof, add_key_payload.expiration.into())?; + Self::register_signature(&msa_owner_proof, add_key_payload.expiration)?; + Self::register_signature(&new_key_owner_proof, add_key_payload.expiration)?; let msa_id = add_key_payload.msa_id; diff --git a/pallets/msa/src/tests/mock.rs b/pallets/msa/src/tests/mock.rs index 9221269484..55b0477af4 100644 --- a/pallets/msa/src/tests/mock.rs +++ b/pallets/msa/src/tests/mock.rs @@ -86,6 +86,7 @@ impl frame_system::Config for Test { type Lookup = IdentityLookup; type Block = Block; type RuntimeEvent = RuntimeEvent; + type RuntimeTask = RuntimeTask; type BlockHashCount = ConstU32<250>; type Version = (); type PalletInfo = PalletInfo; diff --git a/pallets/msa/src/weights.rs b/pallets/msa/src/weights.rs index 56d7a90f39..b243005536 100644 --- a/pallets/msa/src/weights.rs +++ b/pallets/msa/src/weights.rs @@ -2,9 +2,9 @@ //! Autogenerated weights for `pallet_msa` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("frequency-bench")`, DB CACHE: `1024` // Executed Command: @@ -60,8 +60,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `4998` - // Minimum execution time: 11_786_000 picoseconds. - Weight::from_parts(12_401_000, 4998) + // Minimum execution time: 11_795_000 picoseconds. + Weight::from_parts(12_726_000, 4998) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -86,10 +86,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `1284` // Estimated: `7521` - // Minimum execution time: 113_875_000 picoseconds. - Weight::from_parts(115_696_989, 7521) - // Standard Error: 13_851 - .saturating_add(Weight::from_parts(120_270, 0).saturating_mul(s.into())) + // Minimum execution time: 97_829_000 picoseconds. + Weight::from_parts(101_474_765, 7521) + // Standard Error: 17_264 + .saturating_add(Weight::from_parts(115_206, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(10_u64)) .saturating_add(T::DbWeight::get().writes(7_u64)) } @@ -101,8 +101,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `161` // Estimated: `5167` - // Minimum execution time: 13_816_000 picoseconds. - Weight::from_parts(14_275_000, 5167) + // Minimum execution time: 13_220_000 picoseconds. + Weight::from_parts(13_692_000, 5167) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -116,10 +116,10 @@ impl WeightInfo for SubstrateWeight { /// Proof: `Msa::PublicKeyCountForMsaId` (`max_values`: None, `max_size`: Some(17), added: 2492, mode: `MaxEncodedLen`) fn add_public_key_to_msa() -> Weight { // Proof Size summary in bytes: - // Measured: `1574` + // Measured: `1578` // Estimated: `10971` - // Minimum execution time: 171_469_000 picoseconds. - Weight::from_parts(173_155_000, 10971) + // Minimum execution time: 142_719_000 picoseconds. + Weight::from_parts(144_951_000, 10971) .saturating_add(T::DbWeight::get().reads(8_u64)) .saturating_add(T::DbWeight::get().writes(7_u64)) } @@ -131,8 +131,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `254` // Estimated: `7521` - // Minimum execution time: 24_869_000 picoseconds. - Weight::from_parts(25_489_000, 7521) + // Minimum execution time: 25_379_000 picoseconds. + Weight::from_parts(26_517_000, 7521) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -144,8 +144,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `71` // Estimated: `4998` - // Minimum execution time: 18_328_000 picoseconds. - Weight::from_parts(18_515_000, 4998) + // Minimum execution time: 17_850_000 picoseconds. + Weight::from_parts(19_128_000, 4998) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -166,10 +166,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `1327` // Estimated: `7521` - // Minimum execution time: 104_146_000 picoseconds. - Weight::from_parts(106_463_803, 7521) - // Standard Error: 17_403 - .saturating_add(Weight::from_parts(135_223, 0).saturating_mul(s.into())) + // Minimum execution time: 88_201_000 picoseconds. + Weight::from_parts(91_787_134, 7521) + // Standard Error: 11_595 + .saturating_add(Weight::from_parts(128_867, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(8_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) } @@ -181,8 +181,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `161` // Estimated: `5167` - // Minimum execution time: 13_640_000 picoseconds. - Weight::from_parts(14_140_000, 5167) + // Minimum execution time: 13_564_000 picoseconds. + Weight::from_parts(13_964_000, 5167) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -194,8 +194,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `67` // Estimated: `4998` - // Minimum execution time: 10_904_000 picoseconds. - Weight::from_parts(11_208_000, 4998) + // Minimum execution time: 10_516_000 picoseconds. + Weight::from_parts(10_839_000, 4998) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -207,8 +207,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `67` // Estimated: `4998` - // Minimum execution time: 10_772_000 picoseconds. - Weight::from_parts(11_086_000, 4998) + // Minimum execution time: 10_635_000 picoseconds. + Weight::from_parts(10_955_000, 4998) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -226,8 +226,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `147` // Estimated: `5097` - // Minimum execution time: 18_803_000 picoseconds. - Weight::from_parts(19_238_000, 5097) + // Minimum execution time: 18_567_000 picoseconds. + Weight::from_parts(19_347_000, 5097) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) } @@ -242,10 +242,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `316 + s * (6 ±0)` // Estimated: `5167` - // Minimum execution time: 17_023_000 picoseconds. - Weight::from_parts(17_980_102, 5167) - // Standard Error: 4_280 - .saturating_add(Weight::from_parts(96_262, 0).saturating_mul(s.into())) + // Minimum execution time: 16_070_000 picoseconds. + Weight::from_parts(17_394_598, 5167) + // Standard Error: 4_556 + .saturating_add(Weight::from_parts(107_947, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -263,8 +263,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `0` // Estimated: `4998` - // Minimum execution time: 11_786_000 picoseconds. - Weight::from_parts(12_401_000, 4998) + // Minimum execution time: 11_795_000 picoseconds. + Weight::from_parts(12_726_000, 4998) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } @@ -289,10 +289,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `1284` // Estimated: `7521` - // Minimum execution time: 113_875_000 picoseconds. - Weight::from_parts(115_696_989, 7521) - // Standard Error: 13_851 - .saturating_add(Weight::from_parts(120_270, 0).saturating_mul(s.into())) + // Minimum execution time: 97_829_000 picoseconds. + Weight::from_parts(101_474_765, 7521) + // Standard Error: 17_264 + .saturating_add(Weight::from_parts(115_206, 0).saturating_mul(s.into())) .saturating_add(RocksDbWeight::get().reads(10_u64)) .saturating_add(RocksDbWeight::get().writes(7_u64)) } @@ -304,8 +304,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `161` // Estimated: `5167` - // Minimum execution time: 13_816_000 picoseconds. - Weight::from_parts(14_275_000, 5167) + // Minimum execution time: 13_220_000 picoseconds. + Weight::from_parts(13_692_000, 5167) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } @@ -319,10 +319,10 @@ impl WeightInfo for () { /// Proof: `Msa::PublicKeyCountForMsaId` (`max_values`: None, `max_size`: Some(17), added: 2492, mode: `MaxEncodedLen`) fn add_public_key_to_msa() -> Weight { // Proof Size summary in bytes: - // Measured: `1574` + // Measured: `1578` // Estimated: `10971` - // Minimum execution time: 171_469_000 picoseconds. - Weight::from_parts(173_155_000, 10971) + // Minimum execution time: 142_719_000 picoseconds. + Weight::from_parts(144_951_000, 10971) .saturating_add(RocksDbWeight::get().reads(8_u64)) .saturating_add(RocksDbWeight::get().writes(7_u64)) } @@ -334,8 +334,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `254` // Estimated: `7521` - // Minimum execution time: 24_869_000 picoseconds. - Weight::from_parts(25_489_000, 7521) + // Minimum execution time: 25_379_000 picoseconds. + Weight::from_parts(26_517_000, 7521) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(2_u64)) } @@ -347,8 +347,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `71` // Estimated: `4998` - // Minimum execution time: 18_328_000 picoseconds. - Weight::from_parts(18_515_000, 4998) + // Minimum execution time: 17_850_000 picoseconds. + Weight::from_parts(19_128_000, 4998) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().writes(2_u64)) } @@ -369,10 +369,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `1327` // Estimated: `7521` - // Minimum execution time: 104_146_000 picoseconds. - Weight::from_parts(106_463_803, 7521) - // Standard Error: 17_403 - .saturating_add(Weight::from_parts(135_223, 0).saturating_mul(s.into())) + // Minimum execution time: 88_201_000 picoseconds. + Weight::from_parts(91_787_134, 7521) + // Standard Error: 11_595 + .saturating_add(Weight::from_parts(128_867, 0).saturating_mul(s.into())) .saturating_add(RocksDbWeight::get().reads(8_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) } @@ -384,8 +384,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `161` // Estimated: `5167` - // Minimum execution time: 13_640_000 picoseconds. - Weight::from_parts(14_140_000, 5167) + // Minimum execution time: 13_564_000 picoseconds. + Weight::from_parts(13_964_000, 5167) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } @@ -397,8 +397,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `67` // Estimated: `4998` - // Minimum execution time: 10_904_000 picoseconds. - Weight::from_parts(11_208_000, 4998) + // Minimum execution time: 10_516_000 picoseconds. + Weight::from_parts(10_839_000, 4998) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } @@ -410,8 +410,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `67` // Estimated: `4998` - // Minimum execution time: 10_772_000 picoseconds. - Weight::from_parts(11_086_000, 4998) + // Minimum execution time: 10_635_000 picoseconds. + Weight::from_parts(10_955_000, 4998) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } @@ -429,8 +429,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `147` // Estimated: `5097` - // Minimum execution time: 18_803_000 picoseconds. - Weight::from_parts(19_238_000, 5097) + // Minimum execution time: 18_567_000 picoseconds. + Weight::from_parts(19_347_000, 5097) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) } @@ -445,10 +445,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `316 + s * (6 ±0)` // Estimated: `5167` - // Minimum execution time: 17_023_000 picoseconds. - Weight::from_parts(17_980_102, 5167) - // Standard Error: 4_280 - .saturating_add(Weight::from_parts(96_262, 0).saturating_mul(s.into())) + // Minimum execution time: 16_070_000 picoseconds. + Weight::from_parts(17_394_598, 5167) + // Standard Error: 4_556 + .saturating_add(Weight::from_parts(107_947, 0).saturating_mul(s.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } diff --git a/pallets/passkey/src/mock.rs b/pallets/passkey/src/mock.rs index dfccfee0cf..adc522f377 100644 --- a/pallets/passkey/src/mock.rs +++ b/pallets/passkey/src/mock.rs @@ -34,6 +34,7 @@ impl frame_system::Config for Test { type Lookup = IdentityLookup; type RuntimeEvent = RuntimeEvent; type Block = Block; + type RuntimeTask = RuntimeTask; type BlockHashCount = ConstU32<250>; type BlockWeights = (); type BlockLength = (); diff --git a/pallets/schemas/src/tests/mock.rs b/pallets/schemas/src/tests/mock.rs index ef0df1513d..5c61b53d45 100644 --- a/pallets/schemas/src/tests/mock.rs +++ b/pallets/schemas/src/tests/mock.rs @@ -144,6 +144,7 @@ impl frame_system::Config for Test { type AccountId = AccountId; type Lookup = IdentityLookup; type RuntimeEvent = RuntimeEvent; + type RuntimeTask = RuntimeTask; type Block = Block; type BlockHashCount = ConstU32<250>; type Version = (); diff --git a/pallets/schemas/src/weights.rs b/pallets/schemas/src/weights.rs index 36d31b64dc..5adfa04ea3 100644 --- a/pallets/schemas/src/weights.rs +++ b/pallets/schemas/src/weights.rs @@ -2,9 +2,9 @@ //! Autogenerated weights for `pallet_schemas` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("frequency-bench")`, DB CACHE: `1024` // Executed Command: @@ -61,10 +61,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `136` // Estimated: `2974` - // Minimum execution time: 12_274_000 picoseconds. - Weight::from_parts(12_403_000, 2974) - // Standard Error: 42 - .saturating_add(Weight::from_parts(34_823, 0).saturating_mul(m.into())) + // Minimum execution time: 12_337_000 picoseconds. + Weight::from_parts(12_490_000, 2974) + // Standard Error: 48 + .saturating_add(Weight::from_parts(35_031, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -81,10 +81,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `136` // Estimated: `2974` - // Minimum execution time: 12_261_000 picoseconds. - Weight::from_parts(12_410_000, 2974) - // Standard Error: 48 - .saturating_add(Weight::from_parts(34_939, 0).saturating_mul(m.into())) + // Minimum execution time: 12_238_000 picoseconds. + Weight::from_parts(12_597_000, 2974) + // Standard Error: 49 + .saturating_add(Weight::from_parts(35_264, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -103,10 +103,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `230` // Estimated: `5180` - // Minimum execution time: 16_515_000 picoseconds. - Weight::from_parts(4_779_776, 5180) + // Minimum execution time: 17_575_000 picoseconds. + Weight::from_parts(5_733_007, 5180) // Standard Error: 33 - .saturating_add(Weight::from_parts(3_129, 0).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(3_073, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) } @@ -123,10 +123,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `136` // Estimated: `2974` - // Minimum execution time: 12_314_000 picoseconds. - Weight::from_parts(12_593_000, 2974) - // Standard Error: 46 - .saturating_add(Weight::from_parts(34_813, 0).saturating_mul(m.into())) + // Minimum execution time: 12_171_000 picoseconds. + Weight::from_parts(12_303_000, 2974) + // Standard Error: 50 + .saturating_add(Weight::from_parts(35_116, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -145,10 +145,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `136` // Estimated: `5552` - // Minimum execution time: 19_900_000 picoseconds. - Weight::from_parts(20_204_000, 5552) - // Standard Error: 49 - .saturating_add(Weight::from_parts(34_906, 0).saturating_mul(m.into())) + // Minimum execution time: 19_312_000 picoseconds. + Weight::from_parts(19_706_000, 5552) + // Standard Error: 48 + .saturating_add(Weight::from_parts(35_133, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) } @@ -158,8 +158,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_368_000 picoseconds. - Weight::from_parts(4_510_000, 0) + // Minimum execution time: 4_293_000 picoseconds. + Weight::from_parts(4_547_000, 0) .saturating_add(T::DbWeight::get().writes(1_u64)) } /// Storage: `Schemas::GovernanceSchemaModelMaxBytes` (r:1 w:0) @@ -177,10 +177,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `136` // Estimated: `5552` - // Minimum execution time: 20_023_000 picoseconds. - Weight::from_parts(2_115_569, 5552) - // Standard Error: 64 - .saturating_add(Weight::from_parts(35_521, 0).saturating_mul(m.into())) + // Minimum execution time: 19_676_000 picoseconds. + Weight::from_parts(19_917_000, 5552) + // Standard Error: 47 + .saturating_add(Weight::from_parts(35_136, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) } @@ -199,10 +199,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `230` // Estimated: `5180` - // Minimum execution time: 16_881_000 picoseconds. - Weight::from_parts(5_031_975, 5180) + // Minimum execution time: 16_741_000 picoseconds. + Weight::from_parts(5_797_471, 5180) // Standard Error: 33 - .saturating_add(Weight::from_parts(3_127, 0).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(3_096, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) } @@ -222,8 +222,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `433` // Estimated: `5383` - // Minimum execution time: 22_380_000 picoseconds. - Weight::from_parts(23_161_000, 5383) + // Minimum execution time: 22_173_000 picoseconds. + Weight::from_parts(22_950_000, 5383) .saturating_add(T::DbWeight::get().reads(5_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) } @@ -235,8 +235,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `203` // Estimated: `5552` - // Minimum execution time: 14_891_000 picoseconds. - Weight::from_parts(15_443_000, 5552) + // Minimum execution time: 14_536_000 picoseconds. + Weight::from_parts(15_117_000, 5552) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -257,10 +257,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `136` // Estimated: `2974` - // Minimum execution time: 12_274_000 picoseconds. - Weight::from_parts(12_403_000, 2974) - // Standard Error: 42 - .saturating_add(Weight::from_parts(34_823, 0).saturating_mul(m.into())) + // Minimum execution time: 12_337_000 picoseconds. + Weight::from_parts(12_490_000, 2974) + // Standard Error: 48 + .saturating_add(Weight::from_parts(35_031, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } @@ -277,10 +277,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `136` // Estimated: `2974` - // Minimum execution time: 12_261_000 picoseconds. - Weight::from_parts(12_410_000, 2974) - // Standard Error: 48 - .saturating_add(Weight::from_parts(34_939, 0).saturating_mul(m.into())) + // Minimum execution time: 12_238_000 picoseconds. + Weight::from_parts(12_597_000, 2974) + // Standard Error: 49 + .saturating_add(Weight::from_parts(35_264, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } @@ -299,10 +299,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `230` // Estimated: `5180` - // Minimum execution time: 16_515_000 picoseconds. - Weight::from_parts(4_779_776, 5180) + // Minimum execution time: 17_575_000 picoseconds. + Weight::from_parts(5_733_007, 5180) // Standard Error: 33 - .saturating_add(Weight::from_parts(3_129, 0).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(3_073, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) } @@ -319,10 +319,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `136` // Estimated: `2974` - // Minimum execution time: 12_314_000 picoseconds. - Weight::from_parts(12_593_000, 2974) - // Standard Error: 46 - .saturating_add(Weight::from_parts(34_813, 0).saturating_mul(m.into())) + // Minimum execution time: 12_171_000 picoseconds. + Weight::from_parts(12_303_000, 2974) + // Standard Error: 50 + .saturating_add(Weight::from_parts(35_116, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } @@ -341,10 +341,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `136` // Estimated: `5552` - // Minimum execution time: 19_900_000 picoseconds. - Weight::from_parts(20_204_000, 5552) - // Standard Error: 49 - .saturating_add(Weight::from_parts(34_906, 0).saturating_mul(m.into())) + // Minimum execution time: 19_312_000 picoseconds. + Weight::from_parts(19_706_000, 5552) + // Standard Error: 48 + .saturating_add(Weight::from_parts(35_133, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) } @@ -354,8 +354,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_368_000 picoseconds. - Weight::from_parts(4_510_000, 0) + // Minimum execution time: 4_293_000 picoseconds. + Weight::from_parts(4_547_000, 0) .saturating_add(RocksDbWeight::get().writes(1_u64)) } /// Storage: `Schemas::GovernanceSchemaModelMaxBytes` (r:1 w:0) @@ -373,10 +373,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `136` // Estimated: `5552` - // Minimum execution time: 20_023_000 picoseconds. - Weight::from_parts(2_115_569, 5552) - // Standard Error: 64 - .saturating_add(Weight::from_parts(35_521, 0).saturating_mul(m.into())) + // Minimum execution time: 19_676_000 picoseconds. + Weight::from_parts(19_917_000, 5552) + // Standard Error: 47 + .saturating_add(Weight::from_parts(35_136, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) } @@ -395,10 +395,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `230` // Estimated: `5180` - // Minimum execution time: 16_881_000 picoseconds. - Weight::from_parts(5_031_975, 5180) + // Minimum execution time: 16_741_000 picoseconds. + Weight::from_parts(5_797_471, 5180) // Standard Error: 33 - .saturating_add(Weight::from_parts(3_127, 0).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(3_096, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) } @@ -418,8 +418,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `433` // Estimated: `5383` - // Minimum execution time: 22_380_000 picoseconds. - Weight::from_parts(23_161_000, 5383) + // Minimum execution time: 22_173_000 picoseconds. + Weight::from_parts(22_950_000, 5383) .saturating_add(RocksDbWeight::get().reads(5_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) } @@ -431,8 +431,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `203` // Estimated: `5552` - // Minimum execution time: 14_891_000 picoseconds. - Weight::from_parts(15_443_000, 5552) + // Minimum execution time: 14_536_000 picoseconds. + Weight::from_parts(15_117_000, 5552) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } diff --git a/pallets/stateful-storage/src/tests/mock.rs b/pallets/stateful-storage/src/tests/mock.rs index d40f83a883..968fa80387 100644 --- a/pallets/stateful-storage/src/tests/mock.rs +++ b/pallets/stateful-storage/src/tests/mock.rs @@ -57,6 +57,7 @@ impl system::Config for Test { type Hashing = BlakeTwo256; type AccountId = AccountId; type Lookup = IdentityLookup; + type RuntimeTask = RuntimeTask; type RuntimeEvent = RuntimeEvent; type BlockHashCount = ConstU32<250>; type Version = (); diff --git a/pallets/stateful-storage/src/weights.rs b/pallets/stateful-storage/src/weights.rs index 797f9494c1..bbf24d9f54 100644 --- a/pallets/stateful-storage/src/weights.rs +++ b/pallets/stateful-storage/src/weights.rs @@ -2,9 +2,9 @@ //! Autogenerated weights for `pallet_stateful_storage` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("frequency-bench")`, DB CACHE: `1024` // Executed Command: @@ -59,10 +59,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `318` // Estimated: `5268` - // Minimum execution time: 25_346_000 picoseconds. - Weight::from_parts(24_809_037, 5268) - // Standard Error: 47 - .saturating_add(Weight::from_parts(1_066, 0).saturating_mul(s.into())) + // Minimum execution time: 25_390_000 picoseconds. + Weight::from_parts(24_887_146, 5268) + // Standard Error: 49 + .saturating_add(Weight::from_parts(1_058, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -79,8 +79,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `10696` // Estimated: `15646` - // Minimum execution time: 39_601_000 picoseconds. - Weight::from_parts(43_017_327, 15646) + // Minimum execution time: 39_077_000 picoseconds. + Weight::from_parts(43_219_754, 15646) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -97,10 +97,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `1479` // Estimated: `6429` - // Minimum execution time: 29_492_000 picoseconds. - Weight::from_parts(30_525_525, 6429) - // Standard Error: 154 - .saturating_add(Weight::from_parts(580, 0).saturating_mul(s.into())) + // Minimum execution time: 29_308_000 picoseconds. + Weight::from_parts(30_466_174, 6429) + // Standard Error: 198 + .saturating_add(Weight::from_parts(907, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -116,8 +116,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `1477` // Estimated: `6427` - // Minimum execution time: 28_027_000 picoseconds. - Weight::from_parts(28_859_000, 6427) + // Minimum execution time: 28_736_000 picoseconds. + Weight::from_parts(29_364_000, 6427) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -132,10 +132,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `325` // Estimated: `5275` - // Minimum execution time: 85_744_000 picoseconds. - Weight::from_parts(79_639_267, 5275) - // Standard Error: 271 - .saturating_add(Weight::from_parts(6_337, 0).saturating_mul(s.into())) + // Minimum execution time: 74_306_000 picoseconds. + Weight::from_parts(66_563_792, 5275) + // Standard Error: 161 + .saturating_add(Weight::from_parts(6_319, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -150,8 +150,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `10703` // Estimated: `15653` - // Minimum execution time: 94_861_000 picoseconds. - Weight::from_parts(99_826_027, 15653) + // Minimum execution time: 83_095_000 picoseconds. + Weight::from_parts(86_916_694, 15653) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -166,10 +166,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `1412` // Estimated: `6362` - // Minimum execution time: 83_929_000 picoseconds. - Weight::from_parts(85_862_403, 6362) - // Standard Error: 635 - .saturating_add(Weight::from_parts(6_354, 0).saturating_mul(s.into())) + // Minimum execution time: 73_266_000 picoseconds. + Weight::from_parts(75_316_910, 6362) + // Standard Error: 226 + .saturating_add(Weight::from_parts(6_243, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -183,8 +183,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `1410` // Estimated: `6360` - // Minimum execution time: 81_943_000 picoseconds. - Weight::from_parts(82_969_000, 6360) + // Minimum execution time: 72_863_000 picoseconds. + Weight::from_parts(74_032_000, 6360) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -205,10 +205,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `318` // Estimated: `5268` - // Minimum execution time: 25_346_000 picoseconds. - Weight::from_parts(24_809_037, 5268) - // Standard Error: 47 - .saturating_add(Weight::from_parts(1_066, 0).saturating_mul(s.into())) + // Minimum execution time: 25_390_000 picoseconds. + Weight::from_parts(24_887_146, 5268) + // Standard Error: 49 + .saturating_add(Weight::from_parts(1_058, 0).saturating_mul(s.into())) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } @@ -225,8 +225,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `10696` // Estimated: `15646` - // Minimum execution time: 39_601_000 picoseconds. - Weight::from_parts(43_017_327, 15646) + // Minimum execution time: 39_077_000 picoseconds. + Weight::from_parts(43_219_754, 15646) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } @@ -243,10 +243,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `1479` // Estimated: `6429` - // Minimum execution time: 29_492_000 picoseconds. - Weight::from_parts(30_525_525, 6429) - // Standard Error: 154 - .saturating_add(Weight::from_parts(580, 0).saturating_mul(s.into())) + // Minimum execution time: 29_308_000 picoseconds. + Weight::from_parts(30_466_174, 6429) + // Standard Error: 198 + .saturating_add(Weight::from_parts(907, 0).saturating_mul(s.into())) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } @@ -262,8 +262,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `1477` // Estimated: `6427` - // Minimum execution time: 28_027_000 picoseconds. - Weight::from_parts(28_859_000, 6427) + // Minimum execution time: 28_736_000 picoseconds. + Weight::from_parts(29_364_000, 6427) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } @@ -278,10 +278,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `325` // Estimated: `5275` - // Minimum execution time: 85_744_000 picoseconds. - Weight::from_parts(79_639_267, 5275) - // Standard Error: 271 - .saturating_add(Weight::from_parts(6_337, 0).saturating_mul(s.into())) + // Minimum execution time: 74_306_000 picoseconds. + Weight::from_parts(66_563_792, 5275) + // Standard Error: 161 + .saturating_add(Weight::from_parts(6_319, 0).saturating_mul(s.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } @@ -296,8 +296,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `10703` // Estimated: `15653` - // Minimum execution time: 94_861_000 picoseconds. - Weight::from_parts(99_826_027, 15653) + // Minimum execution time: 83_095_000 picoseconds. + Weight::from_parts(86_916_694, 15653) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } @@ -312,10 +312,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `1412` // Estimated: `6362` - // Minimum execution time: 83_929_000 picoseconds. - Weight::from_parts(85_862_403, 6362) - // Standard Error: 635 - .saturating_add(Weight::from_parts(6_354, 0).saturating_mul(s.into())) + // Minimum execution time: 73_266_000 picoseconds. + Weight::from_parts(75_316_910, 6362) + // Standard Error: 226 + .saturating_add(Weight::from_parts(6_243, 0).saturating_mul(s.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } @@ -329,8 +329,8 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `1410` // Estimated: `6360` - // Minimum execution time: 81_943_000 picoseconds. - Weight::from_parts(82_969_000, 6360) + // Minimum execution time: 72_863_000 picoseconds. + Weight::from_parts(74_032_000, 6360) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } diff --git a/pallets/time-release/src/mock.rs b/pallets/time-release/src/mock.rs index 2583ebf799..f3db628a8a 100644 --- a/pallets/time-release/src/mock.rs +++ b/pallets/time-release/src/mock.rs @@ -31,6 +31,7 @@ impl frame_system::Config for Test { type OnNewAccount = (); type OnKilledAccount = (); type DbWeight = (); + type RuntimeTask = RuntimeTask; type BaseCallFilter = Everything; type SystemWeightInfo = (); type SS58Prefix = (); diff --git a/pallets/time-release/src/weights.rs b/pallets/time-release/src/weights.rs index aa53ba3c35..3aafd2da7a 100644 --- a/pallets/time-release/src/weights.rs +++ b/pallets/time-release/src/weights.rs @@ -2,9 +2,9 @@ //! Autogenerated weights for `pallet_time_release` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `20`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("frequency-bench")`, DB CACHE: `1024` // Executed Command: @@ -43,6 +43,8 @@ pub struct SubstrateWeight(PhantomData); impl WeightInfo for SubstrateWeight { /// Storage: `ParachainSystem::ValidationData` (r:1 w:0) /// Proof: `ParachainSystem::ValidationData` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `ParachainSystem::LastRelayChainBlockNumber` (r:1 w:0) + /// Proof: `ParachainSystem::LastRelayChainBlockNumber` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// Storage: `TimeRelease::ReleaseSchedules` (r:1 w:1) /// Proof: `TimeRelease::ReleaseSchedules` (`max_values`: None, `max_size`: Some(1449), added: 3924, mode: `MaxEncodedLen`) /// Storage: `System::Account` (r:1 w:1) @@ -55,9 +57,9 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `113` // Estimated: `6399` - // Minimum execution time: 40_913_000 picoseconds. - Weight::from_parts(41_256_000, 6399) - .saturating_add(T::DbWeight::get().reads(5_u64)) + // Minimum execution time: 41_567_000 picoseconds. + Weight::from_parts(42_025_000, 6399) + .saturating_add(T::DbWeight::get().reads(6_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } /// Storage: `ParachainSystem::ValidationData` (r:1 w:0) @@ -73,10 +75,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `268` // Estimated: `6399` - // Minimum execution time: 26_883_000 picoseconds. - Weight::from_parts(27_795_461, 6399) - // Standard Error: 1_814 - .saturating_add(Weight::from_parts(3_760, 0).saturating_mul(i.into())) + // Minimum execution time: 27_279_000 picoseconds. + Weight::from_parts(28_228_070, 6399) + // Standard Error: 2_219 + .saturating_add(Weight::from_parts(5_670, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -93,10 +95,10 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `39` // Estimated: `6249` - // Minimum execution time: 21_550_000 picoseconds. - Weight::from_parts(22_217_831, 6249) - // Standard Error: 1_926 - .saturating_add(Weight::from_parts(47_853, 0).saturating_mul(i.into())) + // Minimum execution time: 21_675_000 picoseconds. + Weight::from_parts(22_281_583, 6249) + // Standard Error: 2_064 + .saturating_add(Weight::from_parts(61_444, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -106,6 +108,8 @@ impl WeightInfo for SubstrateWeight { impl WeightInfo for () { /// Storage: `ParachainSystem::ValidationData` (r:1 w:0) /// Proof: `ParachainSystem::ValidationData` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `ParachainSystem::LastRelayChainBlockNumber` (r:1 w:0) + /// Proof: `ParachainSystem::LastRelayChainBlockNumber` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// Storage: `TimeRelease::ReleaseSchedules` (r:1 w:1) /// Proof: `TimeRelease::ReleaseSchedules` (`max_values`: None, `max_size`: Some(1449), added: 3924, mode: `MaxEncodedLen`) /// Storage: `System::Account` (r:1 w:1) @@ -118,9 +122,9 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `113` // Estimated: `6399` - // Minimum execution time: 40_913_000 picoseconds. - Weight::from_parts(41_256_000, 6399) - .saturating_add(RocksDbWeight::get().reads(5_u64)) + // Minimum execution time: 41_567_000 picoseconds. + Weight::from_parts(42_025_000, 6399) + .saturating_add(RocksDbWeight::get().reads(6_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } /// Storage: `ParachainSystem::ValidationData` (r:1 w:0) @@ -136,10 +140,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `268` // Estimated: `6399` - // Minimum execution time: 26_883_000 picoseconds. - Weight::from_parts(27_795_461, 6399) - // Standard Error: 1_814 - .saturating_add(Weight::from_parts(3_760, 0).saturating_mul(i.into())) + // Minimum execution time: 27_279_000 picoseconds. + Weight::from_parts(28_228_070, 6399) + // Standard Error: 2_219 + .saturating_add(Weight::from_parts(5_670, 0).saturating_mul(i.into())) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(2_u64)) } @@ -156,10 +160,10 @@ impl WeightInfo for () { // Proof Size summary in bytes: // Measured: `39` // Estimated: `6249` - // Minimum execution time: 21_550_000 picoseconds. - Weight::from_parts(22_217_831, 6249) - // Standard Error: 1_926 - .saturating_add(Weight::from_parts(47_853, 0).saturating_mul(i.into())) + // Minimum execution time: 21_675_000 picoseconds. + Weight::from_parts(22_281_583, 6249) + // Standard Error: 2_064 + .saturating_add(Weight::from_parts(61_444, 0).saturating_mul(i.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } diff --git a/runtime/common/src/fee.rs b/runtime/common/src/fee.rs index 56f7725fd6..cd8db513f0 100644 --- a/runtime/common/src/fee.rs +++ b/runtime/common/src/fee.rs @@ -77,7 +77,7 @@ mod test { assert_eq!(p, 100_000); - assert!(q >= 65_000_000); + assert!(q >= 50_000_000); assert!(q <= 100_000_000); assert_eq!(p / q, Balance::from(0u128)); diff --git a/runtime/common/src/weights/block_weights.rs b/runtime/common/src/weights/block_weights.rs index 38d9ca5ad5..4633e7d00c 100644 --- a/runtime/common/src/weights/block_weights.rs +++ b/runtime/common/src/weights/block_weights.rs @@ -16,8 +16,8 @@ // limitations under the License. //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24 (Y/M/D) -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! DATE: 2024-06-27 (Y/M/D) +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! //! SHORT-NAME: `block`, LONG-NAME: `BlockExecution`, RUNTIME: `Frequency Development (No Relay)` //! WARMUPS: `10`, REPEAT: `100` @@ -43,17 +43,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 234_546, 284_724 - /// Average: 242_522 - /// Median: 240_185 - /// Std-Dev: 7808.24 + /// Min, Max: 223_331, 260_515 + /// Average: 227_786 + /// Median: 225_617 + /// Std-Dev: 5681.72 /// /// Percentiles nanoseconds: - /// 99th: 268_770 - /// 95th: 257_927 - /// 75th: 242_035 + /// 99th: 244_275 + /// 95th: 240_609 + /// 75th: 228_093 pub const BlockExecutionWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(242_522), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(227_786), 0); } #[cfg(test)] diff --git a/runtime/common/src/weights/extrinsic_weights.rs b/runtime/common/src/weights/extrinsic_weights.rs index 2b9f13d006..3caa55c96d 100644 --- a/runtime/common/src/weights/extrinsic_weights.rs +++ b/runtime/common/src/weights/extrinsic_weights.rs @@ -16,8 +16,8 @@ // limitations under the License. //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24 (Y/M/D) -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! DATE: 2024-06-27 (Y/M/D) +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! //! SHORT-NAME: `extrinsic`, LONG-NAME: `ExtrinsicBase`, RUNTIME: `Frequency Development (No Relay)` //! WARMUPS: `10`, REPEAT: `100` @@ -43,17 +43,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 75_099, 76_592 - /// Average: 75_623 - /// Median: 75_547 - /// Std-Dev: 354.14 + /// Min, Max: 59_133, 59_742 + /// Average: 59_307 + /// Median: 59_275 + /// Std-Dev: 100.19 /// /// Percentiles nanoseconds: - /// 99th: 76_479 - /// 95th: 76_278 - /// 75th: 75_866 + /// 99th: 59_575 + /// 95th: 59_464 + /// 75th: 59_371 pub const ExtrinsicBaseWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(75_623), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(59_307), 0); } #[cfg(test)] diff --git a/runtime/common/src/weights/pallet_balances.rs b/runtime/common/src/weights/pallet_balances.rs index 840fc4e91d..9c64778845 100644 --- a/runtime/common/src/weights/pallet_balances.rs +++ b/runtime/common/src/weights/pallet_balances.rs @@ -1,9 +1,9 @@ //! Autogenerated weights for pallet_balances //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("frequency-bench"), DB CACHE: 1024 // Executed Command: @@ -39,8 +39,8 @@ impl pallet_balances::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `0` // Estimated: `5078` - // Minimum execution time: 43_538_000 picoseconds. - Weight::from_parts(44_196_000, 5078) + // Minimum execution time: 43_182_000 picoseconds. + Weight::from_parts(43_728_000, 5078) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -50,8 +50,8 @@ impl pallet_balances::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `0` // Estimated: `5078` - // Minimum execution time: 33_969_000 picoseconds. - Weight::from_parts(34_654_000, 5078) + // Minimum execution time: 34_129_000 picoseconds. + Weight::from_parts(34_489_000, 5078) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -61,8 +61,8 @@ impl pallet_balances::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `207` // Estimated: `5078` - // Minimum execution time: 12_507_000 picoseconds. - Weight::from_parts(12_962_000, 5078) + // Minimum execution time: 12_707_000 picoseconds. + Weight::from_parts(13_073_000, 5078) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -72,8 +72,8 @@ impl pallet_balances::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `207` // Estimated: `5078` - // Minimum execution time: 17_464_000 picoseconds. - Weight::from_parts(18_084_000, 5078) + // Minimum execution time: 17_804_000 picoseconds. + Weight::from_parts(18_434_000, 5078) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -83,8 +83,8 @@ impl pallet_balances::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `103` // Estimated: `7681` - // Minimum execution time: 44_817_000 picoseconds. - Weight::from_parts(45_716_000, 7681) + // Minimum execution time: 44_206_000 picoseconds. + Weight::from_parts(45_143_000, 7681) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -94,8 +94,8 @@ impl pallet_balances::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `0` // Estimated: `5078` - // Minimum execution time: 43_471_000 picoseconds. - Weight::from_parts(43_924_000, 5078) + // Minimum execution time: 42_975_000 picoseconds. + Weight::from_parts(43_578_000, 5078) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -105,8 +105,8 @@ impl pallet_balances::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `207` // Estimated: `5078` - // Minimum execution time: 15_705_000 picoseconds. - Weight::from_parts(16_150_000, 5078) + // Minimum execution time: 15_628_000 picoseconds. + Weight::from_parts(16_027_000, 5078) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -117,10 +117,10 @@ impl pallet_balances::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `0 + u * (136 ±0)` // Estimated: `2475 + u * (2603 ±0)` - // Minimum execution time: 15_282_000 picoseconds. - Weight::from_parts(15_448_000, 2475) - // Standard Error: 11_643 - .saturating_add(Weight::from_parts(13_189_279, 0).saturating_mul(u.into())) + // Minimum execution time: 15_107_000 picoseconds. + Weight::from_parts(15_253_000, 2475) + // Standard Error: 12_572 + .saturating_add(Weight::from_parts(13_066_777, 0).saturating_mul(u.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(u.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(u.into()))) .saturating_add(Weight::from_parts(0, 2603).saturating_mul(u.into())) diff --git a/runtime/common/src/weights/pallet_collator_selection.rs b/runtime/common/src/weights/pallet_collator_selection.rs index cb1e631439..411c4581e3 100644 --- a/runtime/common/src/weights/pallet_collator_selection.rs +++ b/runtime/common/src/weights/pallet_collator_selection.rs @@ -1,9 +1,9 @@ //! Autogenerated weights for pallet_collator_selection //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("frequency-bench"), DB CACHE: 1024 // Executed Command: @@ -42,10 +42,10 @@ impl pallet_collator_selection::WeightInfo for Substrat // Proof Size summary in bytes: // Measured: `334 + b * (79 ±0)` // Estimated: `2809 + b * (2554 ±0)` - // Minimum execution time: 10_762_000 picoseconds. - Weight::from_parts(9_450_762, 2809) - // Standard Error: 10_056 - .saturating_add(Weight::from_parts(3_089_976, 0).saturating_mul(b.into())) + // Minimum execution time: 10_577_000 picoseconds. + Weight::from_parts(9_308_220, 2809) + // Standard Error: 9_848 + .saturating_add(Weight::from_parts(3_123_305, 0).saturating_mul(b.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().writes(1_u64)) .saturating_add(Weight::from_parts(0, 2554).saturating_mul(b.into())) @@ -64,12 +64,12 @@ impl pallet_collator_selection::WeightInfo for Substrat // Proof Size summary in bytes: // Measured: `1120 + b * (32 ±0) + c * (51 ±0)` // Estimated: `6015 + b * (29 ±0) + c * (53 ±0)` - // Minimum execution time: 40_995_000 picoseconds. - Weight::from_parts(41_431_024, 6015) - // Standard Error: 4_936 - .saturating_add(Weight::from_parts(52_288, 0).saturating_mul(b.into())) - // Standard Error: 1_463 - .saturating_add(Weight::from_parts(182_212, 0).saturating_mul(c.into())) + // Minimum execution time: 40_480_000 picoseconds. + Weight::from_parts(41_447_239, 6015) + // Standard Error: 4_462 + .saturating_add(Weight::from_parts(8_847, 0).saturating_mul(b.into())) + // Standard Error: 1_323 + .saturating_add(Weight::from_parts(173_354, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(Weight::from_parts(0, 29).saturating_mul(b.into())) @@ -84,10 +84,10 @@ impl pallet_collator_selection::WeightInfo for Substrat // Proof Size summary in bytes: // Measured: `153 + b * (32 ±0)` // Estimated: `5371` - // Minimum execution time: 10_062_000 picoseconds. - Weight::from_parts(10_208_490, 5371) - // Standard Error: 2_373 - .saturating_add(Weight::from_parts(185_847, 0).saturating_mul(b.into())) + // Minimum execution time: 9_849_000 picoseconds. + Weight::from_parts(9_986_474, 5371) + // Standard Error: 2_194 + .saturating_add(Weight::from_parts(183_804, 0).saturating_mul(b.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -97,8 +97,8 @@ impl pallet_collator_selection::WeightInfo for Substrat // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_048_000 picoseconds. - Weight::from_parts(4_238_000, 0) + // Minimum execution time: 3_846_000 picoseconds. + Weight::from_parts(4_081_000, 0) .saturating_add(T::DbWeight::get().writes(1_u64)) } /// Storage: `CollatorSelection::CandidacyBond` (r:1 w:1) @@ -115,12 +115,12 @@ impl pallet_collator_selection::WeightInfo for Substrat // Proof Size summary in bytes: // Measured: `0 + c * (188 ±0) + k * (130 ±0)` // Estimated: `5371 + c * (894 ±29) + k * (894 ±29)` - // Minimum execution time: 8_696_000 picoseconds. - Weight::from_parts(8_757_000, 5371) - // Standard Error: 149_351 - .saturating_add(Weight::from_parts(5_213_576, 0).saturating_mul(c.into())) - // Standard Error: 149_351 - .saturating_add(Weight::from_parts(4_910_056, 0).saturating_mul(k.into())) + // Minimum execution time: 8_450_000 picoseconds. + Weight::from_parts(8_563_000, 5371) + // Standard Error: 148_696 + .saturating_add(Weight::from_parts(5_156_227, 0).saturating_mul(c.into())) + // Standard Error: 148_696 + .saturating_add(Weight::from_parts(4_862_139, 0).saturating_mul(k.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) @@ -137,10 +137,10 @@ impl pallet_collator_selection::WeightInfo for Substrat // Proof Size summary in bytes: // Measured: `372 + c * (49 ±0)` // Estimated: `5371` - // Minimum execution time: 21_356_000 picoseconds. - Weight::from_parts(24_219_238, 5371) - // Standard Error: 2_538 - .saturating_add(Weight::from_parts(193_558, 0).saturating_mul(c.into())) + // Minimum execution time: 21_595_000 picoseconds. + Weight::from_parts(24_006_352, 5371) + // Standard Error: 2_409 + .saturating_add(Weight::from_parts(200_586, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -159,10 +159,10 @@ impl pallet_collator_selection::WeightInfo for Substrat // Proof Size summary in bytes: // Measured: `810 + c * (57 ±0)` // Estimated: `5764 + c * (57 ±0)` - // Minimum execution time: 33_292_000 picoseconds. - Weight::from_parts(35_999_289, 5764) - // Standard Error: 3_183 - .saturating_add(Weight::from_parts(257_629, 0).saturating_mul(c.into())) + // Minimum execution time: 33_021_000 picoseconds. + Weight::from_parts(35_584_346, 5764) + // Standard Error: 3_379 + .saturating_add(Weight::from_parts(262_271, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) .saturating_add(Weight::from_parts(0, 57).saturating_mul(c.into())) @@ -184,10 +184,10 @@ impl pallet_collator_selection::WeightInfo for Substrat // Proof Size summary in bytes: // Measured: `901 + c * (58 ±0)` // Estimated: `5856 + c * (59 ±0)` - // Minimum execution time: 47_974_000 picoseconds. - Weight::from_parts(50_950_241, 5856) - // Standard Error: 3_544 - .saturating_add(Weight::from_parts(281_835, 0).saturating_mul(c.into())) + // Minimum execution time: 46_877_000 picoseconds. + Weight::from_parts(50_275_640, 5856) + // Standard Error: 4_101 + .saturating_add(Weight::from_parts(287_657, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(5_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) .saturating_add(Weight::from_parts(0, 59).saturating_mul(c.into())) @@ -203,10 +203,10 @@ impl pallet_collator_selection::WeightInfo for Substrat // Proof Size summary in bytes: // Measured: `501 + c * (48 ±0)` // Estimated: `5371` - // Minimum execution time: 25_748_000 picoseconds. - Weight::from_parts(28_343_878, 5371) - // Standard Error: 2_628 - .saturating_add(Weight::from_parts(230_873, 0).saturating_mul(c.into())) + // Minimum execution time: 25_576_000 picoseconds. + Weight::from_parts(28_157_308, 5371) + // Standard Error: 2_987 + .saturating_add(Weight::from_parts(234_084, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -218,8 +218,8 @@ impl pallet_collator_selection::WeightInfo for Substrat // Proof Size summary in bytes: // Measured: `212` // Estimated: `7681` - // Minimum execution time: 37_855_000 picoseconds. - Weight::from_parts(38_645_000, 7681) + // Minimum execution time: 37_905_000 picoseconds. + Weight::from_parts(38_468_000, 7681) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -239,10 +239,10 @@ impl pallet_collator_selection::WeightInfo for Substrat // Proof Size summary in bytes: // Measured: `1188 + c * (98 ±0) + r * (128 ±0)` // Estimated: `5371 + c * (2519 ±0) + r * (2603 ±0)` - // Minimum execution time: 17_533_000 picoseconds. - Weight::from_parts(17_932_000, 5371) - // Standard Error: 270_981 - .saturating_add(Weight::from_parts(12_084_672, 0).saturating_mul(c.into())) + // Minimum execution time: 17_649_000 picoseconds. + Weight::from_parts(17_918_000, 5371) + // Standard Error: 268_572 + .saturating_add(Weight::from_parts(11_983_343, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) diff --git a/runtime/common/src/weights/pallet_collective_council.rs b/runtime/common/src/weights/pallet_collective_council.rs index 6d8dc2712d..07102eb94b 100644 --- a/runtime/common/src/weights/pallet_collective_council.rs +++ b/runtime/common/src/weights/pallet_collective_council.rs @@ -1,9 +1,9 @@ //! Autogenerated weights for pallet_collective //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("frequency-bench"), DB CACHE: 1024 // Executed Command: @@ -51,12 +51,12 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `0 + m * (832 ±0) + p * (310 ±0)` // Estimated: `5779 + m * (489 ±3) + p * (2615 ±1)` - // Minimum execution time: 7_266_000 picoseconds. - Weight::from_parts(7_562_000, 5779) - // Standard Error: 63_744 - .saturating_add(Weight::from_parts(2_924_409, 0).saturating_mul(m.into())) - // Standard Error: 25_903 - .saturating_add(Weight::from_parts(3_421_617, 0).saturating_mul(p.into())) + // Minimum execution time: 7_068_000 picoseconds. + Weight::from_parts(7_477_000, 5779) + // Standard Error: 61_453 + .saturating_add(Weight::from_parts(2_894_083, 0).saturating_mul(m.into())) + // Standard Error: 24_972 + .saturating_add(Weight::from_parts(3_315_480, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(2_u64)) @@ -74,12 +74,12 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `70 + m * (32 ±0)` // Estimated: `3039 + m * (32 ±0)` - // Minimum execution time: 11_020_000 picoseconds. - Weight::from_parts(11_316_136, 3039) - // Standard Error: 13 - .saturating_add(Weight::from_parts(1_564, 0).saturating_mul(b.into())) - // Standard Error: 1_401 - .saturating_add(Weight::from_parts(20_397, 0).saturating_mul(m.into())) + // Minimum execution time: 10_727_000 picoseconds. + Weight::from_parts(11_158_682, 3039) + // Standard Error: 12 + .saturating_add(Weight::from_parts(1_442, 0).saturating_mul(b.into())) + // Standard Error: 1_359 + .saturating_add(Weight::from_parts(21_568, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -95,12 +95,12 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `70 + m * (32 ±0)` // Estimated: `5019 + m * (32 ±0)` - // Minimum execution time: 13_531_000 picoseconds. - Weight::from_parts(13_663_992, 5019) - // Standard Error: 15 - .saturating_add(Weight::from_parts(1_554, 0).saturating_mul(b.into())) - // Standard Error: 1_665 - .saturating_add(Weight::from_parts(31_287, 0).saturating_mul(m.into())) + // Minimum execution time: 13_226_000 picoseconds. + Weight::from_parts(13_412_197, 5019) + // Standard Error: 16 + .saturating_add(Weight::from_parts(1_563, 0).saturating_mul(b.into())) + // Standard Error: 1_745 + .saturating_add(Weight::from_parts(40_620, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -124,14 +124,14 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `113 + m * (32 ±0) + p * (51 ±0)` // Estimated: `5015 + m * (42 ±0) + p * (49 ±0)` - // Minimum execution time: 18_356_000 picoseconds. - Weight::from_parts(17_064_300, 5015) - // Standard Error: 44 - .saturating_add(Weight::from_parts(2_318, 0).saturating_mul(b.into())) - // Standard Error: 5_271 - .saturating_add(Weight::from_parts(159_078, 0).saturating_mul(m.into())) - // Standard Error: 1_839 - .saturating_add(Weight::from_parts(264_871, 0).saturating_mul(p.into())) + // Minimum execution time: 17_965_000 picoseconds. + Weight::from_parts(16_689_505, 5015) + // Standard Error: 45 + .saturating_add(Weight::from_parts(2_303, 0).saturating_mul(b.into())) + // Standard Error: 5_393 + .saturating_add(Weight::from_parts(160_016, 0).saturating_mul(m.into())) + // Standard Error: 1_882 + .saturating_add(Weight::from_parts(268_850, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) .saturating_add(Weight::from_parts(0, 42).saturating_mul(m.into())) @@ -147,10 +147,10 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `571 + m * (64 ±0)` // Estimated: `5521 + m * (64 ±0)` - // Minimum execution time: 16_409_000 picoseconds. - Weight::from_parts(17_185_809, 5521) - // Standard Error: 4_876 - .saturating_add(Weight::from_parts(62_648, 0).saturating_mul(m.into())) + // Minimum execution time: 15_975_000 picoseconds. + Weight::from_parts(16_753_237, 5521) + // Standard Error: 4_592 + .saturating_add(Weight::from_parts(82_847, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -171,12 +171,12 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `41 + m * (64 ±0) + p * (54 ±0)` // Estimated: `5009 + m * (80 ±0) + p * (50 ±0)` - // Minimum execution time: 18_815_000 picoseconds. - Weight::from_parts(18_559_675, 5009) - // Standard Error: 5_602 - .saturating_add(Weight::from_parts(168_930, 0).saturating_mul(m.into())) - // Standard Error: 1_494 - .saturating_add(Weight::from_parts(232_593, 0).saturating_mul(p.into())) + // Minimum execution time: 18_480_000 picoseconds. + Weight::from_parts(18_295_777, 5009) + // Standard Error: 5_482 + .saturating_add(Weight::from_parts(168_219, 0).saturating_mul(m.into())) + // Standard Error: 1_462 + .saturating_add(Weight::from_parts(242_232, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(Weight::from_parts(0, 80).saturating_mul(m.into())) @@ -200,14 +200,14 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `72 + b * (1 ±0) + m * (64 ±0) + p * (72 ±0)` // Estimated: `5015 + b * (1 ±0) + m * (85 ±0) + p * (65 ±0)` - // Minimum execution time: 28_024_000 picoseconds. - Weight::from_parts(28_038_947, 5015) - // Standard Error: 64 - .saturating_add(Weight::from_parts(2_067, 0).saturating_mul(b.into())) - // Standard Error: 9_894 - .saturating_add(Weight::from_parts(127_802, 0).saturating_mul(m.into())) - // Standard Error: 2_647 - .saturating_add(Weight::from_parts(403_732, 0).saturating_mul(p.into())) + // Minimum execution time: 27_346_000 picoseconds. + Weight::from_parts(27_535_978, 5015) + // Standard Error: 63 + .saturating_add(Weight::from_parts(1_842, 0).saturating_mul(b.into())) + // Standard Error: 9_736 + .saturating_add(Weight::from_parts(136_736, 0).saturating_mul(m.into())) + // Standard Error: 2_605 + .saturating_add(Weight::from_parts(404_391, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -232,12 +232,12 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `61 + m * (64 ±0) + p * (54 ±0)` // Estimated: `5029 + m * (80 ±0) + p * (50 ±0)` - // Minimum execution time: 20_206_000 picoseconds. - Weight::from_parts(20_229_151, 5029) - // Standard Error: 5_435 - .saturating_add(Weight::from_parts(162_321, 0).saturating_mul(m.into())) - // Standard Error: 1_450 - .saturating_add(Weight::from_parts(238_515, 0).saturating_mul(p.into())) + // Minimum execution time: 20_333_000 picoseconds. + Weight::from_parts(20_019_377, 5029) + // Standard Error: 5_835 + .saturating_add(Weight::from_parts(174_979, 0).saturating_mul(m.into())) + // Standard Error: 1_556 + .saturating_add(Weight::from_parts(238_487, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(Weight::from_parts(0, 80).saturating_mul(m.into())) @@ -263,14 +263,14 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `92 + b * (1 ±0) + m * (64 ±0) + p * (72 ±0)` // Estimated: `5035 + b * (1 ±0) + m * (85 ±0) + p * (65 ±0)` - // Minimum execution time: 29_928_000 picoseconds. - Weight::from_parts(30_375_891, 5035) - // Standard Error: 63 - .saturating_add(Weight::from_parts(2_228, 0).saturating_mul(b.into())) - // Standard Error: 9_782 - .saturating_add(Weight::from_parts(56_424, 0).saturating_mul(m.into())) - // Standard Error: 2_617 - .saturating_add(Weight::from_parts(424_602, 0).saturating_mul(p.into())) + // Minimum execution time: 29_261_000 picoseconds. + Weight::from_parts(29_850_977, 5035) + // Standard Error: 64 + .saturating_add(Weight::from_parts(2_161, 0).saturating_mul(b.into())) + // Standard Error: 9_882 + .saturating_add(Weight::from_parts(67_596, 0).saturating_mul(m.into())) + // Standard Error: 2_643 + .saturating_add(Weight::from_parts(426_998, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(5_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -289,10 +289,10 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `226 + p * (32 ±0)` // Estimated: `3196 + p * (32 ±0)` - // Minimum execution time: 11_536_000 picoseconds. - Weight::from_parts(12_252_816, 3196) - // Standard Error: 958 - .saturating_add(Weight::from_parts(190_843, 0).saturating_mul(p.into())) + // Minimum execution time: 11_531_000 picoseconds. + Weight::from_parts(12_110_508, 3196) + // Standard Error: 946 + .saturating_add(Weight::from_parts(197_815, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(p.into())) diff --git a/runtime/common/src/weights/pallet_collective_technical_committee.rs b/runtime/common/src/weights/pallet_collective_technical_committee.rs index 301038e1ff..6f3d57fc5f 100644 --- a/runtime/common/src/weights/pallet_collective_technical_committee.rs +++ b/runtime/common/src/weights/pallet_collective_technical_committee.rs @@ -1,9 +1,9 @@ //! Autogenerated weights for pallet_collective //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("frequency-bench"), DB CACHE: 1024 // Executed Command: @@ -51,12 +51,12 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `0 + m * (832 ±0) + p * (310 ±0)` // Estimated: `5846 + m * (489 ±3) + p * (2615 ±1)` - // Minimum execution time: 7_295_000 picoseconds. - Weight::from_parts(7_624_000, 5846) - // Standard Error: 63_383 - .saturating_add(Weight::from_parts(2_978_028, 0).saturating_mul(m.into())) - // Standard Error: 25_756 - .saturating_add(Weight::from_parts(3_417_797, 0).saturating_mul(p.into())) + // Minimum execution time: 7_171_000 picoseconds. + Weight::from_parts(7_473_000, 5846) + // Standard Error: 61_416 + .saturating_add(Weight::from_parts(2_922_546, 0).saturating_mul(m.into())) + // Standard Error: 24_957 + .saturating_add(Weight::from_parts(3_320_205, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(2_u64)) @@ -74,12 +74,12 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `137 + m * (32 ±0)` // Estimated: `3106 + m * (32 ±0)` - // Minimum execution time: 11_136_000 picoseconds. - Weight::from_parts(11_331_684, 3106) + // Minimum execution time: 10_999_000 picoseconds. + Weight::from_parts(11_206_919, 3106) // Standard Error: 9 - .saturating_add(Weight::from_parts(1_524, 0).saturating_mul(b.into())) - // Standard Error: 1_040 - .saturating_add(Weight::from_parts(17_189, 0).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_533, 0).saturating_mul(b.into())) + // Standard Error: 1_001 + .saturating_add(Weight::from_parts(19_545, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -95,12 +95,12 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `137 + m * (32 ±0)` // Estimated: `5086 + m * (32 ±0)` - // Minimum execution time: 13_361_000 picoseconds. - Weight::from_parts(13_501_638, 5086) - // Standard Error: 12 - .saturating_add(Weight::from_parts(1_586, 0).saturating_mul(b.into())) - // Standard Error: 1_300 - .saturating_add(Weight::from_parts(33_266, 0).saturating_mul(m.into())) + // Minimum execution time: 13_358_000 picoseconds. + Weight::from_parts(13_468_104, 5086) + // Standard Error: 11 + .saturating_add(Weight::from_parts(1_520, 0).saturating_mul(b.into())) + // Standard Error: 1_199 + .saturating_add(Weight::from_parts(35_264, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -124,14 +124,14 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `180 + m * (32 ±0) + p * (51 ±0)` // Estimated: `5082 + m * (42 ±0) + p * (49 ±0)` - // Minimum execution time: 18_455_000 picoseconds. - Weight::from_parts(17_466_592, 5082) - // Standard Error: 43 - .saturating_add(Weight::from_parts(2_235, 0).saturating_mul(b.into())) - // Standard Error: 5_188 - .saturating_add(Weight::from_parts(140_352, 0).saturating_mul(m.into())) - // Standard Error: 1_810 - .saturating_add(Weight::from_parts(254_550, 0).saturating_mul(p.into())) + // Minimum execution time: 17_889_000 picoseconds. + Weight::from_parts(16_987_456, 5082) + // Standard Error: 44 + .saturating_add(Weight::from_parts(2_279, 0).saturating_mul(b.into())) + // Standard Error: 5_226 + .saturating_add(Weight::from_parts(151_241, 0).saturating_mul(m.into())) + // Standard Error: 1_823 + .saturating_add(Weight::from_parts(262_644, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) .saturating_add(Weight::from_parts(0, 42).saturating_mul(m.into())) @@ -147,10 +147,10 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `638 + m * (64 ±0)` // Estimated: `5588 + m * (64 ±0)` - // Minimum execution time: 16_400_000 picoseconds. - Weight::from_parts(17_246_599, 5588) - // Standard Error: 3_988 - .saturating_add(Weight::from_parts(49_866, 0).saturating_mul(m.into())) + // Minimum execution time: 16_108_000 picoseconds. + Weight::from_parts(16_608_815, 5588) + // Standard Error: 3_799 + .saturating_add(Weight::from_parts(101_191, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -171,12 +171,12 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `108 + m * (64 ±0) + p * (54 ±0)` // Estimated: `5076 + m * (80 ±0) + p * (50 ±0)` - // Minimum execution time: 19_106_000 picoseconds. - Weight::from_parts(18_997_832, 5076) - // Standard Error: 5_242 - .saturating_add(Weight::from_parts(143_270, 0).saturating_mul(m.into())) - // Standard Error: 1_398 - .saturating_add(Weight::from_parts(218_271, 0).saturating_mul(p.into())) + // Minimum execution time: 18_816_000 picoseconds. + Weight::from_parts(18_590_487, 5076) + // Standard Error: 5_427 + .saturating_add(Weight::from_parts(161_492, 0).saturating_mul(m.into())) + // Standard Error: 1_447 + .saturating_add(Weight::from_parts(233_432, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(Weight::from_parts(0, 80).saturating_mul(m.into())) @@ -200,14 +200,14 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `139 + b * (1 ±0) + m * (64 ±0) + p * (72 ±0)` // Estimated: `5082 + b * (1 ±0) + m * (85 ±0) + p * (65 ±0)` - // Minimum execution time: 28_273_000 picoseconds. - Weight::from_parts(28_167_700, 5082) - // Standard Error: 62 - .saturating_add(Weight::from_parts(2_001, 0).saturating_mul(b.into())) - // Standard Error: 9_658 - .saturating_add(Weight::from_parts(135_304, 0).saturating_mul(m.into())) - // Standard Error: 2_583 - .saturating_add(Weight::from_parts(388_680, 0).saturating_mul(p.into())) + // Minimum execution time: 27_774_000 picoseconds. + Weight::from_parts(27_923_875, 5082) + // Standard Error: 60 + .saturating_add(Weight::from_parts(1_829, 0).saturating_mul(b.into())) + // Standard Error: 9_347 + .saturating_add(Weight::from_parts(134_038, 0).saturating_mul(m.into())) + // Standard Error: 2_500 + .saturating_add(Weight::from_parts(384_662, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -232,12 +232,12 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `128 + m * (64 ±0) + p * (54 ±0)` // Estimated: `5096 + m * (80 ±0) + p * (50 ±0)` - // Minimum execution time: 20_909_000 picoseconds. - Weight::from_parts(20_598_384, 5096) - // Standard Error: 5_166 - .saturating_add(Weight::from_parts(161_282, 0).saturating_mul(m.into())) - // Standard Error: 1_378 - .saturating_add(Weight::from_parts(228_965, 0).saturating_mul(p.into())) + // Minimum execution time: 20_632_000 picoseconds. + Weight::from_parts(20_174_892, 5096) + // Standard Error: 5_391 + .saturating_add(Weight::from_parts(172_000, 0).saturating_mul(m.into())) + // Standard Error: 1_438 + .saturating_add(Weight::from_parts(234_481, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(Weight::from_parts(0, 80).saturating_mul(m.into())) @@ -263,14 +263,14 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `159 + b * (1 ±0) + m * (64 ±0) + p * (72 ±0)` // Estimated: `5102 + b * (1 ±0) + m * (85 ±0) + p * (65 ±0)` - // Minimum execution time: 29_907_000 picoseconds. - Weight::from_parts(30_254_571, 5102) - // Standard Error: 59 - .saturating_add(Weight::from_parts(2_243, 0).saturating_mul(b.into())) - // Standard Error: 9_210 - .saturating_add(Weight::from_parts(76_446, 0).saturating_mul(m.into())) - // Standard Error: 2_464 - .saturating_add(Weight::from_parts(418_995, 0).saturating_mul(p.into())) + // Minimum execution time: 29_606_000 picoseconds. + Weight::from_parts(29_755_475, 5102) + // Standard Error: 60 + .saturating_add(Weight::from_parts(2_248, 0).saturating_mul(b.into())) + // Standard Error: 9_357 + .saturating_add(Weight::from_parts(80_153, 0).saturating_mul(m.into())) + // Standard Error: 2_503 + .saturating_add(Weight::from_parts(421_213, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(5_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -289,10 +289,10 @@ impl pallet_collective::WeightInfo for SubstrateWeight< // Proof Size summary in bytes: // Measured: `293 + p * (32 ±0)` // Estimated: `3263 + p * (32 ±0)` - // Minimum execution time: 11_722_000 picoseconds. - Weight::from_parts(12_309_043, 3263) - // Standard Error: 856 - .saturating_add(Weight::from_parts(186_197, 0).saturating_mul(p.into())) + // Minimum execution time: 11_345_000 picoseconds. + Weight::from_parts(12_168_487, 3263) + // Standard Error: 1_056 + .saturating_add(Weight::from_parts(195_135, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(p.into())) diff --git a/runtime/common/src/weights/pallet_democracy.rs b/runtime/common/src/weights/pallet_democracy.rs index 743ec9ac9b..2a48d7ba8f 100644 --- a/runtime/common/src/weights/pallet_democracy.rs +++ b/runtime/common/src/weights/pallet_democracy.rs @@ -1,9 +1,9 @@ //! Autogenerated weights for pallet_democracy //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("frequency-bench"), DB CACHE: 1024 // Executed Command: @@ -45,8 +45,8 @@ impl pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_democracy::WeightInfo for SubstrateWeight pallet_multisig::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 12_835_000 picoseconds. - Weight::from_parts(13_450_618, 0) - // Standard Error: 2 - .saturating_add(Weight::from_parts(527, 0).saturating_mul(z.into())) + // Minimum execution time: 12_608_000 picoseconds. + Weight::from_parts(13_451_730, 0) + // Standard Error: 3 + .saturating_add(Weight::from_parts(543, 0).saturating_mul(z.into())) } /// Storage: `Multisig::Multisigs` (r:1 w:1) /// Proof: `Multisig::Multisigs` (`max_values`: None, `max_size`: Some(3346), added: 5821, mode: `MaxEncodedLen`) @@ -51,12 +51,12 @@ impl pallet_multisig::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `192 + s * (2 ±0)` // Estimated: `8296` - // Minimum execution time: 37_868_000 picoseconds. - Weight::from_parts(27_234_628, 8296) - // Standard Error: 501 - .saturating_add(Weight::from_parts(121_092, 0).saturating_mul(s.into())) - // Standard Error: 4 - .saturating_add(Weight::from_parts(1_437, 0).saturating_mul(z.into())) + // Minimum execution time: 37_400_000 picoseconds. + Weight::from_parts(26_918_350, 8296) + // Standard Error: 1_097 + .saturating_add(Weight::from_parts(121_213, 0).saturating_mul(s.into())) + // Standard Error: 10 + .saturating_add(Weight::from_parts(1_475, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -68,12 +68,12 @@ impl pallet_multisig::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `211` // Estimated: `8296` - // Minimum execution time: 24_627_000 picoseconds. - Weight::from_parts(15_302_095, 8296) - // Standard Error: 372 - .saturating_add(Weight::from_parts(104_323, 0).saturating_mul(s.into())) + // Minimum execution time: 25_007_000 picoseconds. + Weight::from_parts(15_217_517, 8296) + // Standard Error: 391 + .saturating_add(Weight::from_parts(107_307, 0).saturating_mul(s.into())) // Standard Error: 3 - .saturating_add(Weight::from_parts(1_457, 0).saturating_mul(z.into())) + .saturating_add(Weight::from_parts(1_441, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -87,12 +87,12 @@ impl pallet_multisig::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `314 + s * (33 ±0)` // Estimated: `8296` - // Minimum execution time: 43_605_000 picoseconds. - Weight::from_parts(30_588_329, 8296) - // Standard Error: 707 - .saturating_add(Weight::from_parts(152_637, 0).saturating_mul(s.into())) + // Minimum execution time: 43_513_000 picoseconds. + Weight::from_parts(30_561_524, 8296) + // Standard Error: 622 + .saturating_add(Weight::from_parts(152_513, 0).saturating_mul(s.into())) // Standard Error: 6 - .saturating_add(Weight::from_parts(1_504, 0).saturating_mul(z.into())) + .saturating_add(Weight::from_parts(1_470, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -103,10 +103,10 @@ impl pallet_multisig::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `193 + s * (2 ±0)` // Estimated: `8296` - // Minimum execution time: 24_690_000 picoseconds. - Weight::from_parts(25_667_781, 8296) - // Standard Error: 673 - .saturating_add(Weight::from_parts(127_704, 0).saturating_mul(s.into())) + // Minimum execution time: 24_337_000 picoseconds. + Weight::from_parts(25_619_712, 8296) + // Standard Error: 690 + .saturating_add(Weight::from_parts(124_137, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -117,10 +117,10 @@ impl pallet_multisig::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `211` // Estimated: `8296` - // Minimum execution time: 13_790_000 picoseconds. - Weight::from_parts(14_014_065, 8296) - // Standard Error: 440 - .saturating_add(Weight::from_parts(109_604, 0).saturating_mul(s.into())) + // Minimum execution time: 13_600_000 picoseconds. + Weight::from_parts(14_140_496, 8296) + // Standard Error: 446 + .saturating_add(Weight::from_parts(108_639, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -131,10 +131,10 @@ impl pallet_multisig::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `383 + s * (1 ±0)` // Estimated: `8296` - // Minimum execution time: 25_842_000 picoseconds. - Weight::from_parts(27_046_074, 8296) - // Standard Error: 584 - .saturating_add(Weight::from_parts(123_934, 0).saturating_mul(s.into())) + // Minimum execution time: 26_003_000 picoseconds. + Weight::from_parts(26_983_020, 8296) + // Standard Error: 628 + .saturating_add(Weight::from_parts(119_752, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } diff --git a/runtime/common/src/weights/pallet_preimage.rs b/runtime/common/src/weights/pallet_preimage.rs index ffb30047b3..2cd62edcd0 100644 --- a/runtime/common/src/weights/pallet_preimage.rs +++ b/runtime/common/src/weights/pallet_preimage.rs @@ -1,9 +1,9 @@ //! Autogenerated weights for pallet_preimage //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("frequency-bench"), DB CACHE: 1024 // Executed Command: @@ -46,10 +46,10 @@ impl pallet_preimage::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `42` // Estimated: `5041` - // Minimum execution time: 42_725_000 picoseconds. - Weight::from_parts(43_432_000, 5041) - // Standard Error: 7 - .saturating_add(Weight::from_parts(2_411, 0).saturating_mul(s.into())) + // Minimum execution time: 43_115_000 picoseconds. + Weight::from_parts(43_643_000, 5041) + // Standard Error: 9 + .saturating_add(Weight::from_parts(2_425, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -64,10 +64,10 @@ impl pallet_preimage::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `106` // Estimated: `5041` - // Minimum execution time: 14_045_000 picoseconds. - Weight::from_parts(14_334_000, 5041) - // Standard Error: 6 - .saturating_add(Weight::from_parts(2_366, 0).saturating_mul(s.into())) + // Minimum execution time: 13_888_000 picoseconds. + Weight::from_parts(14_235_000, 5041) + // Standard Error: 10 + .saturating_add(Weight::from_parts(2_439, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -82,10 +82,10 @@ impl pallet_preimage::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `106` // Estimated: `5041` - // Minimum execution time: 13_704_000 picoseconds. - Weight::from_parts(13_882_000, 5041) - // Standard Error: 6 - .saturating_add(Weight::from_parts(2_357, 0).saturating_mul(s.into())) + // Minimum execution time: 13_371_000 picoseconds. + Weight::from_parts(13_452_000, 5041) + // Standard Error: 10 + .saturating_add(Weight::from_parts(2_424, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -101,8 +101,8 @@ impl pallet_preimage::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `243` // Estimated: `5041` - // Minimum execution time: 52_099_000 picoseconds. - Weight::from_parts(57_221_000, 5041) + // Minimum execution time: 47_571_000 picoseconds. + Weight::from_parts(52_701_000, 5041) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -116,8 +116,8 @@ impl pallet_preimage::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `144` // Estimated: `5041` - // Minimum execution time: 31_253_000 picoseconds. - Weight::from_parts(34_052_000, 5041) + // Minimum execution time: 20_708_000 picoseconds. + Weight::from_parts(23_539_000, 5041) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -129,8 +129,8 @@ impl pallet_preimage::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `188` // Estimated: `5041` - // Minimum execution time: 25_632_000 picoseconds. - Weight::from_parts(28_873_000, 5041) + // Minimum execution time: 18_054_000 picoseconds. + Weight::from_parts(21_326_000, 5041) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -142,8 +142,8 @@ impl pallet_preimage::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `144` // Estimated: `5041` - // Minimum execution time: 19_313_000 picoseconds. - Weight::from_parts(22_056_000, 5041) + // Minimum execution time: 13_180_000 picoseconds. + Weight::from_parts(14_724_000, 5041) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -155,8 +155,8 @@ impl pallet_preimage::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `42` // Estimated: `5041` - // Minimum execution time: 15_491_000 picoseconds. - Weight::from_parts(17_430_000, 5041) + // Minimum execution time: 14_564_000 picoseconds. + Weight::from_parts(15_206_000, 5041) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -168,8 +168,8 @@ impl pallet_preimage::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `106` // Estimated: `5041` - // Minimum execution time: 10_146_000 picoseconds. - Weight::from_parts(10_625_000, 5041) + // Minimum execution time: 9_652_000 picoseconds. + Weight::from_parts(10_070_000, 5041) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -183,8 +183,8 @@ impl pallet_preimage::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `144` // Estimated: `5041` - // Minimum execution time: 24_194_000 picoseconds. - Weight::from_parts(30_289_000, 5041) + // Minimum execution time: 18_961_000 picoseconds. + Weight::from_parts(22_509_000, 5041) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -196,8 +196,8 @@ impl pallet_preimage::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `106` // Estimated: `5041` - // Minimum execution time: 10_072_000 picoseconds. - Weight::from_parts(11_589_000, 5041) + // Minimum execution time: 9_675_000 picoseconds. + Weight::from_parts(9_926_000, 5041) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -209,8 +209,8 @@ impl pallet_preimage::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `106` // Estimated: `5041` - // Minimum execution time: 9_785_000 picoseconds. - Weight::from_parts(10_478_000, 5041) + // Minimum execution time: 9_418_000 picoseconds. + Weight::from_parts(9_765_000, 5041) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -227,10 +227,10 @@ impl pallet_preimage::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `233 + n * (227 ±0)` // Estimated: `2475 + n * (2603 ±0)` - // Minimum execution time: 48_144_000 picoseconds. - Weight::from_parts(48_447_000, 2475) - // Standard Error: 48_374 - .saturating_add(Weight::from_parts(49_037_068, 0).saturating_mul(n.into())) + // Minimum execution time: 48_842_000 picoseconds. + Weight::from_parts(49_333_000, 2475) + // Standard Error: 33_702 + .saturating_add(Weight::from_parts(49_308_222, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(n.into()))) .saturating_add(Weight::from_parts(0, 2603).saturating_mul(n.into())) diff --git a/runtime/common/src/weights/pallet_proxy.rs b/runtime/common/src/weights/pallet_proxy.rs index 481ad647a4..4985ffd34a 100644 --- a/runtime/common/src/weights/pallet_proxy.rs +++ b/runtime/common/src/weights/pallet_proxy.rs @@ -1,9 +1,9 @@ //! Autogenerated weights for pallet_proxy //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("frequency-bench"), DB CACHE: 1024 // Executed Command: @@ -40,10 +40,10 @@ impl pallet_proxy::WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `161 + p * (37 ±0)` // Estimated: `6191` - // Minimum execution time: 12_385_000 picoseconds. - Weight::from_parts(12_894_535, 6191) - // Standard Error: 885 - .saturating_add(Weight::from_parts(41_687, 0).saturating_mul(p.into())) + // Minimum execution time: 12_034_000 picoseconds. + Weight::from_parts(12_526_917, 6191) + // Standard Error: 959 + .saturating_add(Weight::from_parts(49_465, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) } /// Storage: `Proxy::Proxies` (r:1 w:0) @@ -58,12 +58,12 @@ impl pallet_proxy::WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `524 + a * (68 ±0) + p * (37 ±0)` // Estimated: `7183` - // Minimum execution time: 34_456_000 picoseconds. - Weight::from_parts(32_760_718, 7183) - // Standard Error: 4_397 - .saturating_add(Weight::from_parts(126_719, 0).saturating_mul(a.into())) - // Standard Error: 4_543 - .saturating_add(Weight::from_parts(114_300, 0).saturating_mul(p.into())) + // Minimum execution time: 34_324_000 picoseconds. + Weight::from_parts(32_563_869, 7183) + // Standard Error: 4_442 + .saturating_add(Weight::from_parts(126_461, 0).saturating_mul(a.into())) + // Standard Error: 4_590 + .saturating_add(Weight::from_parts(108_433, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -77,12 +77,12 @@ impl pallet_proxy::WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `441 + a * (68 ±0)` // Estimated: `7183` - // Minimum execution time: 21_692_000 picoseconds. - Weight::from_parts(21_801_709, 7183) - // Standard Error: 1_673 - .saturating_add(Weight::from_parts(126_617, 0).saturating_mul(a.into())) - // Standard Error: 1_729 - .saturating_add(Weight::from_parts(33_919, 0).saturating_mul(p.into())) + // Minimum execution time: 21_671_000 picoseconds. + Weight::from_parts(21_569_464, 7183) + // Standard Error: 1_561 + .saturating_add(Weight::from_parts(139_081, 0).saturating_mul(a.into())) + // Standard Error: 1_613 + .saturating_add(Weight::from_parts(32_802, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -96,12 +96,12 @@ impl pallet_proxy::WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `441 + a * (68 ±0)` // Estimated: `7183` - // Minimum execution time: 21_811_000 picoseconds. - Weight::from_parts(21_669_725, 7183) - // Standard Error: 1_634 - .saturating_add(Weight::from_parts(126_337, 0).saturating_mul(a.into())) - // Standard Error: 1_689 - .saturating_add(Weight::from_parts(33_876, 0).saturating_mul(p.into())) + // Minimum execution time: 21_639_000 picoseconds. + Weight::from_parts(21_932_563, 7183) + // Standard Error: 1_603 + .saturating_add(Weight::from_parts(136_404, 0).saturating_mul(a.into())) + // Standard Error: 1_657 + .saturating_add(Weight::from_parts(23_803, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -117,12 +117,12 @@ impl pallet_proxy::WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `456 + a * (68 ±0) + p * (37 ±0)` // Estimated: `7183` - // Minimum execution time: 28_788_000 picoseconds. - Weight::from_parts(29_041_865, 7183) - // Standard Error: 4_613 - .saturating_add(Weight::from_parts(132_670, 0).saturating_mul(a.into())) - // Standard Error: 4_766 - .saturating_add(Weight::from_parts(100_301, 0).saturating_mul(p.into())) + // Minimum execution time: 28_538_000 picoseconds. + Weight::from_parts(28_786_651, 7183) + // Standard Error: 4_255 + .saturating_add(Weight::from_parts(139_436, 0).saturating_mul(a.into())) + // Standard Error: 4_396 + .saturating_add(Weight::from_parts(98_450, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -133,10 +133,10 @@ impl pallet_proxy::WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `161 + p * (37 ±0)` // Estimated: `6191` - // Minimum execution time: 19_595_000 picoseconds. - Weight::from_parts(20_430_741, 6191) - // Standard Error: 1_335 - .saturating_add(Weight::from_parts(36_772, 0).saturating_mul(p.into())) + // Minimum execution time: 19_593_000 picoseconds. + Weight::from_parts(20_274_855, 6191) + // Standard Error: 1_044 + .saturating_add(Weight::from_parts(41_306, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -147,10 +147,10 @@ impl pallet_proxy::WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `161 + p * (37 ±0)` // Estimated: `6191` - // Minimum execution time: 19_636_000 picoseconds. - Weight::from_parts(20_577_277, 6191) - // Standard Error: 1_581 - .saturating_add(Weight::from_parts(37_675, 0).saturating_mul(p.into())) + // Minimum execution time: 19_867_000 picoseconds. + Weight::from_parts(20_694_630, 6191) + // Standard Error: 1_389 + .saturating_add(Weight::from_parts(39_880, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -161,10 +161,10 @@ impl pallet_proxy::WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `161 + p * (37 ±0)` // Estimated: `6191` - // Minimum execution time: 19_069_000 picoseconds. - Weight::from_parts(19_870_847, 6191) - // Standard Error: 1_047 - .saturating_add(Weight::from_parts(37_386, 0).saturating_mul(p.into())) + // Minimum execution time: 19_048_000 picoseconds. + Weight::from_parts(20_001_379, 6191) + // Standard Error: 1_228 + .saturating_add(Weight::from_parts(33_426, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -175,10 +175,10 @@ impl pallet_proxy::WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `173` // Estimated: `6191` - // Minimum execution time: 21_101_000 picoseconds. - Weight::from_parts(21_841_679, 6191) - // Standard Error: 967 - .saturating_add(Weight::from_parts(14_678, 0).saturating_mul(p.into())) + // Minimum execution time: 20_972_000 picoseconds. + Weight::from_parts(21_862_656, 6191) + // Standard Error: 965 + .saturating_add(Weight::from_parts(13_712, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -189,10 +189,10 @@ impl pallet_proxy::WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `198 + p * (37 ±0)` // Estimated: `6191` - // Minimum execution time: 20_123_000 picoseconds. - Weight::from_parts(20_766_133, 6191) - // Standard Error: 1_190 - .saturating_add(Weight::from_parts(43_671, 0).saturating_mul(p.into())) + // Minimum execution time: 19_793_000 picoseconds. + Weight::from_parts(20_646_249, 6191) + // Standard Error: 1_143 + .saturating_add(Weight::from_parts(34_826, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } diff --git a/runtime/common/src/weights/pallet_scheduler.rs b/runtime/common/src/weights/pallet_scheduler.rs index 8910b4eb25..b97a52b04e 100644 --- a/runtime/common/src/weights/pallet_scheduler.rs +++ b/runtime/common/src/weights/pallet_scheduler.rs @@ -1,9 +1,9 @@ //! Autogenerated weights for pallet_scheduler //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("frequency-bench"), DB CACHE: 1024 // Executed Command: @@ -39,8 +39,8 @@ impl pallet_scheduler::WeightInfo for SubstrateWeight pallet_scheduler::WeightInfo for SubstrateWeight pallet_scheduler::WeightInfo for SubstrateWeight pallet_scheduler::WeightInfo for SubstrateWeight pallet_scheduler::WeightInfo for SubstrateWeight Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_576_000 picoseconds. - Weight::from_parts(2_866_000, 0) + // Minimum execution time: 2_617_000 picoseconds. + Weight::from_parts(2_703_000, 0) } fn execute_dispatch_signed() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_975_000 picoseconds. - Weight::from_parts(2_118_000, 0) + // Minimum execution time: 1_929_000 picoseconds. + Weight::from_parts(2_029_000, 0) } fn execute_dispatch_unsigned() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_842_000 picoseconds. - Weight::from_parts(1_960_000, 0) + // Minimum execution time: 1_887_000 picoseconds. + Weight::from_parts(2_016_000, 0) } /// Storage: `Scheduler::Agenda` (r:1 w:1) /// Proof: `Scheduler::Agenda` (`max_values`: None, `max_size`: Some(10463), added: 12938, mode: `MaxEncodedLen`) @@ -122,10 +122,10 @@ impl pallet_scheduler::WeightInfo for SubstrateWeight pallet_scheduler::WeightInfo for SubstrateWeight pallet_scheduler::WeightInfo for SubstrateWeight pallet_scheduler::WeightInfo for SubstrateWeight pallet_session::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `518` // Estimated: `5468` - // Minimum execution time: 15_494_000 picoseconds. - Weight::from_parts(15_941_000, 5468) + // Minimum execution time: 15_318_000 picoseconds. + Weight::from_parts(15_647_000, 5468) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } @@ -54,8 +54,8 @@ impl pallet_session::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `409` // Estimated: `5359` - // Minimum execution time: 11_136_000 picoseconds. - Weight::from_parts(11_745_000, 5359) + // Minimum execution time: 10_996_000 picoseconds. + Weight::from_parts(11_400_000, 5359) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(2_u64)) } diff --git a/runtime/common/src/weights/pallet_timestamp.rs b/runtime/common/src/weights/pallet_timestamp.rs index ccfe1253af..9d4f1d7277 100644 --- a/runtime/common/src/weights/pallet_timestamp.rs +++ b/runtime/common/src/weights/pallet_timestamp.rs @@ -1,9 +1,9 @@ //! Autogenerated weights for pallet_timestamp //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-06-24, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-27, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-10-173-4-164`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-10-173-11-138`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("frequency-bench"), DB CACHE: 1024 // Executed Command: @@ -39,8 +39,8 @@ impl pallet_timestamp::WeightInfo for SubstrateWeight pallet_timestamp::WeightInfo for SubstrateWeight pallet_utility::WeightInfo for SubstrateWeight // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_814_000 picoseconds. - Weight::from_parts(5_724_659, 0) - // Standard Error: 999 - .saturating_add(Weight::from_parts(2_707_986, 0).saturating_mul(c.into())) + // Minimum execution time: 3_941_000 picoseconds. + Weight::from_parts(5_657_088, 0) + // Standard Error: 967 + .saturating_add(Weight::from_parts(2_668_308, 0).saturating_mul(c.into())) } fn as_derivative() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_974_000 picoseconds. - Weight::from_parts(4_153_000, 0) + // Minimum execution time: 3_867_000 picoseconds. + Weight::from_parts(4_200_000, 0) } /// The range of component `c` is `[0, 1000]`. fn batch_all(c: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_836_000 picoseconds. - Weight::from_parts(3_647_908, 0) - // Standard Error: 1_570 - .saturating_add(Weight::from_parts(2_973_706, 0).saturating_mul(c.into())) + // Minimum execution time: 3_804_000 picoseconds. + Weight::from_parts(1_278_797, 0) + // Standard Error: 1_655 + .saturating_add(Weight::from_parts(2_903_533, 0).saturating_mul(c.into())) } fn dispatch_as() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 5_674_000 picoseconds. - Weight::from_parts(5_901_000, 0) + // Minimum execution time: 5_642_000 picoseconds. + Weight::from_parts(5_902_000, 0) } /// The range of component `c` is `[0, 1000]`. fn force_batch(c: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_947_000 picoseconds. - Weight::from_parts(5_474_513, 0) - // Standard Error: 1_156 - .saturating_add(Weight::from_parts(2_744_244, 0).saturating_mul(c.into())) + // Minimum execution time: 3_844_000 picoseconds. + Weight::from_parts(3_345_067, 0) + // Standard Error: 1_159 + .saturating_add(Weight::from_parts(2_667_328, 0).saturating_mul(c.into())) } } diff --git a/runtime/frequency/src/lib.rs b/runtime/frequency/src/lib.rs index 71ff0cd677..f784f9f834 100644 --- a/runtime/frequency/src/lib.rs +++ b/runtime/frequency/src/lib.rs @@ -360,7 +360,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("frequency"), impl_name: create_runtime_str!("frequency"), authoring_version: 1, - spec_version: 88, + spec_version: 89, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, @@ -374,7 +374,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("frequency-testnet"), impl_name: create_runtime_str!("frequency"), authoring_version: 1, - spec_version: 88, + spec_version: 89, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, @@ -421,6 +421,7 @@ parameter_types! { // Configure FRAME pallets to include in runtime. impl frame_system::Config for Runtime { + type RuntimeTask = RuntimeTask; /// The identifier used to distinguish between accounts. type AccountId = AccountId; /// Base call filter to use in dispatchable.