diff --git a/.maintain/weight-template.hbs b/.maintain/weight-template.hbs index 583735ff..bdcf1d46 100644 --- a/.maintain/weight-template.hbs +++ b/.maintain/weight-template.hbs @@ -57,11 +57,11 @@ impl WeightInfo for SubstrateWeight { {{#if (ne benchmark.base_calculated_proof_size "0")}} Weight::from_parts({{underscore benchmark.base_weight}}, {{benchmark.base_calculated_proof_size}}) {{else}} - Weight::from_ref_time({{underscore benchmark.base_weight}}) + Weight::from_parts({{underscore benchmark.base_weight}}, 0) {{/if}} {{#each benchmark.component_weight as |cw|}} // Standard Error: {{underscore cw.error}} - .saturating_add(Weight::from_ref_time({{underscore cw.slope}}).saturating_mul({{cw.name}}.into())) + .saturating_add(Weight::from_parts({{underscore cw.slope}}, 0).saturating_mul({{cw.name}}.into())) {{/each}} {{#if (ne benchmark.base_reads "0")}} .saturating_add(T::DbWeight::get().reads({{benchmark.base_reads}}_u64)) @@ -76,7 +76,7 @@ impl WeightInfo for SubstrateWeight { .saturating_add(T::DbWeight::get().writes(({{cw.slope}}_u64).saturating_mul({{cw.name}}.into()))) {{/each}} {{#each benchmark.component_calculated_proof_size as |cp|}} - .saturating_add(Weight::from_proof_size({{cp.slope}}).saturating_mul({{cp.name}}.into())) + .saturating_add(Weight::from_parts(0 ,{{cp.slope}}).saturating_mul({{cp.name}}.into())) {{/each}} } {{/each}} @@ -103,11 +103,11 @@ impl WeightInfo for () { {{#if (ne benchmark.base_calculated_proof_size "0")}} Weight::from_parts({{underscore benchmark.base_weight}}, {{benchmark.base_calculated_proof_size}}) {{else}} - Weight::from_ref_time({{underscore benchmark.base_weight}}) + Weight::from_parts({{underscore benchmark.base_weight}}, 0) {{/if}} {{#each benchmark.component_weight as |cw|}} // Standard Error: {{underscore cw.error}} - .saturating_add(Weight::from_ref_time({{underscore cw.slope}}).saturating_mul({{cw.name}}.into())) + .saturating_add(Weight::from_parts({{underscore cw.slope}}, 0).saturating_mul({{cw.name}}.into())) {{/each}} {{#if (ne benchmark.base_reads "0")}} .saturating_add(RocksDbWeight::get().reads({{benchmark.base_reads}}_u64)) @@ -122,7 +122,7 @@ impl WeightInfo for () { .saturating_add(RocksDbWeight::get().writes(({{cw.slope}}_u64).saturating_mul({{cw.name}}.into()))) {{/each}} {{#each benchmark.component_calculated_proof_size as |cp|}} - .saturating_add(Weight::from_proof_size({{cp.slope}}).saturating_mul({{cp.name}}.into())) + .saturating_add(Weight::from_parts(0, {{cp.slope}}).saturating_mul({{cp.name}}.into())) {{/each}} } {{/each}} diff --git a/Cargo.lock b/Cargo.lock index ea8941a9..68752f3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -115,9 +115,9 @@ dependencies = [ [[package]] name = "aes-gcm" -version = "0.10.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82e1366e0c69c9f927b1fa5ce2c7bf9eafc8f9268c0b9800729e8b267612447c" +checksum = "209b47e8954a928e1d72e86eca7000ebb6655fe1436d33eefc2201cad027e237" dependencies = [ "aead 0.5.2", "aes 0.8.2", @@ -391,6 +391,17 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" +[[package]] +name = "async-channel" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" +dependencies = [ + "concurrent-queue", + "event-listener", + "futures-core", +] + [[package]] name = "async-io" version = "1.13.0" @@ -428,7 +439,7 @@ checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] @@ -529,9 +540,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "base64" -version = "0.21.0" +version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" +checksum = "3f1e31e207a6b8fb791a38ea3105e6cb541f55e4d029902d3039a4ad07cc4105" [[package]] name = "base64ct" @@ -548,63 +559,10 @@ dependencies = [ "serde", ] -[[package]] -name = "beefy-gadget" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" -dependencies = [ - "array-bytes 4.2.0", - "async-trait", - "fnv", - "futures", - "log", - "parity-scale-codec", - "parking_lot 0.12.1", - "sc-client-api", - "sc-consensus", - "sc-keystore", - "sc-network", - "sc-network-common", - "sc-network-gossip", - "sc-utils", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-beefy", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-keystore", - "sp-mmr-primitives", - "sp-runtime", - "substrate-prometheus-endpoint", - "thiserror", - "wasm-timer", -] - -[[package]] -name = "beefy-gadget-rpc" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" -dependencies = [ - "beefy-gadget", - "futures", - "jsonrpsee", - "log", - "parity-scale-codec", - "parking_lot 0.12.1", - "sc-rpc", - "serde", - "sp-beefy", - "sp-core", - "sp-runtime", - "thiserror", -] - [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "hash-db", "log", @@ -663,7 +621,7 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" dependencies = [ - "digest 0.10.6", + "digest 0.10.7", ] [[package]] @@ -699,7 +657,7 @@ dependencies = [ "cc", "cfg-if", "constant_time_eq", - "digest 0.10.6", + "digest 0.10.7", ] [[package]] @@ -759,9 +717,9 @@ checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" [[package]] name = "bounded-collections" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3888522b497857eb606bf51695988dba7096941822c1bcf676e3a929a9ae7a0" +checksum = "07fbd1d11282a1eb134d3c3b7cf8ce213b5161c6e5f73fb1b98618482c606b64" dependencies = [ "log", "parity-scale-codec", @@ -786,9 +744,9 @@ checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" [[package]] name = "bstr" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09" +checksum = "a246e68bb43f6cd9db24bea052a53e40405417c5fb372e3d1a8a7f770a564ef5" dependencies = [ "memchr", "serde", @@ -805,9 +763,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.12.2" +version = "3.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b" +checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" [[package]] name = "byte-slice-cast" @@ -1035,9 +993,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.2.7" +version = "4.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34d21f9bf1b425d2968943631ec91202fe5e837264063503708b83013f8fc938" +checksum = "93aae7a4192245f70fe75dd9157fc7b4a5bf53e88d30bd4396f7d8f9284d5acc" dependencies = [ "clap_builder", "clap_derive", @@ -1046,9 +1004,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.2.7" +version = "4.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "914c8c79fb560f238ef6429439a30023c862f7a28e688c58f7203f12b29970bd" +checksum = "4f423e341edefb78c9caba2d9c7f7687d0e72e89df3ce3394554754393ac3990" dependencies = [ "anstream", "anstyle", @@ -1059,21 +1017,21 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.2.0" +version = "4.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4" +checksum = "191d9573962933b4027f932c600cd252ce27a8ad5979418fe78e43c07996f27b" dependencies = [ "heck", "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] name = "clap_lex" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" +checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" [[package]] name = "coarsetime" @@ -1459,7 +1417,7 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "clap", "parity-scale-codec", @@ -1474,7 +1432,7 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -1497,7 +1455,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -1526,7 +1484,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -1550,7 +1508,7 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -1573,7 +1531,7 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1597,7 +1555,7 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -1609,11 +1567,11 @@ dependencies = [ "cumulus-relay-chain-interface", "cumulus-relay-chain-minimal-node", "futures", - "parking_lot 0.12.1", "polkadot-primitives", "sc-client-api", "sc-consensus", "sc-network", + "sc-network-sync", "sc-network-transactions", "sc-rpc", "sc-service", @@ -1632,7 +1590,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "frame-support", "frame-system", @@ -1648,7 +1606,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -1665,7 +1623,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -1694,7 +1652,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -1705,7 +1663,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "frame-benchmarking", "frame-support", @@ -1719,7 +1677,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -1735,7 +1693,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -1756,7 +1714,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -1772,7 +1730,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1795,7 +1753,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "cumulus-primitives-core", "futures", @@ -1808,7 +1766,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -1826,7 +1784,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1851,7 +1809,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1859,19 +1817,17 @@ dependencies = [ "jsonrpsee-core", "parity-scale-codec", "polkadot-overseer", - "polkadot-service", "sc-client-api", "sp-api", "sp-blockchain", "sp-state-machine", "thiserror", - "tokio", ] [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "array-bytes 6.1.0", "async-trait", @@ -1889,15 +1845,11 @@ dependencies = [ "polkadot-service", "sc-authority-discovery", "sc-client-api", - "sc-consensus", - "sc-keystore", "sc-network", "sc-network-common", "sc-service", - "sc-telemetry", "sc-tracing", - "sc-transaction-pool", - "sc-transaction-pool-api", + "sc-utils", "sp-api", "sp-blockchain", "sp-consensus", @@ -1905,13 +1857,12 @@ dependencies = [ "sp-runtime", "tokio", "tracing", - "url", ] [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1921,9 +1872,10 @@ dependencies = [ "jsonrpsee", "lru 0.9.0", "parity-scale-codec", - "polkadot-service", + "polkadot-overseer", "sc-client-api", "sc-rpc-api", + "sc-service", "serde", "serde_json", "sp-api", @@ -1940,7 +1892,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -2014,7 +1966,7 @@ dependencies = [ "proc-macro2", "quote", "scratch", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] @@ -2031,7 +1983,7 @@ checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] @@ -2071,15 +2023,15 @@ dependencies = [ [[package]] name = "data-encoding" -version = "2.3.3" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb" +checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" [[package]] name = "data-encoding-macro" -version = "0.1.12" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86927b7cd2fe88fa698b87404b287ab98d1a0063a34071d92e575b72d3029aca" +checksum = "c904b33cc60130e1aeea4956ab803d08a3f4a0ca82d64ed757afac3891f2bb99" dependencies = [ "data-encoding", "data-encoding-macro-internal", @@ -2087,9 +2039,9 @@ dependencies = [ [[package]] name = "data-encoding-macro-internal" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5bbed42daaa95e780b60a50546aa345b8413a1e46f9a40a12907d3598f038db" +checksum = "8fdf3fce3ce863539ec1d7fd1b6dcc3c645663376b43ed376bbf887733e4f772" dependencies = [ "data-encoding", "syn 1.0.109", @@ -2270,9 +2222,9 @@ dependencies = [ [[package]] name = "digest" -version = "0.10.6" +version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ "block-buffer 0.10.4", "crypto-common", @@ -2328,7 +2280,7 @@ checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] @@ -2440,7 +2392,7 @@ dependencies = [ "base16ct", "crypto-bigint", "der", - "digest 0.10.6", + "digest 0.10.7", "ff", "generic-array 0.14.7", "group", @@ -2482,7 +2434,7 @@ checksum = "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] @@ -2493,7 +2445,7 @@ checksum = "48016319042fb7c87b78d2993084a831793a897a5cd1a2a67cab9d1eeb4b7d76" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] @@ -2589,6 +2541,19 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "expander" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f360349150728553f92e4c997a16af8915f418d3a0f21b440d34c5632f16ed84" +dependencies = [ + "blake2", + "fs-err", + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "fake-simd" version = "0.1.2" @@ -2745,7 +2710,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", ] @@ -2768,7 +2733,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "frame-support-procedural", @@ -2793,7 +2758,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "Inflector", "array-bytes 4.2.0", @@ -2840,7 +2805,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2851,7 +2816,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2868,7 +2833,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "frame-system", @@ -2897,7 +2862,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "futures", "log", @@ -2913,9 +2878,10 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "bitflags", + "environmental", "frame-metadata", "frame-support-procedural", "impl-trait-for-tuples", @@ -2945,7 +2911,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "Inflector", "cfg-expr", @@ -2960,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2972,7 +2938,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "proc-macro2", "quote", @@ -2982,7 +2948,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "log", @@ -3000,7 +2966,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -3015,7 +2981,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", "sp-api", @@ -3024,7 +2990,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "parity-scale-codec", @@ -3049,6 +3015,16 @@ dependencies = [ "winapi", ] +[[package]] +name = "fs4" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7f5b6908aecca5812a4569056285e58c666588c9573ee59765bf1d3692699e2" +dependencies = [ + "rustix 0.37.19", + "windows-sys 0.48.0", +] + [[package]] name = "funty" version = "2.0.0" @@ -3127,7 +3103,7 @@ checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] @@ -3306,9 +3282,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17f8a914c2987b688368b5138aa05321db91f4090cf26118185672ad588bce21" +checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782" dependencies = [ "bytes", "fnv", @@ -3339,9 +3315,9 @@ dependencies = [ [[package]] name = "hash-db" -version = "0.15.2" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a" +checksum = "8e7d7786361d7425ae2fe4f9e407eb0efaa0840f5212d109cc018c40c35c6ab4" [[package]] name = "hash256-std-hasher" @@ -3447,7 +3423,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" dependencies = [ - "digest 0.10.6", + "digest 0.10.7", ] [[package]] @@ -3573,12 +3549,11 @@ dependencies = [ [[package]] name = "iana-time-zone-haiku" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" dependencies = [ - "cxx", - "cxx-build", + "cc", ] [[package]] @@ -3802,9 +3777,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.62" +version = "0.3.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5" +checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790" dependencies = [ "wasm-bindgen", ] @@ -4003,6 +3978,7 @@ dependencies = [ "sc-consensus", "sc-executor", "sc-network", + "sc-network-sync", "sc-rpc-api", "sc-service", "sc-sysinfo", @@ -4081,8 +4057,8 @@ dependencies = [ [[package]] name = "kusama-runtime" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bitvec", "frame-benchmarking", @@ -4155,9 +4131,9 @@ dependencies = [ "sp-api", "sp-arithmetic", "sp-authority-discovery", - "sp-beefy", "sp-block-builder", "sp-consensus-babe", + "sp-consensus-beefy", "sp-core", "sp-inherents", "sp-io", @@ -4179,8 +4155,8 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "frame-support", "polkadot-primitives", @@ -4260,9 +4236,9 @@ checksum = "7fc7aa29613bd6a620df431842069224d8bc9011086b1db4c0e0cd47fa03ec9a" [[package]] name = "libm" -version = "0.2.6" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb" +checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" [[package]] name = "libp2p" @@ -4832,9 +4808,9 @@ checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" [[package]] name = "linux-raw-sys" -version = "0.3.7" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f" +checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] name = "lock_api" @@ -4931,8 +4907,8 @@ dependencies = [ "sc-client-api", "sc-consensus", "sc-consensus-aura", + "sc-consensus-grandpa", "sc-executor", - "sc-finality-grandpa", "sc-keystore", "sc-rpc-api", "sc-service", @@ -4943,8 +4919,8 @@ dependencies = [ "sp-block-builder", "sp-blockchain", "sp-consensus-aura", + "sp-consensus-grandpa", "sp-core", - "sp-finality-grandpa", "sp-inherents", "sp-io", "sp-keyring", @@ -5045,7 +5021,7 @@ version = "0.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" dependencies = [ - "digest 0.10.6", + "digest 0.10.7", ] [[package]] @@ -5081,15 +5057,6 @@ dependencies = [ "autocfg", ] -[[package]] -name = "memoffset" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" -dependencies = [ - "autocfg", -] - [[package]] name = "memoffset" version = "0.8.0" @@ -5101,12 +5068,11 @@ dependencies = [ [[package]] name = "memory-db" -version = "0.31.0" +version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e0c7cba9ce19ac7ffd2053ac9f49843bbd3f4318feedfd74e85c19d5fb0ba66" +checksum = "808b50db46293432a45e63bc15ea51e0ab4c0a1647b8eb114e31a3e698dd6fbe" dependencies = [ "hash-db", - "hashbrown 0.12.3", ] [[package]] @@ -5177,7 +5143,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "futures", "log", @@ -5185,9 +5151,9 @@ dependencies = [ "sc-client-api", "sc-offchain", "sp-api", - "sp-beefy", "sp-blockchain", "sp-consensus", + "sp-consensus-beefy", "sp-core", "sp-mmr-primitives", "sp-runtime", @@ -5196,7 +5162,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "anyhow", "jsonrpsee", @@ -5294,7 +5260,7 @@ dependencies = [ "blake2s_simd", "blake3", "core2", - "digest 0.10.6", + "digest 0.10.7", "multihash-derive", "sha2 0.10.6", "sha3", @@ -5466,20 +5432,6 @@ dependencies = [ "memoffset 0.6.5", ] -[[package]] -name = "nix" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" -dependencies = [ - "bitflags", - "cfg-if", - "libc", - "memoffset 0.7.1", - "pin-utils", - "static_assertions", -] - [[package]] name = "nohash-hasher" version = "0.2.0" @@ -5638,9 +5590,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "orchestra" -version = "0.0.4" +version = "0.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17e7d5b6bb115db09390bed8842c94180893dd83df3dfce7354f2a2aa090a4ee" +checksum = "227585216d05ba65c7ab0a0450a3cf2cbd81a98862a54c4df8e14d5ac6adb015" dependencies = [ "async-trait", "dyn-clonable", @@ -5655,9 +5607,9 @@ dependencies = [ [[package]] name = "orchestra-proc-macro" -version = "0.0.4" +version = "0.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2af4dabb2286b0be0e9711d2d24e25f6217048b71210cffd3daddc3b5c84e1f" +checksum = "2871aadd82a2c216ee68a69837a526dfe788ecbe74c4c5038a6acdbff6653066" dependencies = [ "expander 0.0.6", "itertools", @@ -5712,7 +5664,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "frame-system", @@ -5728,7 +5680,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "frame-system", @@ -5744,7 +5696,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "frame-system", @@ -5758,7 +5710,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5782,7 +5734,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5802,7 +5754,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5817,7 +5769,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "frame-system", @@ -5826,7 +5778,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-beefy", + "sp-consensus-beefy", "sp-runtime", "sp-session", "sp-staking", @@ -5836,7 +5788,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "array-bytes 4.2.0", "binary-merkle-tree", @@ -5850,7 +5802,7 @@ dependencies = [ "scale-info", "serde", "sp-api", - "sp-beefy", + "sp-consensus-beefy", "sp-core", "sp-io", "sp-runtime", @@ -5860,7 +5812,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5878,7 +5830,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5897,7 +5849,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5914,7 +5866,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5931,7 +5883,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5976,7 +5928,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5999,7 +5951,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6012,7 +5964,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6030,7 +5982,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6048,7 +6000,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6059,8 +6011,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-application-crypto", + "sp-consensus-grandpa", "sp-core", - "sp-finality-grandpa", "sp-io", "sp-runtime", "sp-session", @@ -6071,7 +6023,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6087,7 +6039,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6107,7 +6059,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6140,7 +6092,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6157,7 +6109,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6174,7 +6126,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6190,7 +6142,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6206,7 +6158,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "frame-system", @@ -6223,7 +6175,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6243,7 +6195,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -6254,7 +6206,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "frame-system", @@ -6271,7 +6223,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6295,7 +6247,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6312,7 +6264,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6327,7 +6279,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6345,7 +6297,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6360,7 +6312,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6379,7 +6331,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6396,7 +6348,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "frame-system", @@ -6417,7 +6369,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6433,7 +6385,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "frame-system", @@ -6447,7 +6399,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6470,7 +6422,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6481,7 +6433,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "log", "sp-arithmetic", @@ -6490,7 +6442,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", "sp-api", @@ -6499,7 +6451,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6516,7 +6468,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "frame-system", @@ -6530,7 +6482,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6548,7 +6500,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6567,7 +6519,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-support", "frame-system", @@ -6583,7 +6535,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6599,7 +6551,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6611,7 +6563,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6628,7 +6580,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6644,7 +6596,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6677,7 +6629,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6691,8 +6643,8 @@ dependencies = [ [[package]] name = "pallet-xcm" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -6712,8 +6664,8 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "frame-benchmarking", "frame-support", @@ -6732,7 +6684,7 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.39#d6eef144421ef5c3f339f681484d06bb729dfa82" +source = "git+https://github.com/paritytech/cumulus?branch=polkadot-v0.9.41#ae4e75b077c220bdf29b299b36a63b87ccb46b4c" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -6769,9 +6721,9 @@ dependencies = [ [[package]] name = "parity-db" -version = "0.4.7" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd4572a52711e2ccff02b4973ec7e4a5b5c23387ebbfbd6cd42b34755714cefc" +checksum = "4890dcb9556136a4ec2b0c51fa4a08c8b733b829506af8fff2e853f3a065985b" dependencies = [ "blake2", "crc32fast", @@ -6901,7 +6853,7 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" dependencies = [ - "digest 0.10.6", + "digest 0.10.7", ] [[package]] @@ -7043,7 +6995,7 @@ dependencies = [ "pest_meta", "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] @@ -7069,22 +7021,22 @@ dependencies = [ [[package]] name = "pin-project" -version = "1.0.12" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" +checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.0.12" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" +checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.16", ] [[package]] @@ -7135,8 +7087,8 @@ checksum = "e3d7ddaed09e0eb771a79ab0fd64609ba0afb0a8366421957936ad14cbd13630" [[package]] name = "polkadot-approval-distribution" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "futures", "polkadot-node-metrics", @@ -7150,8 +7102,8 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7164,8 +7116,8 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "derive_more", "fatality", @@ -7187,8 +7139,8 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "fatality", "futures", @@ -7208,8 +7160,8 @@ dependencies = [ [[package]] name = "polkadot-cli" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7236,8 +7188,8 @@ dependencies = [ [[package]] name = "polkadot-client" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "async-trait", "frame-benchmarking", @@ -7258,13 +7210,13 @@ dependencies = [ "sc-service", "sp-api", "sp-authority-discovery", - "sp-beefy", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", + "sp-consensus-beefy", + "sp-consensus-grandpa", "sp-core", - "sp-finality-grandpa", "sp-inherents", "sp-keyring", "sp-mmr-primitives", @@ -7278,8 +7230,8 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "always-assert", "bitvec", @@ -7300,8 +7252,8 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "parity-scale-codec", "scale-info", @@ -7312,8 +7264,8 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "derive_more", "fatality", @@ -7337,8 +7289,8 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7351,8 +7303,8 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "futures", "futures-timer", @@ -7371,8 +7323,8 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "always-assert", "async-trait", @@ -7387,7 +7339,6 @@ dependencies = [ "polkadot-overseer", "polkadot-primitives", "sc-network", - "sc-network-common", "sp-consensus", "thiserror", "tracing-gum", @@ -7395,8 +7346,8 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "futures", "parity-scale-codec", @@ -7413,8 +7364,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bitvec", "derive_more", @@ -7442,8 +7393,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bitvec", "futures", @@ -7463,8 +7414,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bitvec", "fatality", @@ -7482,8 +7433,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7497,8 +7448,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "async-trait", "futures", @@ -7517,8 +7468,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "futures", "polkadot-node-metrics", @@ -7532,8 +7483,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "futures", "futures-timer", @@ -7549,8 +7500,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "fatality", "futures", @@ -7568,8 +7519,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "async-trait", "futures", @@ -7585,8 +7536,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bitvec", "fatality", @@ -7603,8 +7554,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "always-assert", "assert_matches", @@ -7631,6 +7582,7 @@ dependencies = [ "sp-maybe-compressed-blob", "sp-tracing", "sp-wasm-interface", + "substrate-build-script-utils", "tempfile", "tikv-jemalloc-ctl", "tokio", @@ -7639,8 +7591,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "futures", "polkadot-node-primitives", @@ -7655,8 +7607,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "futures", "lru 0.9.0", @@ -7670,8 +7622,8 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "lazy_static", "log", @@ -7688,8 +7640,8 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bs58", "futures", @@ -7707,8 +7659,8 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "async-trait", "derive_more", @@ -7722,7 +7674,6 @@ dependencies = [ "rand 0.8.5", "sc-authority-discovery", "sc-network", - "sc-network-common", "strum", "thiserror", "tracing-gum", @@ -7730,8 +7681,8 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bounded-vec", "futures", @@ -7753,8 +7704,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7763,8 +7714,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "async-trait", "derive_more", @@ -7786,8 +7737,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "async-trait", "derive_more", @@ -7819,8 +7770,8 @@ dependencies = [ [[package]] name = "polkadot-overseer" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "async-trait", "futures", @@ -7842,8 +7793,8 @@ dependencies = [ [[package]] name = "polkadot-parachain" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bounded-collections", "derive_more", @@ -7859,8 +7810,8 @@ dependencies = [ [[package]] name = "polkadot-performance-test" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "env_logger 0.9.3", "kusama-runtime", @@ -7875,8 +7826,8 @@ dependencies = [ [[package]] name = "polkadot-primitives" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bitvec", "hex-literal", @@ -7901,11 +7852,9 @@ dependencies = [ [[package]] name = "polkadot-rpc" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ - "beefy-gadget", - "beefy-gadget-rpc", "jsonrpsee", "mmr-rpc", "pallet-transaction-payment-rpc", @@ -7914,9 +7863,11 @@ dependencies = [ "sc-client-api", "sc-consensus-babe", "sc-consensus-babe-rpc", + "sc-consensus-beefy", + "sc-consensus-beefy-rpc", "sc-consensus-epochs", - "sc-finality-grandpa", - "sc-finality-grandpa-rpc", + "sc-consensus-grandpa", + "sc-consensus-grandpa-rpc", "sc-rpc", "sc-sync-state-rpc", "sc-transaction-pool-api", @@ -7933,8 +7884,8 @@ dependencies = [ [[package]] name = "polkadot-runtime" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bitvec", "frame-benchmarking", @@ -7999,9 +7950,9 @@ dependencies = [ "smallvec", "sp-api", "sp-authority-discovery", - "sp-beefy", "sp-block-builder", "sp-consensus-babe", + "sp-consensus-beefy", "sp-core", "sp-inherents", "sp-io", @@ -8023,8 +7974,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bitvec", "frame-benchmarking", @@ -8037,7 +7988,6 @@ dependencies = [ "pallet-authorship", "pallet-babe", "pallet-balances", - "pallet-beefy-mmr", "pallet-election-provider-multi-phase", "pallet-fast-unstake", "pallet-session", @@ -8056,7 +8006,6 @@ dependencies = [ "serde_derive", "slot-range-helper", "sp-api", - "sp-beefy", "sp-core", "sp-inherents", "sp-io", @@ -8071,8 +8020,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "frame-support", "polkadot-primitives", @@ -8085,8 +8034,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bs58", "parity-scale-codec", @@ -8097,8 +8046,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bitflags", "bitvec", @@ -8141,11 +8090,10 @@ dependencies = [ [[package]] name = "polkadot-service" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "async-trait", - "beefy-gadget", "frame-benchmarking-cli", "frame-support", "frame-system-rpc-runtime-api", @@ -8206,12 +8154,14 @@ dependencies = [ "sc-client-db", "sc-consensus", "sc-consensus-babe", + "sc-consensus-beefy", + "sc-consensus-grandpa", "sc-consensus-slots", "sc-executor", - "sc-finality-grandpa", "sc-keystore", "sc-network", "sc-network-common", + "sc-network-sync", "sc-offchain", "sc-service", "sc-sync-state-rpc", @@ -8222,13 +8172,13 @@ dependencies = [ "serde_json", "sp-api", "sp-authority-discovery", - "sp-beefy", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", + "sp-consensus-beefy", + "sp-consensus-grandpa", "sp-core", - "sp-finality-grandpa", "sp-inherents", "sp-io", "sp-keystore", @@ -8249,8 +8199,8 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8270,8 +8220,8 @@ dependencies = [ [[package]] name = "polkadot-statement-table" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8326,7 +8276,7 @@ dependencies = [ "cfg-if", "cpufeatures", "opaque-debug 0.3.0", - "universal-hash 0.5.0", + "universal-hash 0.5.1", ] [[package]] @@ -8440,9 +8390,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.56" +version = "1.0.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" +checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8" dependencies = [ "unicode-ident", ] @@ -8830,7 +8780,7 @@ checksum = "8d2275aab483050ab2a7364c1a46604865ee7d6906684e08db0f090acf74f9e7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] @@ -8847,13 +8797,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.8.1" +version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" +checksum = "d1a59b5d8e97dee33696bf13c5ba8ab85341c002922fba050069326b9c498974" dependencies = [ "aho-corasick 1.0.1", "memchr", - "regex-syntax 0.7.1", + "regex-syntax 0.7.2", ] [[package]] @@ -8873,9 +8823,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "regex-syntax" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" +checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" [[package]] name = "region" @@ -8937,8 +8887,8 @@ dependencies = [ [[package]] name = "rococo-runtime" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -9000,9 +8950,9 @@ dependencies = [ "smallvec", "sp-api", "sp-authority-discovery", - "sp-beefy", "sp-block-builder", "sp-consensus-babe", + "sp-consensus-beefy", "sp-core", "sp-inherents", "sp-io", @@ -9023,8 +8973,8 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "frame-support", "polkadot-primitives", @@ -9067,7 +9017,7 @@ dependencies = [ "log", "netlink-packet-route", "netlink-proto", - "nix 0.24.3", + "nix", "thiserror", "tokio", ] @@ -9171,9 +9121,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.36.13" +version = "0.36.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a38f9520be93aba504e8ca974197f46158de5dcaa9fa04b57c57cd6a679d658" +checksum = "14e4d67015953998ad0eb82887a0eb0129e18a7e2f3b7b0f6c422fddcd503d62" dependencies = [ "bitflags", "errno", @@ -9193,7 +9143,7 @@ dependencies = [ "errno", "io-lifetimes", "libc", - "linux-raw-sys 0.3.7", + "linux-raw-sys 0.3.8", "windows-sys 0.48.0", ] @@ -9240,7 +9190,7 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" dependencies = [ - "base64 0.21.0", + "base64 0.21.1", ] [[package]] @@ -9287,7 +9237,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "log", "sp-core", @@ -9298,7 +9248,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "futures", @@ -9311,6 +9261,7 @@ dependencies = [ "prost-build", "rand 0.8.5", "sc-client-api", + "sc-network", "sc-network-common", "sp-api", "sp-authority-discovery", @@ -9325,7 +9276,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "futures", "futures-timer", @@ -9348,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9358,28 +9309,31 @@ dependencies = [ "sp-core", "sp-inherents", "sp-runtime", - "sp-state-machine", ] [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "memmap2", "sc-chain-spec-derive", - "sc-network-common", + "sc-client-api", + "sc-executor", + "sc-network", "sc-telemetry", "serde", "serde_json", + "sp-blockchain", "sp-core", "sp-runtime", + "sp-state-machine", ] [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9390,7 +9344,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "array-bytes 4.2.0", "chrono", @@ -9430,7 +9384,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "fnv", "futures", @@ -9456,7 +9410,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "hash-db", "kvdb", @@ -9482,7 +9436,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "futures", @@ -9507,7 +9461,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "futures", @@ -9536,7 +9490,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "fork-tree", @@ -9575,7 +9529,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "futures", "jsonrpsee", @@ -9594,23 +9548,137 @@ dependencies = [ "thiserror", ] +[[package]] +name = "sc-consensus-beefy" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" +dependencies = [ + "array-bytes 4.2.0", + "async-trait", + "fnv", + "futures", + "log", + "parity-scale-codec", + "parking_lot 0.12.1", + "sc-client-api", + "sc-consensus", + "sc-keystore", + "sc-network", + "sc-network-common", + "sc-network-gossip", + "sc-network-sync", + "sc-utils", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", + "sp-blockchain", + "sp-consensus", + "sp-consensus-beefy", + "sp-core", + "sp-keystore", + "sp-mmr-primitives", + "sp-runtime", + "substrate-prometheus-endpoint", + "thiserror", + "wasm-timer", +] + +[[package]] +name = "sc-consensus-beefy-rpc" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" +dependencies = [ + "futures", + "jsonrpsee", + "log", + "parity-scale-codec", + "parking_lot 0.12.1", + "sc-consensus-beefy", + "sc-rpc", + "serde", + "sp-consensus-beefy", + "sp-core", + "sp-runtime", + "thiserror", +] + [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" +dependencies = [ + "fork-tree", + "parity-scale-codec", + "sc-client-api", + "sc-consensus", + "sp-blockchain", + "sp-runtime", +] + +[[package]] +name = "sc-consensus-grandpa" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ + "ahash 0.8.3", + "array-bytes 4.2.0", + "async-trait", + "dyn-clone", + "finality-grandpa", "fork-tree", + "futures", + "futures-timer", + "log", "parity-scale-codec", + "parking_lot 0.12.1", + "rand 0.8.5", + "sc-block-builder", + "sc-chain-spec", "sc-client-api", "sc-consensus", + "sc-network", + "sc-network-common", + "sc-network-gossip", + "sc-telemetry", + "sc-utils", + "serde_json", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", + "sp-blockchain", + "sp-consensus", + "sp-consensus-grandpa", + "sp-core", + "sp-keystore", + "sp-runtime", + "substrate-prometheus-endpoint", + "thiserror", +] + +[[package]] +name = "sc-consensus-grandpa-rpc" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" +dependencies = [ + "finality-grandpa", + "futures", + "jsonrpsee", + "log", + "parity-scale-codec", + "sc-client-api", + "sc-consensus-grandpa", + "sc-rpc", + "serde", "sp-blockchain", + "sp-core", "sp-runtime", + "thiserror", ] [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "futures", @@ -9633,7 +9701,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "lru 0.8.1", "parity-scale-codec", @@ -9657,7 +9725,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -9670,7 +9738,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "log", "sc-allocator", @@ -9683,14 +9751,14 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "anyhow", "cfg-if", "libc", "log", "once_cell", - "rustix 0.36.13", + "rustix 0.36.14", "sc-allocator", "sc-executor-common", "sp-runtime-interface", @@ -9698,76 +9766,17 @@ dependencies = [ "wasmtime", ] -[[package]] -name = "sc-finality-grandpa" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" -dependencies = [ - "ahash 0.8.3", - "array-bytes 4.2.0", - "async-trait", - "dyn-clone", - "finality-grandpa", - "fork-tree", - "futures", - "futures-timer", - "log", - "parity-scale-codec", - "parking_lot 0.12.1", - "rand 0.8.5", - "sc-block-builder", - "sc-chain-spec", - "sc-client-api", - "sc-consensus", - "sc-network", - "sc-network-common", - "sc-network-gossip", - "sc-telemetry", - "sc-utils", - "serde_json", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-finality-grandpa", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", - "thiserror", -] - -[[package]] -name = "sc-finality-grandpa-rpc" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" -dependencies = [ - "finality-grandpa", - "futures", - "jsonrpsee", - "log", - "parity-scale-codec", - "sc-client-api", - "sc-finality-grandpa", - "sc-rpc", - "serde", - "sp-blockchain", - "sp-core", - "sp-runtime", - "thiserror", -] - [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "ansi_term", "futures", "futures-timer", "log", "sc-client-api", + "sc-network", "sc-network-common", "sp-blockchain", "sp-runtime", @@ -9776,7 +9785,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -9791,12 +9800,12 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "array-bytes 4.2.0", + "async-channel", "async-trait", "asynchronous-codec", - "backtrace", "bytes", "either", "fnv", @@ -9804,6 +9813,7 @@ dependencies = [ "futures-timer", "ip_network", "libp2p", + "linked_hash_set", "log", "lru 0.8.1", "mockall", @@ -9834,7 +9844,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "cid", "futures", @@ -9843,6 +9853,7 @@ dependencies = [ "prost", "prost-build", "sc-client-api", + "sc-network", "sc-network-common", "sp-blockchain", "sp-runtime", @@ -9853,33 +9864,35 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ + "array-bytes 4.2.0", "async-trait", "bitflags", "bytes", "futures", "futures-timer", "libp2p", - "linked_hash_set", "parity-scale-codec", "prost-build", "sc-consensus", "sc-peerset", + "sc-utils", "serde", "smallvec", "sp-blockchain", "sp-consensus", - "sp-finality-grandpa", + "sp-consensus-grandpa", "sp-runtime", "substrate-prometheus-endpoint", "thiserror", + "zeroize", ] [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "ahash 0.8.3", "futures", @@ -9887,6 +9900,7 @@ dependencies = [ "libp2p", "log", "lru 0.8.1", + "sc-network", "sc-network-common", "sc-peerset", "sp-runtime", @@ -9897,7 +9911,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "array-bytes 4.2.0", "futures", @@ -9907,6 +9921,7 @@ dependencies = [ "prost", "prost-build", "sc-client-api", + "sc-network", "sc-network-common", "sc-peerset", "sp-blockchain", @@ -9918,12 +9933,13 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "array-bytes 4.2.0", "async-trait", "fork-tree", "futures", + "futures-timer", "libp2p", "log", "lru 0.8.1", @@ -9933,6 +9949,7 @@ dependencies = [ "prost-build", "sc-client-api", "sc-consensus", + "sc-network", "sc-network-common", "sc-peerset", "sc-utils", @@ -9940,8 +9957,8 @@ dependencies = [ "sp-arithmetic", "sp-blockchain", "sp-consensus", + "sp-consensus-grandpa", "sp-core", - "sp-finality-grandpa", "sp-runtime", "substrate-prometheus-endpoint", "thiserror", @@ -9950,7 +9967,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "array-bytes 4.2.0", "futures", @@ -9958,6 +9975,7 @@ dependencies = [ "log", "parity-scale-codec", "pin-project", + "sc-network", "sc-network-common", "sc-peerset", "sc-utils", @@ -9969,7 +9987,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "array-bytes 4.2.0", "bytes", @@ -9985,6 +10003,7 @@ dependencies = [ "parking_lot 0.12.1", "rand 0.8.5", "sc-client-api", + "sc-network", "sc-network-common", "sc-peerset", "sc-utils", @@ -9999,7 +10018,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "futures", "libp2p", @@ -10012,7 +10031,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10021,7 +10040,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "futures", "jsonrpsee", @@ -10051,7 +10070,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10070,7 +10089,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "http", "jsonrpsee", @@ -10085,7 +10104,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "array-bytes 4.2.0", "futures", @@ -10111,7 +10130,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "directories", @@ -10177,7 +10196,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "log", "parity-scale-codec", @@ -10188,12 +10207,12 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "clap", + "fs4", "futures", "log", - "nix 0.26.2", "sc-client-db", "sc-utils", "sp-core", @@ -10204,7 +10223,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10212,7 +10231,7 @@ dependencies = [ "sc-client-api", "sc-consensus-babe", "sc-consensus-epochs", - "sc-finality-grandpa", + "sc-consensus-grandpa", "serde", "serde_json", "sp-blockchain", @@ -10223,7 +10242,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "futures", "libc", @@ -10242,7 +10261,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "chrono", "futures", @@ -10261,7 +10280,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "ansi_term", "atty", @@ -10292,7 +10311,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10303,7 +10322,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "futures", @@ -10330,7 +10349,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "futures", @@ -10344,22 +10363,23 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ - "backtrace", + "async-channel", "futures", "futures-timer", "lazy_static", "log", "parking_lot 0.12.1", "prometheus", + "sp-arithmetic", ] [[package]] name = "scale-info" -version = "2.6.0" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfdef77228a4c05dc94211441595746732131ad7f6530c6c18f045da7b7ab937" +checksum = "b569c32c806ec3abdf3b5869fb8bf1e0d275a7c1c9b0b05603d9464632649edf" dependencies = [ "bitvec", "cfg-if", @@ -10506,9 +10526,9 @@ dependencies = [ [[package]] name = "security-framework" -version = "2.8.2" +version = "2.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" +checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8" dependencies = [ "bitflags", "core-foundation", @@ -10519,9 +10539,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.8.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" +checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7" dependencies = [ "core-foundation-sys", "libc", @@ -10568,7 +10588,7 @@ checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] @@ -10603,7 +10623,7 @@ checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" dependencies = [ "cfg-if", "cpufeatures", - "digest 0.10.6", + "digest 0.10.7", ] [[package]] @@ -10639,7 +10659,7 @@ checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" dependencies = [ "cfg-if", "cpufeatures", - "digest 0.10.6", + "digest 0.10.7", ] [[package]] @@ -10648,7 +10668,7 @@ version = "0.10.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" dependencies = [ - "digest 0.10.6", + "digest 0.10.7", "keccak", ] @@ -10682,7 +10702,7 @@ version = "1.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" dependencies = [ - "digest 0.10.6", + "digest 0.10.7", "rand_core 0.6.4", ] @@ -10722,8 +10742,8 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "enumn", "parity-scale-codec", @@ -10800,7 +10820,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "hash-db", "log", @@ -10818,9 +10838,11 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ + "Inflector", "blake2", + "expander 1.0.0", "proc-macro-crate", "proc-macro2", "quote", @@ -10830,7 +10852,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", "scale-info", @@ -10843,7 +10865,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "integer-sqrt", "num-traits", @@ -10857,39 +10879,20 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" -dependencies = [ - "parity-scale-codec", - "scale-info", - "sp-api", - "sp-application-crypto", - "sp-runtime", - "sp-std", -] - -[[package]] -name = "sp-beefy" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ - "lazy_static", "parity-scale-codec", "scale-info", - "serde", "sp-api", "sp-application-crypto", - "sp-core", - "sp-io", - "sp-mmr-primitives", "sp-runtime", "sp-std", - "strum", ] [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", "sp-api", @@ -10901,7 +10904,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "futures", "log", @@ -10919,25 +10922,22 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "futures", "log", - "parity-scale-codec", "sp-core", "sp-inherents", "sp-runtime", "sp-state-machine", - "sp-std", - "sp-version", "thiserror", ] [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "parity-scale-codec", @@ -10955,7 +10955,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "merlin", @@ -10975,10 +10975,47 @@ dependencies = [ "sp-timestamp", ] +[[package]] +name = "sp-consensus-beefy" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" +dependencies = [ + "lazy_static", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-io", + "sp-mmr-primitives", + "sp-runtime", + "sp-std", + "strum", +] + +[[package]] +name = "sp-consensus-grandpa" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" +dependencies = [ + "finality-grandpa", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-keystore", + "sp-runtime", + "sp-std", +] + [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", "scale-info", @@ -10990,7 +11027,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", "scale-info", @@ -11003,7 +11040,7 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "array-bytes 4.2.0", "base58", @@ -11046,11 +11083,11 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ - "blake2", + "blake2b_simd", "byteorder", - "digest 0.10.6", + "digest 0.10.7", "sha2 0.10.6", "sha3", "sp-std", @@ -11060,7 +11097,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "proc-macro2", "quote", @@ -11071,7 +11108,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11080,7 +11117,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "proc-macro2", "quote", @@ -11090,7 +11127,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "environmental", "parity-scale-codec", @@ -11098,28 +11135,10 @@ dependencies = [ "sp-storage", ] -[[package]] -name = "sp-finality-grandpa" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" -dependencies = [ - "finality-grandpa", - "log", - "parity-scale-codec", - "scale-info", - "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-keystore", - "sp-runtime", - "sp-std", -] - [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11134,7 +11153,7 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "bytes", "ed25519", @@ -11159,7 +11178,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "lazy_static", "sp-core", @@ -11170,7 +11189,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "futures", @@ -11187,7 +11206,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "thiserror", "zstd", @@ -11196,7 +11215,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -11214,7 +11233,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", "scale-info", @@ -11228,7 +11247,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "sp-api", "sp-core", @@ -11238,7 +11257,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "backtrace", "lazy_static", @@ -11248,7 +11267,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "rustc-hash", "serde", @@ -11258,7 +11277,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "either", "hash256-std-hasher", @@ -11280,7 +11299,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11298,7 +11317,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "Inflector", "proc-macro-crate", @@ -11310,7 +11329,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", "scale-info", @@ -11324,7 +11343,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", "scale-info", @@ -11336,7 +11355,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "hash-db", "log", @@ -11356,12 +11375,12 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" [[package]] name = "sp-storage" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11374,7 +11393,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "futures-timer", @@ -11389,7 +11408,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", "sp-std", @@ -11401,7 +11420,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "sp-api", "sp-runtime", @@ -11410,7 +11429,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "log", @@ -11426,7 +11445,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "ahash 0.8.3", "hash-db", @@ -11449,7 +11468,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11466,7 +11485,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11477,7 +11496,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -11491,7 +11510,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "parity-scale-codec", "scale-info", @@ -11740,7 +11759,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "platforms 2.0.0", ] @@ -11748,7 +11767,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11767,7 +11786,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "hyper", "log", @@ -11779,7 +11798,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "jsonrpsee", @@ -11792,7 +11811,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "jsonrpsee", "log", @@ -11811,7 +11830,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "ansi_term", "build-helper", @@ -11853,9 +11872,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.15" +version = "2.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" +checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01" dependencies = [ "proc-macro2", "quote", @@ -11876,9 +11895,9 @@ dependencies = [ [[package]] name = "system-configuration" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d75182f12f490e953596550b65ee31bda7c8e043d9386174b353bda50838c3fd" +checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" dependencies = [ "bitflags", "core-foundation", @@ -11963,7 +11982,7 @@ checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] @@ -12134,7 +12153,7 @@ checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] @@ -12186,15 +12205,15 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" +checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f" [[package]] name = "toml_edit" -version = "0.19.8" +version = "0.19.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" +checksum = "92d964908cec0d030b812013af25a0e57fddfadb1e066ecc6681d86253129d4f" dependencies = [ "indexmap", "toml_datetime", @@ -12263,7 +12282,7 @@ checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] @@ -12288,8 +12307,8 @@ dependencies = [ [[package]] name = "tracing-gum" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12299,8 +12318,8 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12355,9 +12374,9 @@ dependencies = [ [[package]] name = "trie-db" -version = "0.25.1" +version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3390c0409daaa6027d6681393316f4ccd3ff82e1590a1e4725014e3ae2bf1920" +checksum = "767abe6ffed88a1889671a102c2861ae742726f52e0a5a425b92c9fbfa7e9c85" dependencies = [ "hash-db", "hashbrown 0.13.2", @@ -12368,9 +12387,9 @@ dependencies = [ [[package]] name = "trie-root" -version = "0.17.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a36c5ca3911ed3c9a5416ee6c679042064b93fc637ded67e25f92e68d783891" +checksum = "d4ed310ef5ab98f5fa467900ed906cb9232dd5376597e00fd4cba2a449d06c0b" dependencies = [ "hash-db", ] @@ -12430,7 +12449,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#3bd809d59c31c7205a0f36c6ddcba603e43051fc" dependencies = [ "async-trait", "clap", @@ -12496,7 +12515,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ "cfg-if", - "digest 0.10.6", + "digest 0.10.7", "rand 0.8.5", "static_assertions", ] @@ -12570,9 +12589,9 @@ dependencies = [ [[package]] name = "universal-hash" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d3160b73c9a19f7e2939a2fdad446c57c1bbbbf4d919d3213ff1267a580d8b5" +checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" dependencies = [ "crypto-common", "subtle", @@ -12615,9 +12634,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.3.2" +version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dad5567ad0cf5b760e5665964bec1b47dfd077ba8a2544b513f3556d3d239a2" +checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2" dependencies = [ "getrandom 0.2.9", ] @@ -12701,9 +12720,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.85" +version = "0.2.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b6cb788c4e39112fbe1822277ef6fb3c55cd86b95cb3d3c4c1c9597e4ac74b4" +checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73" dependencies = [ "cfg-if", "wasm-bindgen-macro", @@ -12711,24 +12730,24 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.85" +version = "0.2.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35e522ed4105a9d626d885b35d62501b30d9666283a5c8be12c14a8bdafe7822" +checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb" dependencies = [ "bumpalo", "log", "once_cell", "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.35" +version = "0.4.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083abe15c5d88556b77bdf7aef403625be9e327ad37c62c4e4129af740168163" +checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e" dependencies = [ "cfg-if", "js-sys", @@ -12738,9 +12757,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.85" +version = "0.2.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "358a79a0cb89d21db8120cbfb91392335913e4890665b1a7981d9e956903b434" +checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -12748,22 +12767,22 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.85" +version = "0.2.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4783ce29f09b9d93134d41297aded3a712b7b979e9c6f28c32cb88c973a94869" +checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.85" +version = "0.2.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a901d592cafaa4d711bc324edfaff879ac700b19c3dfd60058d2b445be2691eb" +checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93" [[package]] name = "wasm-instrument" @@ -12857,7 +12876,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57d20cb3c59b788653d99541c646c561c9dd26506f25c0cebfe810659c54c6d7" dependencies = [ "downcast-rs", - "libm 0.2.6", + "libm 0.2.7", "memory_units", "num-rational", "num-traits", @@ -12923,7 +12942,7 @@ dependencies = [ "directories-next", "file-per-thread-logger", "log", - "rustix 0.36.13", + "rustix 0.36.14", "serde", "sha2 0.10.6", "toml", @@ -13003,7 +13022,7 @@ checksum = "eed41cbcbf74ce3ff6f1d07d1b707888166dc408d1a880f651268f4f7c9194b2" dependencies = [ "object 0.29.0", "once_cell", - "rustix 0.36.13", + "rustix 0.36.14", ] [[package]] @@ -13034,7 +13053,7 @@ dependencies = [ "memoffset 0.6.5", "paste", "rand 0.8.5", - "rustix 0.36.13", + "rustix 0.36.14", "wasmtime-asm-macros", "wasmtime-environ", "wasmtime-jit-debug", @@ -13055,9 +13074,9 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.62" +version = "0.3.63" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16b5f940c7edfdc6d12126d98c9ef4d1b3d470011c47c76a6581df47ad9ba721" +checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2" dependencies = [ "js-sys", "wasm-bindgen", @@ -13155,7 +13174,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "942be5bd85f072c3128396f6e5a9bfb93ca8c1939ded735d177b7bcba9a13d05" dependencies = [ "aes 0.6.0", - "aes-gcm 0.10.1", + "aes-gcm 0.10.2", "async-trait", "bincode", "block-modes", @@ -13294,7 +13313,7 @@ dependencies = [ "lazy_static", "libc", "log", - "nix 0.24.3", + "nix", "rand 0.8.5", "thiserror", "tokio", @@ -13303,8 +13322,8 @@ dependencies = [ [[package]] name = "westend-runtime" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bitvec", "frame-benchmarking", @@ -13371,9 +13390,9 @@ dependencies = [ "smallvec", "sp-api", "sp-authority-discovery", - "sp-beefy", "sp-block-builder", "sp-consensus-babe", + "sp-consensus-beefy", "sp-core", "sp-inherents", "sp-io", @@ -13395,8 +13414,8 @@ dependencies = [ [[package]] name = "westend-runtime-constants" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "frame-support", "polkadot-primitives", @@ -13420,9 +13439,9 @@ dependencies = [ [[package]] name = "wide" -version = "0.7.8" +version = "0.7.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b689b6c49d6549434bf944e6b0f39238cf63693cb7a147e9d887507fffa3b223" +checksum = "5cd0496a71f3cc6bc4bf0ed91346426a5099e93d89807e663162dc5a1069ff65" dependencies = [ "bytemuck", "safe_arch", @@ -13752,8 +13771,8 @@ dependencies = [ [[package]] name = "xcm" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "bounded-collections", "derivative", @@ -13768,8 +13787,8 @@ dependencies = [ [[package]] name = "xcm-builder" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "frame-support", "frame-system", @@ -13789,8 +13808,8 @@ dependencies = [ [[package]] name = "xcm-executor" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "environmental", "frame-benchmarking", @@ -13809,8 +13828,8 @@ dependencies = [ [[package]] name = "xcm-procedural" -version = "0.9.39-1" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.39#c22e1c4173bf6966f5d1980f4299f7abe836f0c1" +version = "0.9.41" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.41#e203bfb396ed949f102720debf32fb98166787af" dependencies = [ "Inflector", "proc-macro2", @@ -13858,7 +13877,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.16", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index a08152f9..5ab18c8c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ panic = "unwind" [workspace.dependencies] # Build deps -substrate-wasm-builder = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} +substrate-wasm-builder = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} # External (without extra features and with default disabled if necessary) base58 = {version = "0.2.0", default-features = false} @@ -71,111 +71,112 @@ peregrine-runtime = {path = "runtimes/peregrine", default-features = false} spiritnet-runtime = {path = "runtimes/spiritnet", default-features = false} # Benchmarking (with default disabled) -cumulus-pallet-session-benchmarking = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.39"} -frame-system-benchmarking = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} +cumulus-pallet-session-benchmarking = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.41"} +frame-system-benchmarking = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} # Cumulus (with default disabled) -cumulus-pallet-aura-ext = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.39"} -cumulus-pallet-dmp-queue = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.39"} -cumulus-pallet-parachain-system = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.39"} -cumulus-pallet-xcm = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.39"} -cumulus-pallet-xcmp-queue = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.39"} -cumulus-primitives-core = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.39"} -cumulus-primitives-timestamp = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.39"} -cumulus-primitives-utility = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.39"} -pallet-collator-selection = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.39"} -parachain-info = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.39"} +cumulus-pallet-aura-ext = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.41"} +cumulus-pallet-dmp-queue = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.41"} +cumulus-pallet-parachain-system = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.41"} +cumulus-pallet-xcm = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.41"} +cumulus-pallet-xcmp-queue = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.41"} +cumulus-primitives-core = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.41"} +cumulus-primitives-timestamp = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.41"} +cumulus-primitives-utility = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.41"} +pallet-collator-selection = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.41"} +parachain-info = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.41"} # Substrate (with default disabled) -frame-benchmarking = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -frame-benchmarking-cli = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -frame-executive = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -frame-support = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -frame-system = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -frame-system-rpc-runtime-api = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -frame-try-runtime = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-aura = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-authorship = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-balances = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-collective = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-democracy = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-grandpa = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-indices = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-membership = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-preimage = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-proxy = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-scheduler = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-session = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-sudo = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-timestamp = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-tips = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-transaction-payment = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-transaction-payment-rpc-runtime-api = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-treasury = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-utility = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-vesting = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -pallet-multisig = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-api = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-block-builder = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-consensus-aura = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-core = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-inherents = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-io = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-offchain = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-runtime = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-session = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-staking = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-std = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-transaction-pool = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-version = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -sp-weights = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} -try-runtime-cli = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39"} +frame-benchmarking = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +frame-benchmarking-cli = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +frame-executive = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +frame-support = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +frame-system-rpc-runtime-api = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +frame-try-runtime = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-aura = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-authorship = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-balances = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-collective = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-democracy = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-grandpa = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-indices = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-membership = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-preimage = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-proxy = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-scheduler = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-session = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-sudo = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-timestamp = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-tips = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-transaction-payment = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-transaction-payment-rpc-runtime-api = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-treasury = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-utility = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-vesting = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +pallet-multisig = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-api = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-block-builder = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-consensus-aura = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-core = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-inherents = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-io = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-offchain = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-runtime = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-session = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-staking = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-std = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-transaction-pool = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-version = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +sp-weights = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} +try-runtime-cli = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41"} # Polkadot (with default disabled) -pallet-xcm = {git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.39"} -polkadot-parachain = {git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.39"} -xcm = {git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.39"} -xcm-builder = {git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.39"} -xcm-executor = {git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.39"} +pallet-xcm = {git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.41"} +polkadot-parachain = {git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.41"} +xcm = {git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.41"} +xcm-builder = {git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.41"} +xcm-executor = {git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.41"} # Client-only (with default enabled) -cumulus-client-cli = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39"} -cumulus-client-consensus-aura = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39"} -cumulus-client-consensus-common = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39"} -cumulus-client-network = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39"} -cumulus-client-service = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39"} -cumulus-primitives-parachain-inherent = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39"} -cumulus-relay-chain-inprocess-interface = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39"} -cumulus-relay-chain-interface = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39"} -cumulus-relay-chain-minimal-node = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39"} -cumulus-relay-chain-rpc-interface = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.39"} -pallet-transaction-payment-rpc = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -polkadot-cli = {git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.39"} -polkadot-primitives = {git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.39"} -polkadot-service = {git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.39"} -sc-basic-authorship = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-chain-spec = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-cli = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-client-api = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-consensus = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-consensus-aura = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-executor = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-finality-grandpa = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-keystore = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-network = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-rpc-api = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-service = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-sysinfo = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-telemetry = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-tracing = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-transaction-pool = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sc-transaction-pool-api = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sp-blockchain = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sp-consensus = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sp-finality-grandpa = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sp-keyring = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sp-keystore = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -sp-timestamp = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -substrate-build-script-utils = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -substrate-frame-rpc-system = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} -substrate-prometheus-endpoint = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39"} +cumulus-client-cli = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.41"} +cumulus-client-consensus-aura = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.41"} +cumulus-client-consensus-common = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.41"} +cumulus-client-network = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.41"} +cumulus-client-service = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.41"} +cumulus-primitives-parachain-inherent = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.41"} +cumulus-relay-chain-inprocess-interface = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.41"} +cumulus-relay-chain-interface = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.41"} +cumulus-relay-chain-minimal-node = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.41"} +cumulus-relay-chain-rpc-interface = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.41"} +pallet-transaction-payment-rpc = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +polkadot-cli = {git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.41"} +polkadot-primitives = {git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.41"} +polkadot-service = {git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.41"} +sc-basic-authorship = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-chain-spec = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-cli = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-client-api = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-consensus = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-consensus-aura = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-executor = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-consensus-grandpa = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-keystore = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-network = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-network-sync = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-rpc-api = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-service = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-sysinfo = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-telemetry = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-tracing = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-transaction-pool = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sc-transaction-pool-api = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sp-blockchain = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sp-consensus = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sp-consensus-grandpa = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sp-keyring = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sp-keystore = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +sp-timestamp = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +substrate-build-script-utils = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +substrate-frame-rpc-system = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} +substrate-prometheus-endpoint = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41"} diff --git a/nodes/parachain/Cargo.toml b/nodes/parachain/Cargo.toml index b64cb66b..faa827c7 100644 --- a/nodes/parachain/Cargo.toml +++ b/nodes/parachain/Cargo.toml @@ -41,6 +41,7 @@ sc-client-api.workspace = true sc-consensus.workspace = true sc-executor = {workspace = true} sc-network.workspace = true +sc-network-sync.workspace = true sc-service = {workspace = true} sc-sysinfo.workspace = true sc-telemetry.workspace = true diff --git a/nodes/parachain/src/service.rs b/nodes/parachain/src/service.rs index caa7cb0a..a57aa9e9 100644 --- a/nodes/parachain/src/service.rs +++ b/nodes/parachain/src/service.rs @@ -27,12 +27,13 @@ use cumulus_client_service::{ }; use cumulus_primitives_core::ParaId; use cumulus_relay_chain_inprocess_interface::build_inprocess_relay_chain; -use cumulus_relay_chain_interface::{RelayChainError, RelayChainInterface, RelayChainResult}; +use cumulus_relay_chain_interface::{RelayChainInterface, RelayChainResult}; use cumulus_relay_chain_minimal_node::build_minimal_relay_chain_node; use polkadot_service::{CollatorPair, NativeExecutionDispatch}; use sc_consensus::ImportQueue; use sc_executor::NativeElseWasmExecutor; -use sc_network::{NetworkBlock, NetworkService}; +use sc_network::NetworkBlock; +use sc_network_sync::SyncingService; use sc_service::{Configuration, TFullBackend, TFullClient, TaskManager}; use sc_telemetry::{Telemetry, TelemetryHandle, TelemetryWorker, TelemetryWorkerHandle}; use sp_api::ConstructRuntimeApi; @@ -47,8 +48,6 @@ type Header = sp_runtime::generic::Header; -type Hash = sp_core::H256; - type ParachainExecutor = NativeElseWasmExecutor; type ParachainClient = TFullClient>; @@ -278,7 +277,7 @@ where &TaskManager, Arc, Arc>>, - Arc>, + Arc>, SyncCryptoStorePtr, bool, ParaId, @@ -302,17 +301,14 @@ where hwbench.clone(), ) .await - .map_err(|e| match e { - RelayChainError::ServiceError(polkadot_service::Error::Sub(x)) => x, - s => s.to_string().into(), - })?; + .map_err(|e| sc_service::Error::Application(Box::new(e) as Box<_>))?; let force_authoring = parachain_config.force_authoring; let validator = parachain_config.role.is_authority(); let prometheus_registry = parachain_config.prometheus_registry().cloned(); let transaction_pool = params.transaction_pool.clone(); let import_queue_service = params.import_queue.service(); - let (network, system_rpc_tx, tx_handler_controller, start_network) = + let (network, system_rpc_tx, tx_handler_controller, start_network, sync_service) = cumulus_client_service::build_network(cumulus_client_service::BuildNetworkParams { parachain_config: ¶chain_config, client: client.clone(), @@ -341,6 +337,7 @@ where sc_service::spawn_tasks(sc_service::SpawnTasksParams { rpc_builder, + sync_service: sync_service.clone(), client: client.clone(), transaction_pool: transaction_pool.clone(), task_manager: &mut task_manager, @@ -367,8 +364,8 @@ where } let announce_block = { - let network = network.clone(); - Arc::new(move |hash, data| network.announce_block(hash, data)) + let sync = sync_service.clone(); + Arc::new(move |hash, data| sync.announce_block(hash, data)) }; let relay_chain_slot_duration = Duration::from_secs(6); @@ -386,7 +383,7 @@ where &task_manager, relay_chain_interface.clone(), transaction_pool, - network, + sync_service, params.keystore_container.sync_keystore(), force_authoring, id, @@ -525,7 +522,7 @@ fn build_consensus( task_manager: &TaskManager, relay_chain_interface: Arc, transaction_pool: Arc>>, - sync_oracle: Arc>, + sync_oracle: Arc>, keystore: SyncCryptoStorePtr, force_authoring: bool, id: ParaId, diff --git a/nodes/standalone/Cargo.toml b/nodes/standalone/Cargo.toml index bb1ccdb0..bd2907c3 100644 --- a/nodes/standalone/Cargo.toml +++ b/nodes/standalone/Cargo.toml @@ -38,7 +38,7 @@ sc-client-api.workspace = true sc-consensus.workspace = true sc-consensus-aura.workspace = true sc-executor = {workspace = true} -sc-finality-grandpa.workspace = true +sc-consensus-grandpa.workspace = true sc-keystore.workspace = true sc-service = {workspace = true} sc-telemetry.workspace = true @@ -49,7 +49,7 @@ sp-block-builder = {workspace = true, features = ["std"]} sp-blockchain.workspace = true sp-consensus-aura = {workspace = true, features = ["std"]} sp-core = {workspace = true, features = ["std"]} -sp-finality-grandpa = {workspace = true, features = ["std"]} +sp-consensus-grandpa = {workspace = true, features = ["std"]} sp-inherents = {workspace = true, features = ["std"]} sp-io = {workspace = true, features = ["std"]} sp-keyring.workspace = true diff --git a/nodes/standalone/src/chain_spec.rs b/nodes/standalone/src/chain_spec.rs index 69700387..dba18da7 100644 --- a/nodes/standalone/src/chain_spec.rs +++ b/nodes/standalone/src/chain_spec.rs @@ -26,8 +26,8 @@ use runtime_common::{AccountId, AccountPublic}; use hex_literal::hex; use sc_service::{self, ChainType, Properties}; use sp_consensus_aura::ed25519::AuthorityId as AuraId; +use sp_consensus_grandpa::AuthorityId as GrandpaId; use sp_core::{crypto::UncheckedInto, ed25519, sr25519, Pair, Public}; -use sp_finality_grandpa::AuthorityId as GrandpaId; use sp_runtime::traits::IdentifyAccount; // Note this is the URL for the telemetry server diff --git a/nodes/standalone/src/command.rs b/nodes/standalone/src/command.rs index 9128925a..2213e2f5 100644 --- a/nodes/standalone/src/command.rs +++ b/nodes/standalone/src/command.rs @@ -133,7 +133,7 @@ pub fn run() -> sc_cli::Result<()> { .. } = service::new_partial(&config)?; let aux_revert = Box::new(move |client, _, blocks| { - sc_finality_grandpa::revert(client, blocks)?; + sc_consensus_grandpa::revert(client, blocks)?; Ok(()) }); Ok((cmd.run(client, backend, Some(aux_revert)), task_manager)) diff --git a/nodes/standalone/src/service.rs b/nodes/standalone/src/service.rs index 0203f0c8..eaa3efb1 100644 --- a/nodes/standalone/src/service.rs +++ b/nodes/standalone/src/service.rs @@ -21,12 +21,13 @@ use sc_client_api::BlockBackend; use sc_consensus_aura::{ImportQueueParams, SlotProportion, StartAuraParams}; +use sc_consensus_grandpa::SharedVoterState; pub use sc_executor::NativeElseWasmExecutor; -use sc_finality_grandpa::SharedVoterState; use sc_keystore::LocalKeystore; use sc_service::{error::Error as ServiceError, Configuration, TaskManager, WarpSyncParams}; use sc_telemetry::{Telemetry, TelemetryWorker}; use sp_consensus_aura::ed25519::AuthorityPair as AuraPair; + use std::{sync::Arc, time::Duration}; use mashnet_node_runtime::{self, opaque::Block, RuntimeApi}; @@ -57,8 +58,8 @@ type PartialComponents = sc_service::PartialComponents< sc_consensus::DefaultImportQueue, sc_transaction_pool::FullPool, ( - sc_finality_grandpa::GrandpaBlockImport, - sc_finality_grandpa::LinkHalf, + sc_consensus_grandpa::GrandpaBlockImport, + sc_consensus_grandpa::LinkHalf, Option, ), >; @@ -108,7 +109,7 @@ pub fn new_partial(config: &Configuration) -> Result), select_chain.clone(), @@ -181,7 +182,7 @@ pub fn new_full(mut config: Configuration) -> Result } }; } - let grandpa_protocol_name = sc_finality_grandpa::protocol_standard_name( + let grandpa_protocol_name = sc_consensus_grandpa::protocol_standard_name( &client.block_hash(0).ok().flatten().expect("Genesis block exists; qed"), &config.chain_spec, ); @@ -189,16 +190,16 @@ pub fn new_full(mut config: Configuration) -> Result config .network .extra_sets - .push(sc_finality_grandpa::grandpa_peers_set_config( + .push(sc_consensus_grandpa::grandpa_peers_set_config( grandpa_protocol_name.clone(), )); - let warp_sync = Arc::new(sc_finality_grandpa::warp_proof::NetworkProvider::new( + let warp_sync = Arc::new(sc_consensus_grandpa::warp_proof::NetworkProvider::new( backend.clone(), grandpa_link.shared_authority_set().clone(), Vec::default(), )); - let (network, system_rpc_tx, tx_handler_controller, network_starter) = + let (network, system_rpc_tx, tx_handler_controller, network_starter, sync) = sc_service::build_network(sc_service::BuildNetworkParams { config: &config, client: client.clone(), @@ -237,6 +238,7 @@ pub fn new_full(mut config: Configuration) -> Result let _rpc_handlers = sc_service::spawn_tasks(sc_service::SpawnTasksParams { network: network.clone(), client: client.clone(), + sync_service: sync.clone(), keystore: keystore_container.sync_keystore(), task_manager: &mut task_manager, transaction_pool: transaction_pool.clone(), @@ -278,8 +280,8 @@ pub fn new_full(mut config: Configuration) -> Result force_authoring, backoff_authoring_blocks, keystore: keystore_container.sync_keystore(), - sync_oracle: network.clone(), - justification_sync_link: network.clone(), + sync_oracle: sync.clone(), + justification_sync_link: sync.clone(), block_proposal_slot_portion: SlotProportion::new(2f32 / 3f32), max_block_proposal_slot_portion: None, telemetry: telemetry.as_ref().map(|x| x.handle()), @@ -302,7 +304,7 @@ pub fn new_full(mut config: Configuration) -> Result None }; - let grandpa_config = sc_finality_grandpa::Config { + let grandpa_config = sc_consensus_grandpa::Config { // FIXME #1578 make this available through chainspec gossip_duration: Duration::from_millis(333), justification_period: 512, @@ -320,11 +322,12 @@ pub fn new_full(mut config: Configuration) -> Result // and vote data availability than the observer. The observer has not // been tested extensively yet and having most nodes in a network run it // could lead to finality stalls. - let grandpa_config = sc_finality_grandpa::GrandpaParams { + let grandpa_config = sc_consensus_grandpa::GrandpaParams { config: grandpa_config, link: grandpa_link, + sync, network, - voting_rule: sc_finality_grandpa::VotingRulesBuilder::default().build(), + voting_rule: sc_consensus_grandpa::VotingRulesBuilder::default().build(), prometheus_registry, shared_voter_state: SharedVoterState::empty(), telemetry: telemetry.as_ref().map(|x| x.handle()), @@ -335,7 +338,7 @@ pub fn new_full(mut config: Configuration) -> Result task_manager.spawn_essential_handle().spawn_blocking( "grandpa-voter", None, - sc_finality_grandpa::run_grandpa_voter(grandpa_config)?, + sc_consensus_grandpa::run_grandpa_voter(grandpa_config)?, ); } diff --git a/pallets/attestation/src/lib.rs b/pallets/attestation/src/lib.rs index 5771e1c1..a708105e 100644 --- a/pallets/attestation/src/lib.rs +++ b/pallets/attestation/src/lib.rs @@ -146,7 +146,6 @@ pub mod pallet { } #[pallet::pallet] - #[pallet::generate_store(pub(super) trait Store)] #[pallet::storage_version(STORAGE_VERSION)] pub struct Pallet(_); diff --git a/pallets/ctype/src/default_weights.rs b/pallets/ctype/src/default_weights.rs index f32e2a5d..0c46cf31 100644 --- a/pallets/ctype/src/default_weights.rs +++ b/pallets/ctype/src/default_weights.rs @@ -69,7 +69,7 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 48_042 nanoseconds. Weight::from_parts(48_883_000, 7777) // Standard Error: 1 - .saturating_add(Weight::from_ref_time(1_195).saturating_mul(l.into())) + .saturating_add(Weight::from_parts(1_195, 0).saturating_mul(l.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -100,7 +100,7 @@ impl WeightInfo for () { // Minimum execution time: 48_042 nanoseconds. Weight::from_parts(48_883_000, 7777) // Standard Error: 1 - .saturating_add(Weight::from_ref_time(1_195).saturating_mul(l.into())) + .saturating_add(Weight::from_parts(1_195, 0).saturating_mul(l.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } diff --git a/pallets/ctype/src/lib.rs b/pallets/ctype/src/lib.rs index 6e05fbbf..1f55530a 100644 --- a/pallets/ctype/src/lib.rs +++ b/pallets/ctype/src/lib.rs @@ -102,7 +102,6 @@ pub mod pallet { } #[pallet::pallet] - #[pallet::generate_store(pub(super) trait Store)] #[pallet::storage_version(STORAGE_VERSION)] pub struct Pallet(_); diff --git a/pallets/delegation/src/default_weights.rs b/pallets/delegation/src/default_weights.rs index 092be70e..543ea1a2 100644 --- a/pallets/delegation/src/default_weights.rs +++ b/pallets/delegation/src/default_weights.rs @@ -109,11 +109,11 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 15_125 nanoseconds. Weight::from_parts(8_147_420, 2555) // Standard Error: 21_442 - .saturating_add(Weight::from_ref_time(8_618_758).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(8_618_758, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into()))) - .saturating_add(Weight::from_proof_size(34675).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(0,34675).saturating_mul(r.into())) } /// Storage: Delegation DelegationNodes (r:6 w:1) /// Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) @@ -128,13 +128,13 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 17_630 nanoseconds. Weight::from_parts(15_995_847, 37230) // Standard Error: 18_648 - .saturating_add(Weight::from_ref_time(21_059).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(21_059, 0).saturating_mul(r.into())) // Standard Error: 18_648 - .saturating_add(Weight::from_ref_time(3_035_775).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(3_035_775, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes(1_u64)) - .saturating_add(Weight::from_proof_size(34675).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(0,34675).saturating_mul(c.into())) } /// Storage: Delegation DelegationNodes (r:6 w:6) /// Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) @@ -150,12 +150,12 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 38_077 nanoseconds. Weight::from_parts(26_891_977, 39837) // Standard Error: 40_521 - .saturating_add(Weight::from_ref_time(15_313_221).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(15_313_221, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into()))) - .saturating_add(Weight::from_proof_size(34675).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(0, 34675).saturating_mul(r.into())) } /// Storage: Delegation DelegationNodes (r:6 w:6) /// Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) @@ -171,12 +171,12 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 33_920 nanoseconds. Weight::from_parts(22_100_902, 37282) // Standard Error: 41_250 - .saturating_add(Weight::from_ref_time(15_249_932).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(15_249_932, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into()))) - .saturating_add(Weight::from_proof_size(34675).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(0, 34675).saturating_mul(r.into())) } /// Storage: Delegation DelegationNodes (r:1 w:0) /// Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) @@ -200,10 +200,10 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 6_421 nanoseconds. Weight::from_parts(4_790_851, 34675) // Standard Error: 12_806 - .saturating_add(Weight::from_ref_time(2_552_728).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(2_552_728, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) - .saturating_add(Weight::from_proof_size(34675).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(0, 34675).saturating_mul(c.into())) } /// Storage: Delegation DelegationNodes (r:6 w:0) /// Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) @@ -215,10 +215,10 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 6_283 nanoseconds. Weight::from_parts(4_764_126, 34675) // Standard Error: 12_366 - .saturating_add(Weight::from_ref_time(2_603_091).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(2_603_091, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) - .saturating_add(Weight::from_proof_size(34675).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(0, 34675).saturating_mul(c.into())) } /// Storage: Delegation DelegationNodes (r:1 w:1) /// Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) @@ -293,11 +293,11 @@ impl WeightInfo for () { // Minimum execution time: 15_125 nanoseconds. Weight::from_parts(8_147_420, 2555) // Standard Error: 21_442 - .saturating_add(Weight::from_ref_time(8_618_758).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(8_618_758, 0).saturating_mul(r.into())) .saturating_add(RocksDbWeight::get().reads(1_u64)) .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(r.into()))) - .saturating_add(Weight::from_proof_size(34675).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(34675, 0).saturating_mul(r.into())) } /// Storage: Delegation DelegationNodes (r:6 w:1) /// Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) @@ -312,13 +312,13 @@ impl WeightInfo for () { // Minimum execution time: 17_630 nanoseconds. Weight::from_parts(15_995_847, 37230) // Standard Error: 18_648 - .saturating_add(Weight::from_ref_time(21_059).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(21_059, 0).saturating_mul(r.into())) // Standard Error: 18_648 - .saturating_add(Weight::from_ref_time(3_035_775).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(3_035_775, 0).saturating_mul(c.into())) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(RocksDbWeight::get().writes(1_u64)) - .saturating_add(Weight::from_proof_size(34675).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(0, 34675).saturating_mul(c.into())) } /// Storage: Delegation DelegationNodes (r:6 w:6) /// Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) @@ -334,12 +334,12 @@ impl WeightInfo for () { // Minimum execution time: 38_077 nanoseconds. Weight::from_parts(26_891_977, 39837) // Standard Error: 40_521 - .saturating_add(Weight::from_ref_time(15_313_221).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(15_313_221, 0).saturating_mul(r.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(RocksDbWeight::get().writes(3_u64)) .saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(r.into()))) - .saturating_add(Weight::from_proof_size(34675).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(0, 34675).saturating_mul(r.into())) } /// Storage: Delegation DelegationNodes (r:6 w:6) /// Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) @@ -355,12 +355,12 @@ impl WeightInfo for () { // Minimum execution time: 33_920 nanoseconds. Weight::from_parts(22_100_902, 37282) // Standard Error: 41_250 - .saturating_add(Weight::from_ref_time(15_249_932).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(15_249_932, 0).saturating_mul(r.into())) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(RocksDbWeight::get().writes(3_u64)) .saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(r.into()))) - .saturating_add(Weight::from_proof_size(34675).saturating_mul(r.into())) + .saturating_add(Weight::from_parts(0, 34675).saturating_mul(r.into())) } /// Storage: Delegation DelegationNodes (r:1 w:0) /// Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) @@ -384,10 +384,10 @@ impl WeightInfo for () { // Minimum execution time: 6_421 nanoseconds. Weight::from_parts(4_790_851, 34675) // Standard Error: 12_806 - .saturating_add(Weight::from_ref_time(2_552_728).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(2_552_728, 0).saturating_mul(c.into())) .saturating_add(RocksDbWeight::get().reads(1_u64)) .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(c.into()))) - .saturating_add(Weight::from_proof_size(34675).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(0, 34675).saturating_mul(c.into())) } /// Storage: Delegation DelegationNodes (r:6 w:0) /// Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) @@ -399,10 +399,10 @@ impl WeightInfo for () { // Minimum execution time: 6_283 nanoseconds. Weight::from_parts(4_764_126, 34675) // Standard Error: 12_366 - .saturating_add(Weight::from_ref_time(2_603_091).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(2_603_091, 0).saturating_mul(c.into())) .saturating_add(RocksDbWeight::get().reads(1_u64)) .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(c.into()))) - .saturating_add(Weight::from_proof_size(34675).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(0, 34675).saturating_mul(c.into())) } /// Storage: Delegation DelegationNodes (r:1 w:1) /// Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) diff --git a/pallets/delegation/src/lib.rs b/pallets/delegation/src/lib.rs index 118df1a9..a5e7a020 100644 --- a/pallets/delegation/src/lib.rs +++ b/pallets/delegation/src/lib.rs @@ -182,7 +182,6 @@ pub mod pallet { } #[pallet::pallet] - #[pallet::generate_store(pub(super) trait Store)] #[pallet::storage_version(STORAGE_VERSION)] pub struct Pallet(_); diff --git a/pallets/did/src/default_weights.rs b/pallets/did/src/default_weights.rs index ba15d854..10430b15 100644 --- a/pallets/did/src/default_weights.rs +++ b/pallets/did/src/default_weights.rs @@ -110,9 +110,9 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 85_129 nanoseconds. Weight::from_parts(80_652_158, 12524) // Standard Error: 47_317 - .saturating_add(Weight::from_ref_time(724_957).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(724_957, 0).saturating_mul(n.into())) // Standard Error: 18_294 - .saturating_add(Weight::from_ref_time(6_032_689).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(6_032_689, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) @@ -136,9 +136,9 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 86_955 nanoseconds. Weight::from_parts(77_165_823, 12524) // Standard Error: 44_838 - .saturating_add(Weight::from_ref_time(982_121).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(982_121, 0).saturating_mul(n.into())) // Standard Error: 17_335 - .saturating_add(Weight::from_ref_time(6_564_601).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(6_564_601, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) @@ -162,9 +162,9 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 83_054 nanoseconds. Weight::from_parts(82_503_872, 12524) // Standard Error: 63_326 - .saturating_add(Weight::from_ref_time(618_751).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(618_751, 0).saturating_mul(n.into())) // Standard Error: 24_483 - .saturating_add(Weight::from_ref_time(5_746_716).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(5_746_716, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) @@ -185,12 +185,12 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 15_346 nanoseconds. Weight::from_parts(17_226_638, 7314) // Standard Error: 19_165 - .saturating_add(Weight::from_ref_time(921_753).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(921_753, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) - .saturating_add(Weight::from_proof_size(3090).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(0, 3090).saturating_mul(c.into())) } /// Storage: Did Did (r:1 w:1) /// Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) @@ -208,12 +208,12 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 17_363 nanoseconds. Weight::from_parts(18_240_688, 7314) // Standard Error: 5_930 - .saturating_add(Weight::from_ref_time(928_602).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(928_602, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes(3_u64)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) - .saturating_add(Weight::from_proof_size(3090).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(0, 3090).saturating_mul(c.into())) } /// Storage: Did Did (r:1 w:1) /// Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) @@ -607,7 +607,7 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 37_516 nanoseconds. Weight::from_parts(37_912_000, 4787) // Standard Error: 1 - .saturating_add(Weight::from_ref_time(2_150).saturating_mul(l.into())) + .saturating_add(Weight::from_parts(2_150, 0).saturating_mul(l.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) } /// Storage: Did Did (r:1 w:0) @@ -620,7 +620,7 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 36_395 nanoseconds. Weight::from_parts(36_951_000, 4787) // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_366).saturating_mul(l.into())) + .saturating_add(Weight::from_parts(1_366, 0).saturating_mul(l.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) } /// Storage: Did Did (r:1 w:0) @@ -633,7 +633,7 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 32_273 nanoseconds. Weight::from_parts(33_274_000, 4787) // Standard Error: 0 - .saturating_add(Weight::from_ref_time(979).saturating_mul(l.into())) + .saturating_add(Weight::from_parts(979, 0).saturating_mul(l.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) } /// Storage: Did Did (r:1 w:1) @@ -687,9 +687,9 @@ impl WeightInfo for () { // Minimum execution time: 85_129 nanoseconds. Weight::from_parts(80_652_158, 12524) // Standard Error: 47_317 - .saturating_add(Weight::from_ref_time(724_957).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(724_957, 0).saturating_mul(n.into())) // Standard Error: 18_294 - .saturating_add(Weight::from_ref_time(6_032_689).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(6_032_689, 0).saturating_mul(c.into())) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) .saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(c.into()))) @@ -713,9 +713,9 @@ impl WeightInfo for () { // Minimum execution time: 86_955 nanoseconds. Weight::from_parts(77_165_823, 12524) // Standard Error: 44_838 - .saturating_add(Weight::from_ref_time(982_121).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(982_121, 0).saturating_mul(n.into())) // Standard Error: 17_335 - .saturating_add(Weight::from_ref_time(6_564_601).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(6_564_601, 0).saturating_mul(c.into())) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) .saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(c.into()))) @@ -739,9 +739,9 @@ impl WeightInfo for () { // Minimum execution time: 83_054 nanoseconds. Weight::from_parts(82_503_872, 12524) // Standard Error: 63_326 - .saturating_add(Weight::from_ref_time(618_751).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(618_751, 0).saturating_mul(n.into())) // Standard Error: 24_483 - .saturating_add(Weight::from_ref_time(5_746_716).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(5_746_716, 0).saturating_mul(c.into())) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) .saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(c.into()))) @@ -762,12 +762,12 @@ impl WeightInfo for () { // Minimum execution time: 15_346 nanoseconds. Weight::from_parts(17_226_638, 7314) // Standard Error: 19_165 - .saturating_add(Weight::from_ref_time(921_753).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(921_753, 0).saturating_mul(c.into())) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(RocksDbWeight::get().writes(3_u64)) .saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(c.into()))) - .saturating_add(Weight::from_proof_size(3090).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(0, 3090).saturating_mul(c.into())) } /// Storage: Did Did (r:1 w:1) /// Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) @@ -785,12 +785,12 @@ impl WeightInfo for () { // Minimum execution time: 17_363 nanoseconds. Weight::from_parts(18_240_688, 7314) // Standard Error: 5_930 - .saturating_add(Weight::from_ref_time(928_602).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(928_602, 0).saturating_mul(c.into())) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(RocksDbWeight::get().writes(3_u64)) .saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(c.into()))) - .saturating_add(Weight::from_proof_size(3090).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(0, 3090).saturating_mul(c.into())) } /// Storage: Did Did (r:1 w:1) /// Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) @@ -1184,7 +1184,7 @@ impl WeightInfo for () { // Minimum execution time: 37_516 nanoseconds. Weight::from_parts(37_912_000, 4787) // Standard Error: 1 - .saturating_add(Weight::from_ref_time(2_150).saturating_mul(l.into())) + .saturating_add(Weight::from_parts(2_150, 0).saturating_mul(l.into())) .saturating_add(RocksDbWeight::get().reads(1_u64)) } /// Storage: Did Did (r:1 w:0) @@ -1197,7 +1197,7 @@ impl WeightInfo for () { // Minimum execution time: 36_395 nanoseconds. Weight::from_parts(36_951_000, 4787) // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_366).saturating_mul(l.into())) + .saturating_add(Weight::from_parts(1_366, 0).saturating_mul(l.into())) .saturating_add(RocksDbWeight::get().reads(1_u64)) } /// Storage: Did Did (r:1 w:0) @@ -1210,7 +1210,7 @@ impl WeightInfo for () { // Minimum execution time: 32_273 nanoseconds. Weight::from_parts(33_274_000, 4787) // Standard Error: 0 - .saturating_add(Weight::from_ref_time(979).saturating_mul(l.into())) + .saturating_add(Weight::from_parts(979, 0).saturating_mul(l.into())) .saturating_add(RocksDbWeight::get().reads(1_u64)) } /// Storage: Did Did (r:1 w:1) diff --git a/pallets/did/src/lib.rs b/pallets/did/src/lib.rs index e66cef4a..9a41c1e5 100644 --- a/pallets/did/src/lib.rs +++ b/pallets/did/src/lib.rs @@ -299,7 +299,6 @@ pub mod pallet { } #[pallet::pallet] - #[pallet::generate_store(pub(super) trait Store)] #[pallet::storage_version(STORAGE_VERSION)] pub struct Pallet(_); diff --git a/pallets/pallet-did-lookup/src/lib.rs b/pallets/pallet-did-lookup/src/lib.rs index c71e5946..47e813f5 100644 --- a/pallets/pallet-did-lookup/src/lib.rs +++ b/pallets/pallet-did-lookup/src/lib.rs @@ -113,7 +113,6 @@ pub mod pallet { } #[pallet::pallet] - #[pallet::generate_store(pub(super) trait Store)] #[pallet::storage_version(STORAGE_VERSION)] pub struct Pallet(_); diff --git a/pallets/pallet-inflation/src/default_weights.rs b/pallets/pallet-inflation/src/default_weights.rs index 04bb2299..509327fc 100644 --- a/pallets/pallet-inflation/src/default_weights.rs +++ b/pallets/pallet-inflation/src/default_weights.rs @@ -73,7 +73,7 @@ impl WeightInfo for SubstrateWeight { // Measured: `0` // Estimated: `0` // Minimum execution time: 114 nanoseconds. - Weight::from_ref_time(139_000) + Weight::from_parts(139_000, 0) } } @@ -95,6 +95,6 @@ impl WeightInfo for () { // Measured: `0` // Estimated: `0` // Minimum execution time: 114 nanoseconds. - Weight::from_ref_time(139_000) + Weight::from_parts(139_000, 0) } } diff --git a/pallets/pallet-inflation/src/lib.rs b/pallets/pallet-inflation/src/lib.rs index f05a132f..a7447224 100644 --- a/pallets/pallet-inflation/src/lib.rs +++ b/pallets/pallet-inflation/src/lib.rs @@ -81,7 +81,6 @@ pub mod pallet { } #[pallet::pallet] - #[pallet::generate_store(pub(super) trait Store)] #[pallet::storage_version(STORAGE_VERSION)] pub struct Pallet(_); diff --git a/pallets/pallet-web3-names/src/default_weights.rs b/pallets/pallet-web3-names/src/default_weights.rs index 4c976d1f..67cf4c39 100644 --- a/pallets/pallet-web3-names/src/default_weights.rs +++ b/pallets/pallet-web3-names/src/default_weights.rs @@ -78,7 +78,7 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 19_822 nanoseconds. Weight::from_parts(21_345_315, 10299) // Standard Error: 17_787 - .saturating_add(Weight::from_ref_time(23_241).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(23_241, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(4_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -111,7 +111,7 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 16_811 nanoseconds. Weight::from_parts(18_600_543, 5219) // Standard Error: 15_740 - .saturating_add(Weight::from_ref_time(12_826).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(12_826, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(2_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -131,7 +131,7 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 18_069 nanoseconds. Weight::from_parts(19_324_271, 7743) // Standard Error: 12_698 - .saturating_add(Weight::from_ref_time(62_295).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(62_295, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(4_u64)) } @@ -145,7 +145,7 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 7_796 nanoseconds. Weight::from_parts(8_240_564, 2524) // Standard Error: 5_757 - .saturating_add(Weight::from_ref_time(47_283).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(47_283, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(1_u64)) .saturating_add(T::DbWeight::get().writes(1_u64)) } @@ -197,7 +197,7 @@ impl WeightInfo for () { // Minimum execution time: 19_822 nanoseconds. Weight::from_parts(21_345_315, 10299) // Standard Error: 17_787 - .saturating_add(Weight::from_ref_time(23_241).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(23_241, 0).saturating_mul(n.into())) .saturating_add(RocksDbWeight::get().reads(4_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } @@ -230,7 +230,7 @@ impl WeightInfo for () { // Minimum execution time: 16_811 nanoseconds. Weight::from_parts(18_600_543, 5219) // Standard Error: 15_740 - .saturating_add(Weight::from_ref_time(12_826).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(12_826, 0).saturating_mul(n.into())) .saturating_add(RocksDbWeight::get().reads(2_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } @@ -250,7 +250,7 @@ impl WeightInfo for () { // Minimum execution time: 18_069 nanoseconds. Weight::from_parts(19_324_271, 7743) // Standard Error: 12_698 - .saturating_add(Weight::from_ref_time(62_295).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(62_295, 0).saturating_mul(n.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(4_u64)) } @@ -264,7 +264,7 @@ impl WeightInfo for () { // Minimum execution time: 7_796 nanoseconds. Weight::from_parts(8_240_564, 2524) // Standard Error: 5_757 - .saturating_add(Weight::from_ref_time(47_283).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(47_283, 0).saturating_mul(n.into())) .saturating_add(RocksDbWeight::get().reads(1_u64)) .saturating_add(RocksDbWeight::get().writes(1_u64)) } diff --git a/pallets/pallet-web3-names/src/lib.rs b/pallets/pallet-web3-names/src/lib.rs index d6ed7c4a..efe16623 100644 --- a/pallets/pallet-web3-names/src/lib.rs +++ b/pallets/pallet-web3-names/src/lib.rs @@ -73,7 +73,6 @@ pub mod pallet { pub type BalanceOf = as Currency>>::Balance; #[pallet::pallet] - #[pallet::generate_store(pub(super) trait Store)] #[pallet::storage_version(STORAGE_VERSION)] pub struct Pallet(_); diff --git a/pallets/parachain-staking/src/default_weights.rs b/pallets/parachain-staking/src/default_weights.rs index 7be6bcee..11dc1bd1 100644 --- a/pallets/parachain-staking/src/default_weights.rs +++ b/pallets/parachain-staking/src/default_weights.rs @@ -125,8 +125,8 @@ impl WeightInfo for SubstrateWeight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_428 nanoseconds. - Weight::from_ref_time(1_597_000) + // Minimum execution time: 66_227 nanoseconds. + Weight::from_parts(1_597_000, 0) .saturating_add(T::DbWeight::get().writes(1_u64)) } /// Storage: ParachainStaking CandidatePool (r:76 w:0) @@ -147,22 +147,22 @@ impl WeightInfo for SubstrateWeight { /// The range of component `m` is `[0, 35]`. fn set_inflation(n: u32, m: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `0 + n * (3741 ±0) + m * (7573 ±0)` - // Estimated: `371694 + n * (70593 ±0) + m * (129441 ±2_167)` - // Minimum execution time: 471_938 nanoseconds. + // Measured: `0 + n * (3647 ±0) + m * (7587 ±0)` + // Estimated: `383346 + n * (77565 ±0) + m * (151620 ±65_757)` + // Minimum execution time: 9_013_393 nanoseconds. Weight::from_parts(486_001_000, 371694) - // Standard Error: 4_379_278 - .saturating_add(Weight::from_ref_time(110_323_738).saturating_mul(n.into())) - // Standard Error: 9_402_215 - .saturating_add(Weight::from_ref_time(201_177_282).saturating_mul(m.into())) + // Standard Error: 4_266_402_895 + .saturating_add(Weight::from_parts(110_323_738, 0).saturating_mul(n.into())) + // Standard Error: 9_142_291_918 + .saturating_add(Weight::from_parts(201_177_282, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(152_u64)) .saturating_add(T::DbWeight::get().reads((27_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((51_u64).saturating_mul(m.into()))) .saturating_add(T::DbWeight::get().writes(145_u64)) .saturating_add(T::DbWeight::get().writes((25_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((51_u64).saturating_mul(m.into()))) - .saturating_add(Weight::from_proof_size(70593).saturating_mul(n.into())) - .saturating_add(Weight::from_proof_size(129441).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(0, 70593).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(0, 129441).saturating_mul(m.into())) } /// Storage: ParachainStaking MaxSelectedCandidates (r:1 w:1) /// Proof: ParachainStaking MaxSelectedCandidates (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) @@ -181,13 +181,13 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 22_719 nanoseconds. Weight::from_parts(25_188_000, 9388) // Standard Error: 20_395 - .saturating_add(Weight::from_ref_time(2_348_989).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(2_348_989, 0).saturating_mul(n.into())) // Standard Error: 45_143 - .saturating_add(Weight::from_ref_time(231_173).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(231_173,0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes(2_u64)) - .saturating_add(Weight::from_proof_size(3554).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(0, 3554).saturating_mul(n.into())) } /// Storage: ParachainStaking Round (r:1 w:1) /// Proof: ParachainStaking Round (max_values: Some(1), max_size: Some(20), added: 515, mode: MaxEncodedLen) @@ -232,20 +232,20 @@ impl WeightInfo for SubstrateWeight { /// The range of component `m` is `[0, 35]`. fn force_remove_candidate(n: u32, m: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `0 + n * (397 ±0) + m * (2335 ±0)` - // Estimated: `116648 + m * (16172 ±0) + n * (408 ±3)` - // Minimum execution time: 92_721 nanoseconds. + // Measured: `0 + n * (435 ±0) + m * (2388 ±0)` + // Estimated: `116721 + n * (372 ±138) + m * (16221 ±300)` + // Minimum execution time: 3_973_174 nanoseconds. Weight::from_parts(95_409_000, 116648) - // Standard Error: 20_457 - .saturating_add(Weight::from_ref_time(647_332).saturating_mul(n.into())) - // Standard Error: 45_383 - .saturating_add(Weight::from_ref_time(18_774_487).saturating_mul(m.into())) + // Standard Error: 300_977_057 + .saturating_add(Weight::from_parts(647_332, 0).saturating_mul(n.into())) + // Standard Error: 650_450_082 + .saturating_add(Weight::from_parts(18_774_487, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(29_u64)) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(m.into()))) .saturating_add(T::DbWeight::get().writes(10_u64)) .saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(m.into()))) - .saturating_add(Weight::from_proof_size(16172).saturating_mul(m.into())) - .saturating_add(Weight::from_proof_size(408).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(0, 16172).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(0, 408).saturating_mul(m.into())) } /// Storage: ParachainStaking CandidatePool (r:1 w:1) /// Proof: ParachainStaking CandidatePool (max_values: None, max_size: Some(1790), added: 4265, mode: MaxEncodedLen) @@ -276,12 +276,12 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 50_529 nanoseconds. Weight::from_parts(12_449_184, 21571) // Standard Error: 6_788 - .saturating_add(Weight::from_ref_time(656_014).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(656_014, 0).saturating_mul(n.into())) // Standard Error: 14_097 - .saturating_add(Weight::from_ref_time(1_279_959).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_279_959, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(10_u64)) .saturating_add(T::DbWeight::get().writes(7_u64)) - .saturating_add(Weight::from_proof_size(15).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(0, 15).saturating_mul(m.into())) } /// Storage: ParachainStaking CandidatePool (r:17 w:1) /// Proof: ParachainStaking CandidatePool (max_values: None, max_size: Some(1790), added: 4265, mode: MaxEncodedLen) @@ -302,9 +302,9 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 72_683 nanoseconds. Weight::from_parts(33_415_490, 78143) // Standard Error: 14_687 - .saturating_add(Weight::from_ref_time(661_837).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(661_837, 0).saturating_mul(n.into())) // Standard Error: 23_818 - .saturating_add(Weight::from_ref_time(1_550_824).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_550_824, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(21_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -325,9 +325,9 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 32_109 nanoseconds. Weight::from_parts(14_421_741, 13653) // Standard Error: 6_708 - .saturating_add(Weight::from_ref_time(340_784).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(340_784, 0).saturating_mul(n.into())) // Standard Error: 10_878 - .saturating_add(Weight::from_ref_time(861_838).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(861_838, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(5_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -366,15 +366,15 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 44_856 nanoseconds. Weight::from_parts(46_295_000, 25226) // Standard Error: 19_258 - .saturating_add(Weight::from_ref_time(461_761).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(461_761, 0).saturating_mul(n.into())) // Standard Error: 42_175 - .saturating_add(Weight::from_ref_time(18_350_882).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(18_350_882, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(12_u64)) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(m.into()))) .saturating_add(T::DbWeight::get().writes(8_u64)) .saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(m.into()))) - .saturating_add(Weight::from_proof_size(354).saturating_mul(n.into())) - .saturating_add(Weight::from_proof_size(14078).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(354 , 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(14078, 0).saturating_mul(m.into())) } /// Storage: ParachainStaking CandidatePool (r:1 w:1) /// Proof: ParachainStaking CandidatePool (max_values: None, max_size: Some(1790), added: 4265, mode: MaxEncodedLen) @@ -410,11 +410,11 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 54_562 nanoseconds. Weight::from_parts(3_255_828, 27204) // Standard Error: 6_500 - .saturating_add(Weight::from_ref_time(703_655).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(703_655, 0).saturating_mul(n.into())) // Standard Error: 13_494 - .saturating_add(Weight::from_ref_time(1_460_642).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_460_642, 0).saturating_mul(m.into())) // Standard Error: 49_986 - .saturating_add(Weight::from_ref_time(1_058_323).saturating_mul(u.into())) + .saturating_add(Weight::from_parts(1_058_323, 0).saturating_mul(u.into())) .saturating_add(T::DbWeight::get().reads(12_u64)) .saturating_add(T::DbWeight::get().writes(8_u64)) } @@ -445,9 +445,9 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 41_900 nanoseconds. Weight::from_parts(5_266_239, 20312) // Standard Error: 5_736 - .saturating_add(Weight::from_ref_time(623_337).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(623_337, 0).saturating_mul(n.into())) // Standard Error: 11_911 - .saturating_add(Weight::from_ref_time(1_231_834).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_231_834, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(9_u64)) .saturating_add(T::DbWeight::get().writes(6_u64)) } @@ -484,9 +484,9 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 57_315 nanoseconds. Weight::from_parts(7_065_289, 30914) // Standard Error: 9_469 - .saturating_add(Weight::from_ref_time(834_689).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(834_689, 0).saturating_mul(n.into())) // Standard Error: 21_044 - .saturating_add(Weight::from_ref_time(1_694_666).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_694_666, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(12_u64)) .saturating_add(T::DbWeight::get().writes(9_u64)) } @@ -524,11 +524,11 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 60_730 nanoseconds. Weight::from_parts(10_144_481, 29256) // Standard Error: 7_191 - .saturating_add(Weight::from_ref_time(753_246).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(753_246, 0).saturating_mul(n.into())) // Standard Error: 15_977 - .saturating_add(Weight::from_ref_time(1_508_903).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_508_903, 0).saturating_mul(m.into())) // Standard Error: 61_966 - .saturating_add(Weight::from_ref_time(850_716).saturating_mul(u.into())) + .saturating_add(Weight::from_parts(850_716, 0).saturating_mul(u.into())) .saturating_add(T::DbWeight::get().reads(12_u64)) .saturating_add(T::DbWeight::get().writes(9_u64)) } @@ -561,9 +561,9 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 48_740 nanoseconds. Weight::from_parts(4_636_170, 22875) // Standard Error: 8_874 - .saturating_add(Weight::from_ref_time(706_151).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(706_151, 0).saturating_mul(n.into())) // Standard Error: 19_723 - .saturating_add(Weight::from_ref_time(1_503_932).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_503_932, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(10_u64)) .saturating_add(T::DbWeight::get().writes(7_u64)) } @@ -596,9 +596,9 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 51_746 nanoseconds. Weight::from_parts(24_470_146, 22875) // Standard Error: 44_482 - .saturating_add(Weight::from_ref_time(987_177).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(987_177, 0).saturating_mul(n.into())) // Standard Error: 98_860 - .saturating_add(Weight::from_ref_time(859_000).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(859_000, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(10_u64)) .saturating_add(T::DbWeight::get().writes(7_u64)) } @@ -616,7 +616,7 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 19_448 nanoseconds. Weight::from_parts(21_370_153, 9137) // Standard Error: 12_069 - .saturating_add(Weight::from_ref_time(306_624).saturating_mul(u.into())) + .saturating_add(Weight::from_parts(306_624, 0).saturating_mul(u.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -627,7 +627,7 @@ impl WeightInfo for SubstrateWeight { // Measured: `0` // Estimated: `0` // Minimum execution time: 4_433 nanoseconds. - Weight::from_ref_time(4_771_000) + Weight::from_parts(4_771_000, 0) .saturating_add(T::DbWeight::get().writes(1_u64)) } /// Storage: ParachainStaking DelegatorState (r:1 w:0) @@ -710,17 +710,17 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 470_052 nanoseconds. Weight::from_parts(474_241_000, 372197) // Standard Error: 3_644_687 - .saturating_add(Weight::from_ref_time(102_814_649).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(102_814_649, 0).saturating_mul(n.into())) // Standard Error: 7_825_065 - .saturating_add(Weight::from_ref_time(202_604_259).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(202_604_259, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(153_u64)) .saturating_add(T::DbWeight::get().reads((27_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((51_u64).saturating_mul(m.into()))) .saturating_add(T::DbWeight::get().writes(146_u64)) .saturating_add(T::DbWeight::get().writes((25_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((51_u64).saturating_mul(m.into()))) - .saturating_add(Weight::from_proof_size(70593).saturating_mul(n.into())) - .saturating_add(Weight::from_proof_size(129441).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(0, 70593).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(0, 129441).saturating_mul(m.into())) } } @@ -773,7 +773,7 @@ impl WeightInfo for () { // Measured: `0` // Estimated: `0` // Minimum execution time: 1_428 nanoseconds. - Weight::from_ref_time(1_597_000) + Weight::from_parts(1_597_000, 0) .saturating_add(RocksDbWeight::get().writes(1_u64)) } /// Storage: ParachainStaking CandidatePool (r:76 w:0) @@ -799,17 +799,17 @@ impl WeightInfo for () { // Minimum execution time: 471_938 nanoseconds. Weight::from_parts(486_001_000, 371694) // Standard Error: 4_379_278 - .saturating_add(Weight::from_ref_time(110_323_738).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(110_323_738, 0).saturating_mul(n.into())) // Standard Error: 9_402_215 - .saturating_add(Weight::from_ref_time(201_177_282).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(201_177_282, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(152_u64)) .saturating_add(RocksDbWeight::get().reads((27_u64).saturating_mul(n.into()))) .saturating_add(RocksDbWeight::get().reads((51_u64).saturating_mul(m.into()))) .saturating_add(RocksDbWeight::get().writes(145_u64)) .saturating_add(RocksDbWeight::get().writes((25_u64).saturating_mul(n.into()))) .saturating_add(RocksDbWeight::get().writes((51_u64).saturating_mul(m.into()))) - .saturating_add(Weight::from_proof_size(70593).saturating_mul(n.into())) - .saturating_add(Weight::from_proof_size(129441).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(0, 70593).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(0, 129441).saturating_mul(m.into())) } /// Storage: ParachainStaking MaxSelectedCandidates (r:1 w:1) /// Proof: ParachainStaking MaxSelectedCandidates (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) @@ -828,13 +828,13 @@ impl WeightInfo for () { // Minimum execution time: 22_719 nanoseconds. Weight::from_parts(25_188_000, 9388) // Standard Error: 20_395 - .saturating_add(Weight::from_ref_time(2_348_989).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(2_348_989, 0).saturating_mul(n.into())) // Standard Error: 45_143 - .saturating_add(Weight::from_ref_time(231_173).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(231_173, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(n.into()))) .saturating_add(RocksDbWeight::get().writes(2_u64)) - .saturating_add(Weight::from_proof_size(3554).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(0, 3554).saturating_mul(n.into())) } /// Storage: ParachainStaking Round (r:1 w:1) /// Proof: ParachainStaking Round (max_values: Some(1), max_size: Some(20), added: 515, mode: MaxEncodedLen) @@ -884,15 +884,15 @@ impl WeightInfo for () { // Minimum execution time: 92_721 nanoseconds. Weight::from_parts(95_409_000, 116648) // Standard Error: 20_457 - .saturating_add(Weight::from_ref_time(647_332).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(0, 647_332).saturating_mul(n.into())) // Standard Error: 45_383 - .saturating_add(Weight::from_ref_time(18_774_487).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(0, 18_774_487).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(29_u64)) .saturating_add(RocksDbWeight::get().reads((4_u64).saturating_mul(m.into()))) .saturating_add(RocksDbWeight::get().writes(10_u64)) .saturating_add(RocksDbWeight::get().writes((4_u64).saturating_mul(m.into()))) - .saturating_add(Weight::from_proof_size(16172).saturating_mul(m.into())) - .saturating_add(Weight::from_proof_size(408).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(0, 16172).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(0, 408).saturating_mul(n.into())) } /// Storage: ParachainStaking CandidatePool (r:1 w:1) /// Proof: ParachainStaking CandidatePool (max_values: None, max_size: Some(1790), added: 4265, mode: MaxEncodedLen) @@ -923,12 +923,12 @@ impl WeightInfo for () { // Minimum execution time: 50_529 nanoseconds. Weight::from_parts(12_449_184, 21571) // Standard Error: 6_788 - .saturating_add(Weight::from_ref_time(656_014).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(656_014, 0).saturating_mul(n.into())) // Standard Error: 14_097 - .saturating_add(Weight::from_ref_time(1_279_959).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_279_959, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(10_u64)) .saturating_add(RocksDbWeight::get().writes(7_u64)) - .saturating_add(Weight::from_proof_size(15).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(0, 15).saturating_mul(m.into())) } /// Storage: ParachainStaking CandidatePool (r:17 w:1) /// Proof: ParachainStaking CandidatePool (max_values: None, max_size: Some(1790), added: 4265, mode: MaxEncodedLen) @@ -949,9 +949,9 @@ impl WeightInfo for () { // Minimum execution time: 72_683 nanoseconds. Weight::from_parts(33_415_490, 78143) // Standard Error: 14_687 - .saturating_add(Weight::from_ref_time(661_837).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(661_837, 0).saturating_mul(n.into())) // Standard Error: 23_818 - .saturating_add(Weight::from_ref_time(1_550_824).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_550_824, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(21_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } @@ -972,9 +972,9 @@ impl WeightInfo for () { // Minimum execution time: 32_109 nanoseconds. Weight::from_parts(14_421_741, 13653) // Standard Error: 6_708 - .saturating_add(Weight::from_ref_time(340_784).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(340_784, 0).saturating_mul(n.into())) // Standard Error: 10_878 - .saturating_add(Weight::from_ref_time(861_838).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(861_838, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(5_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } @@ -1013,15 +1013,15 @@ impl WeightInfo for () { // Minimum execution time: 44_856 nanoseconds. Weight::from_parts(46_295_000, 25226) // Standard Error: 19_258 - .saturating_add(Weight::from_ref_time(461_761).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(461_761, 0).saturating_mul(n.into())) // Standard Error: 42_175 - .saturating_add(Weight::from_ref_time(18_350_882).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(18_350_882, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(12_u64)) .saturating_add(RocksDbWeight::get().reads((4_u64).saturating_mul(m.into()))) .saturating_add(RocksDbWeight::get().writes(8_u64)) .saturating_add(RocksDbWeight::get().writes((4_u64).saturating_mul(m.into()))) - .saturating_add(Weight::from_proof_size(354).saturating_mul(n.into())) - .saturating_add(Weight::from_proof_size(14078).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(0, 354).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(0, 14078).saturating_mul(m.into())) } /// Storage: ParachainStaking CandidatePool (r:1 w:1) /// Proof: ParachainStaking CandidatePool (max_values: None, max_size: Some(1790), added: 4265, mode: MaxEncodedLen) @@ -1057,11 +1057,11 @@ impl WeightInfo for () { // Minimum execution time: 54_562 nanoseconds. Weight::from_parts(3_255_828, 27204) // Standard Error: 6_500 - .saturating_add(Weight::from_ref_time(703_655).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(703_655, 0).saturating_mul(n.into())) // Standard Error: 13_494 - .saturating_add(Weight::from_ref_time(1_460_642).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_460_642, 0).saturating_mul(m.into())) // Standard Error: 49_986 - .saturating_add(Weight::from_ref_time(1_058_323).saturating_mul(u.into())) + .saturating_add(Weight::from_parts(1_058_323, 0).saturating_mul(u.into())) .saturating_add(RocksDbWeight::get().reads(12_u64)) .saturating_add(RocksDbWeight::get().writes(8_u64)) } @@ -1092,9 +1092,9 @@ impl WeightInfo for () { // Minimum execution time: 41_900 nanoseconds. Weight::from_parts(5_266_239, 20312) // Standard Error: 5_736 - .saturating_add(Weight::from_ref_time(623_337).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(623_337, 0).saturating_mul(n.into())) // Standard Error: 11_911 - .saturating_add(Weight::from_ref_time(1_231_834).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_231_834, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(9_u64)) .saturating_add(RocksDbWeight::get().writes(6_u64)) } @@ -1131,9 +1131,9 @@ impl WeightInfo for () { // Minimum execution time: 57_315 nanoseconds. Weight::from_parts(7_065_289, 30914) // Standard Error: 9_469 - .saturating_add(Weight::from_ref_time(834_689).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(834_689, 0).saturating_mul(n.into())) // Standard Error: 21_044 - .saturating_add(Weight::from_ref_time(1_694_666).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_694_666, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(12_u64)) .saturating_add(RocksDbWeight::get().writes(9_u64)) } @@ -1171,11 +1171,11 @@ impl WeightInfo for () { // Minimum execution time: 60_730 nanoseconds. Weight::from_parts(10_144_481, 29256) // Standard Error: 7_191 - .saturating_add(Weight::from_ref_time(753_246).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(753_246, 0).saturating_mul(n.into())) // Standard Error: 15_977 - .saturating_add(Weight::from_ref_time(1_508_903).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_508_903, 0).saturating_mul(m.into())) // Standard Error: 61_966 - .saturating_add(Weight::from_ref_time(850_716).saturating_mul(u.into())) + .saturating_add(Weight::from_parts(850_716, 0).saturating_mul(u.into())) .saturating_add(RocksDbWeight::get().reads(12_u64)) .saturating_add(RocksDbWeight::get().writes(9_u64)) } @@ -1208,9 +1208,9 @@ impl WeightInfo for () { // Minimum execution time: 48_740 nanoseconds. Weight::from_parts(4_636_170, 22875) // Standard Error: 8_874 - .saturating_add(Weight::from_ref_time(706_151).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(706_151, 0).saturating_mul(n.into())) // Standard Error: 19_723 - .saturating_add(Weight::from_ref_time(1_503_932).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(1_503_932, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(10_u64)) .saturating_add(RocksDbWeight::get().writes(7_u64)) } @@ -1243,9 +1243,9 @@ impl WeightInfo for () { // Minimum execution time: 51_746 nanoseconds. Weight::from_parts(24_470_146, 22875) // Standard Error: 44_482 - .saturating_add(Weight::from_ref_time(987_177).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(987_177, 0).saturating_mul(n.into())) // Standard Error: 98_860 - .saturating_add(Weight::from_ref_time(859_000).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(859_000, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(10_u64)) .saturating_add(RocksDbWeight::get().writes(7_u64)) } @@ -1263,7 +1263,7 @@ impl WeightInfo for () { // Minimum execution time: 19_448 nanoseconds. Weight::from_parts(21_370_153, 9137) // Standard Error: 12_069 - .saturating_add(Weight::from_ref_time(306_624).saturating_mul(u.into())) + .saturating_add(Weight::from_parts(306_624, 0).saturating_mul(u.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } @@ -1274,7 +1274,7 @@ impl WeightInfo for () { // Measured: `0` // Estimated: `0` // Minimum execution time: 4_433 nanoseconds. - Weight::from_ref_time(4_771_000) + Weight::from_parts(4_771_000, 0) .saturating_add(RocksDbWeight::get().writes(1_u64)) } /// Storage: ParachainStaking DelegatorState (r:1 w:0) @@ -1357,16 +1357,16 @@ impl WeightInfo for () { // Minimum execution time: 470_052 nanoseconds. Weight::from_parts(474_241_000, 372197) // Standard Error: 3_644_687 - .saturating_add(Weight::from_ref_time(102_814_649).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(102_814_649, 0).saturating_mul(n.into())) // Standard Error: 7_825_065 - .saturating_add(Weight::from_ref_time(202_604_259).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(202_604_259, 0).saturating_mul(m.into())) .saturating_add(RocksDbWeight::get().reads(153_u64)) .saturating_add(RocksDbWeight::get().reads((27_u64).saturating_mul(n.into()))) .saturating_add(RocksDbWeight::get().reads((51_u64).saturating_mul(m.into()))) .saturating_add(RocksDbWeight::get().writes(146_u64)) .saturating_add(RocksDbWeight::get().writes((25_u64).saturating_mul(n.into()))) .saturating_add(RocksDbWeight::get().writes((51_u64).saturating_mul(m.into()))) - .saturating_add(Weight::from_proof_size(70593).saturating_mul(n.into())) - .saturating_add(Weight::from_proof_size(129441).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(0, 70593).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(0, 129441).saturating_mul(m.into())) } } diff --git a/pallets/parachain-staking/src/lib.rs b/pallets/parachain-staking/src/lib.rs index 7546ed0c..4349c2f8 100644 --- a/pallets/parachain-staking/src/lib.rs +++ b/pallets/parachain-staking/src/lib.rs @@ -180,7 +180,6 @@ pub mod pallet { /// Pallet for parachain staking. #[pallet::pallet] - #[pallet::generate_store(pub(super) trait Store)] #[pallet::storage_version(STORAGE_VERSION)] pub struct Pallet(PhantomData); diff --git a/pallets/public-credentials/src/default_weights.rs b/pallets/public-credentials/src/default_weights.rs index 7e2e6766..bc799841 100644 --- a/pallets/public-credentials/src/default_weights.rs +++ b/pallets/public-credentials/src/default_weights.rs @@ -78,7 +78,7 @@ impl WeightInfo for SubstrateWeight { // Minimum execution time: 27_323 nanoseconds. Weight::from_parts(27_065_888, 8120) // Standard Error: 15 - .saturating_add(Weight::from_ref_time(1_595).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(1_595, 0 ).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(3_u64)) .saturating_add(T::DbWeight::get().writes(3_u64)) } @@ -188,7 +188,7 @@ impl WeightInfo for () { // Minimum execution time: 27_323 nanoseconds. Weight::from_parts(27_065_888, 8120) // Standard Error: 15 - .saturating_add(Weight::from_ref_time(1_595).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(1_595, 0).saturating_mul(c.into())) .saturating_add(RocksDbWeight::get().reads(3_u64)) .saturating_add(RocksDbWeight::get().writes(3_u64)) } diff --git a/pallets/public-credentials/src/lib.rs b/pallets/public-credentials/src/lib.rs index 8b3f5c84..1c790681 100644 --- a/pallets/public-credentials/src/lib.rs +++ b/pallets/public-credentials/src/lib.rs @@ -157,7 +157,6 @@ pub mod pallet { } #[pallet::pallet] - #[pallet::generate_store(pub(super) trait Store)] #[pallet::storage_version(STORAGE_VERSION)] pub struct Pallet(_); diff --git a/runtimes/common/src/fees.rs b/runtimes/common/src/fees.rs index 24517cc1..c2214624 100644 --- a/runtimes/common/src/fees.rs +++ b/runtimes/common/src/fees.rs @@ -106,7 +106,7 @@ where // TODO: transfer_keep_alive is 288 byte long? let tx_len: u64 = 288; let byte_fee: Balance = - ::LengthToFee::weight_to_fee(&Weight::from_ref_time(tx_len)) + ::LengthToFee::weight_to_fee(&Weight::from_parts(tx_len, 0)) .into(); let base_weight: Weight = ::BlockWeights::get() .get(DispatchClass::Normal) diff --git a/runtimes/peregrine/src/weights/pallet_multisig.rs b/runtimes/peregrine/src/weights/pallet_multisig.rs index 710c8dcd..dcb14d35 100644 --- a/runtimes/peregrine/src/weights/pallet_multisig.rs +++ b/runtimes/peregrine/src/weights/pallet_multisig.rs @@ -49,29 +49,29 @@ use sp_std::marker::PhantomData; pub struct WeightInfo(PhantomData); impl pallet_multisig::WeightInfo for WeightInfo { fn as_multi_threshold_1(z: u32, ) -> Weight { - Weight::from_ref_time(8_364_882 as u64) + Weight::from_parts(8_364_882 as u64, 0) // Standard Error: 79 - .saturating_add(Weight::from_ref_time(849 as u64).saturating_mul(z as u64)) + .saturating_add(Weight::from_parts(849 as u64, 0).saturating_mul(z as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Proof: Multisig Multisigs (max_values: None, max_size: Some(2198), added: 4673, mode: MaxEncodedLen) fn as_multi_create(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(20_285_811 as u64) + Weight::from_parts(20_285_811 as u64, 0) // Standard Error: 5_408 - .saturating_add(Weight::from_ref_time(80_065 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(80_065 as u64, 0).saturating_mul(s as u64)) // Standard Error: 33 - .saturating_add(Weight::from_ref_time(986 as u64).saturating_mul(z as u64)) + .saturating_add(Weight::from_parts(986 as u64, 0).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Proof: Multisig Multisigs (max_values: None, max_size: Some(2198), added: 4673, mode: MaxEncodedLen) fn as_multi_approve(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(12_705_025 as u64) + Weight::from_parts(12_705_025 as u64, 0) // Standard Error: 30_300 - .saturating_add(Weight::from_ref_time(20_431 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(20_431 as u64, 0).saturating_mul(s as u64)) // Standard Error: 186 - .saturating_add(Weight::from_ref_time(3_373 as u64).saturating_mul(z as u64)) + .saturating_add(Weight::from_parts(3_373 as u64, 0).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -80,38 +80,38 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn as_multi_complete(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(20_642_060 as u64) + Weight::from_parts(20_642_060 as u64, 0) // Standard Error: 5_511 - .saturating_add(Weight::from_ref_time(104_693 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(104_693 as u64, 0).saturating_mul(s as u64)) // Standard Error: 34 - .saturating_add(Weight::from_ref_time(1_132 as u64).saturating_mul(z as u64)) + .saturating_add(Weight::from_parts(1_132 as u64, 0).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Proof: Multisig Multisigs (max_values: None, max_size: Some(2198), added: 4673, mode: MaxEncodedLen) fn approve_as_multi_create(s: u32, ) -> Weight { - Weight::from_ref_time(17_036_891 as u64) + Weight::from_parts(17_036_891 as u64, 0) // Standard Error: 4_200 - .saturating_add(Weight::from_ref_time(122_554 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(122_554 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Proof: Multisig Multisigs (max_values: None, max_size: Some(2198), added: 4673, mode: MaxEncodedLen) fn approve_as_multi_approve(s: u32, ) -> Weight { - Weight::from_ref_time(12_421_505 as u64) + Weight::from_parts(12_421_505 as u64, 0) // Standard Error: 7_770 - .saturating_add(Weight::from_ref_time(81_668 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(81_668 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Proof: Multisig Multisigs (max_values: None, max_size: Some(2198), added: 4673, mode: MaxEncodedLen) fn cancel_as_multi(s: u32, ) -> Weight { - Weight::from_ref_time(19_681_233 as u64) + Weight::from_parts(19_681_233 as u64, 0) // Standard Error: 4_292 - .saturating_add(Weight::from_ref_time(70_945 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(70_945 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } diff --git a/runtimes/spiritnet/src/weights/attestation.rs b/runtimes/spiritnet/src/weights/attestation.rs index 28b92aa8..70a796c1 100644 --- a/runtimes/spiritnet/src/weights/attestation.rs +++ b/runtimes/spiritnet/src/weights/attestation.rs @@ -55,14 +55,14 @@ impl attestation::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn add() -> Weight { - Weight::from_ref_time(32_883_000 as u64) + Weight::from_parts(32_883_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Attestation Attestations (r:1 w:1) // Proof: Attestation Attestations (max_values: None, max_size: Some(195), added: 2670, mode: MaxEncodedLen) fn revoke() -> Weight { - Weight::from_ref_time(18_271_000 as u64) + Weight::from_parts(18_271_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -71,7 +71,7 @@ impl attestation::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn remove() -> Weight { - Weight::from_ref_time(31_556_000 as u64) + Weight::from_parts(31_556_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -80,7 +80,7 @@ impl attestation::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn reclaim_deposit() -> Weight { - Weight::from_ref_time(47_092_000 as u64) + Weight::from_parts(47_092_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -89,7 +89,7 @@ impl attestation::WeightInfo for WeightInfo { // Storage: System Account (r:2 w:2) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn change_deposit_owner() -> Weight { - Weight::from_ref_time(44_125_000 as u64) + Weight::from_parts(44_125_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -98,7 +98,7 @@ impl attestation::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn update_deposit() -> Weight { - Weight::from_ref_time(39_086_000 as u64) + Weight::from_parts(39_086_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } diff --git a/runtimes/spiritnet/src/weights/ctype.rs b/runtimes/spiritnet/src/weights/ctype.rs index 781171fc..ff9ab776 100644 --- a/runtimes/spiritnet/src/weights/ctype.rs +++ b/runtimes/spiritnet/src/weights/ctype.rs @@ -53,16 +53,16 @@ impl ctype::WeightInfo for WeightInfo { // Storage: Ctype Ctypes (r:1 w:1) // Proof: Ctype Ctypes (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen) fn add(l: u32, ) -> Weight { - Weight::from_ref_time(4_058_770 as u64) + Weight::from_parts(4_058_770 as u64, 0) // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_059 as u64).saturating_mul(l as u64)) + .saturating_add(Weight::from_parts(2_059 as u64, 0).saturating_mul(l as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } // Storage: Ctype Ctypes (r:1 w:1) // Proof: Ctype Ctypes (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen) fn set_block_number() -> Weight { - Weight::from_ref_time(18_686_000 as u64) + Weight::from_parts(18_686_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } diff --git a/runtimes/spiritnet/src/weights/delegation.rs b/runtimes/spiritnet/src/weights/delegation.rs index 67e4e77c..d5bbfb4d 100644 --- a/runtimes/spiritnet/src/weights/delegation.rs +++ b/runtimes/spiritnet/src/weights/delegation.rs @@ -57,7 +57,7 @@ impl delegation::WeightInfo for WeightInfo { // Storage: Delegation DelegationNodes (r:0 w:1) // Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) fn create_hierarchy() -> Weight { - Weight::from_ref_time(53_947_000 as u64) + Weight::from_parts(53_947_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -66,7 +66,7 @@ impl delegation::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn add_delegation() -> Weight { - Weight::from_ref_time(38_012_000 as u64) + Weight::from_parts(38_012_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -75,9 +75,9 @@ impl delegation::WeightInfo for WeightInfo { // Storage: Delegation DelegationHierarchies (r:1 w:0) // Proof: Delegation DelegationHierarchies (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen) fn revoke_delegation_root_child(r: u32, _c: u32, ) -> Weight { - Weight::from_ref_time(17_953_942 as u64) + Weight::from_parts(17_953_942 as u64, 0) // Standard Error: 19_848 - .saturating_add(Weight::from_ref_time(11_249_984 as u64).saturating_mul(r as u64)) + .saturating_add(Weight::from_parts(11_249_984 as u64, 0).saturating_mul(r as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(r as u64))) @@ -87,9 +87,9 @@ impl delegation::WeightInfo for WeightInfo { // Storage: Delegation DelegationHierarchies (r:1 w:0) // Proof: Delegation DelegationHierarchies (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen) fn revoke_delegation_leaf(_r: u32, c: u32, ) -> Weight { - Weight::from_ref_time(26_014_217 as u64) + Weight::from_parts(26_014_217 as u64, 0) // Standard Error: 15_771 - .saturating_add(Weight::from_ref_time(4_457_617 as u64).saturating_mul(c as u64)) + .saturating_add(Weight::from_parts(4_457_617 as u64, 0).saturating_mul(c as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(c as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -101,9 +101,9 @@ impl delegation::WeightInfo for WeightInfo { // Storage: Delegation DelegationHierarchies (r:1 w:1) // Proof: Delegation DelegationHierarchies (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen) fn remove_delegation(r: u32, ) -> Weight { - Weight::from_ref_time(45_044_770 as u64) + Weight::from_parts(45_044_770 as u64, 0) // Standard Error: 47_701 - .saturating_add(Weight::from_ref_time(19_680_850 as u64).saturating_mul(r as u64)) + .saturating_add(Weight::from_parts(19_680_850 as u64, 0).saturating_mul(r as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().writes(3 as u64)) @@ -116,9 +116,9 @@ impl delegation::WeightInfo for WeightInfo { // Storage: Delegation DelegationHierarchies (r:0 w:1) // Proof: Delegation DelegationHierarchies (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen) fn reclaim_deposit(r: u32, ) -> Weight { - Weight::from_ref_time(37_027_802 as u64) + Weight::from_parts(37_027_802 as u64, 0) // Standard Error: 34_662 - .saturating_add(Weight::from_ref_time(19_854_845 as u64).saturating_mul(r as u64)) + .saturating_add(Weight::from_parts(19_854_845 as u64, 0).saturating_mul(r as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64))) .saturating_add(T::DbWeight::get().writes(3 as u64)) @@ -129,24 +129,24 @@ impl delegation::WeightInfo for WeightInfo { // Storage: Delegation DelegationHierarchies (r:1 w:0) // Proof: Delegation DelegationHierarchies (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen) fn can_attest() -> Weight { - Weight::from_ref_time(12_823_000 as u64) + Weight::from_parts(12_823_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) } // Storage: Delegation DelegationNodes (r:6 w:0) // Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) fn can_revoke(c: u32, ) -> Weight { - Weight::from_ref_time(8_523_936 as u64) + Weight::from_parts(8_523_936 as u64 ,0) // Standard Error: 16_661 - .saturating_add(Weight::from_ref_time(3_529_860 as u64).saturating_mul(c as u64)) + .saturating_add(Weight::from_parts(3_529_860 as u64, 0).saturating_mul(c as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(c as u64))) } // Storage: Delegation DelegationNodes (r:6 w:0) // Proof: Delegation DelegationNodes (max_values: None, max_size: Some(32200), added: 34675, mode: MaxEncodedLen) fn can_remove(c: u32, ) -> Weight { - Weight::from_ref_time(8_518_974 as u64) + Weight::from_parts(8_518_974 as u64, 0) // Standard Error: 16_049 - .saturating_add(Weight::from_ref_time(3_544_659 as u64).saturating_mul(c as u64)) + .saturating_add(Weight::from_parts(3_544_659 as u64, 0).saturating_mul(c as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(c as u64))) } @@ -155,7 +155,7 @@ impl delegation::WeightInfo for WeightInfo { // Storage: System Account (r:2 w:2) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn change_deposit_owner() -> Weight { - Weight::from_ref_time(45_144_000 as u64) + Weight::from_parts(45_144_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -164,7 +164,7 @@ impl delegation::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn update_deposit() -> Weight { - Weight::from_ref_time(41_756_000 as u64) + Weight::from_parts(41_756_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } diff --git a/runtimes/spiritnet/src/weights/did.rs b/runtimes/spiritnet/src/weights/did.rs index 0a1641cd..7261eabd 100644 --- a/runtimes/spiritnet/src/weights/did.rs +++ b/runtimes/spiritnet/src/weights/did.rs @@ -59,11 +59,11 @@ impl did::WeightInfo for WeightInfo { // Storage: Did ServiceEndpoints (r:0 w:25) // Proof: Did ServiceEndpoints (max_values: None, max_size: Some(413), added: 2888, mode: MaxEncodedLen) fn create_ed25519_keys(n: u32, c: u32, ) -> Weight { - Weight::from_ref_time(122_341_881 as u64) + Weight::from_parts(122_341_881 as u64, 0) // Standard Error: 12_163 - .saturating_add(Weight::from_ref_time(1_141_879 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(1_141_879 as u64, 0).saturating_mul(n as u64)) // Standard Error: 4_702 - .saturating_add(Weight::from_ref_time(4_600_187 as u64).saturating_mul(c as u64)) + .saturating_add(Weight::from_parts(4_600_187 as u64, 0).saturating_mul(c as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(c as u64))) @@ -79,11 +79,11 @@ impl did::WeightInfo for WeightInfo { // Storage: Did ServiceEndpoints (r:0 w:25) // Proof: Did ServiceEndpoints (max_values: None, max_size: Some(413), added: 2888, mode: MaxEncodedLen) fn create_sr25519_keys(n: u32, c: u32, ) -> Weight { - Weight::from_ref_time(123_784_601 as u64) + Weight::from_parts(123_784_601 as u64, 0) // Standard Error: 10_456 - .saturating_add(Weight::from_ref_time(1_166_310 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(1_166_310 as u64, 0).saturating_mul(n as u64)) // Standard Error: 4_042 - .saturating_add(Weight::from_ref_time(5_098_244 as u64).saturating_mul(c as u64)) + .saturating_add(Weight::from_parts(5_098_244 as u64, 0).saturating_mul(c as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(c as u64))) @@ -99,11 +99,11 @@ impl did::WeightInfo for WeightInfo { // Storage: Did ServiceEndpoints (r:0 w:25) // Proof: Did ServiceEndpoints (max_values: None, max_size: Some(413), added: 2888, mode: MaxEncodedLen) fn create_ecdsa_keys(n: u32, c: u32, ) -> Weight { - Weight::from_ref_time(110_543_016 as u64) + Weight::from_parts(110_543_016 as u64, 0) // Standard Error: 16_633 - .saturating_add(Weight::from_ref_time(1_104_243 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(1_104_243 as u64, 0).saturating_mul(n as u64)) // Standard Error: 6_431 - .saturating_add(Weight::from_ref_time(4_305_897 as u64).saturating_mul(c as u64)) + .saturating_add(Weight::from_parts(4_305_897 as u64, 0).saturating_mul(c as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(c as u64))) @@ -117,9 +117,9 @@ impl did::WeightInfo for WeightInfo { // Storage: Did ServiceEndpoints (r:0 w:25) // Proof: Did ServiceEndpoints (max_values: None, max_size: Some(413), added: 2888, mode: MaxEncodedLen) fn delete(c: u32, ) -> Weight { - Weight::from_ref_time(29_146_140 as u64) + Weight::from_parts(29_146_140 as u64, 0) // Standard Error: 4_204 - .saturating_add(Weight::from_ref_time(1_246_809 as u64).saturating_mul(c as u64)) + .saturating_add(Weight::from_parts(1_246_809 as u64, 0).saturating_mul(c as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(c as u64))) @@ -133,9 +133,9 @@ impl did::WeightInfo for WeightInfo { // Storage: Did ServiceEndpoints (r:0 w:25) // Proof: Did ServiceEndpoints (max_values: None, max_size: Some(413), added: 2888, mode: MaxEncodedLen) fn reclaim_deposit(c: u32, ) -> Weight { - Weight::from_ref_time(31_450_983 as u64) + Weight::from_parts(31_450_983 as u64, 0) // Standard Error: 19_237 - .saturating_add(Weight::from_ref_time(1_260_697 as u64).saturating_mul(c as u64)) + .saturating_add(Weight::from_parts(1_260_697 as u64, 0).saturating_mul(c as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(c as u64))) @@ -143,168 +143,168 @@ impl did::WeightInfo for WeightInfo { // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn submit_did_call_ed25519_key() -> Weight { - Weight::from_ref_time(75_775_000 as u64) + Weight::from_parts(75_775_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn submit_did_call_sr25519_key() -> Weight { - Weight::from_ref_time(76_971_000 as u64) + Weight::from_parts(76_971_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn submit_did_call_ecdsa_key() -> Weight { - Weight::from_ref_time(64_296_000 as u64) + Weight::from_parts(64_296_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn set_ed25519_authentication_key() -> Weight { - Weight::from_ref_time(27_747_000 as u64) + Weight::from_parts(27_747_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn set_sr25519_authentication_key() -> Weight { - Weight::from_ref_time(27_463_000 as u64) + Weight::from_parts(27_463_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn set_ecdsa_authentication_key() -> Weight { - Weight::from_ref_time(27_322_000 as u64) + Weight::from_parts(27_322_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn set_ed25519_delegation_key() -> Weight { - Weight::from_ref_time(27_125_000 as u64) + Weight::from_parts(27_125_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn set_sr25519_delegation_key() -> Weight { - Weight::from_ref_time(27_196_000 as u64) + Weight::from_parts(27_196_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn set_ecdsa_delegation_key() -> Weight { - Weight::from_ref_time(27_047_000 as u64) + Weight::from_parts(27_047_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn remove_ed25519_delegation_key() -> Weight { - Weight::from_ref_time(25_278_000 as u64) + Weight::from_parts(25_278_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn remove_sr25519_delegation_key() -> Weight { - Weight::from_ref_time(25_292_000 as u64) + Weight::from_parts(25_292_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn remove_ecdsa_delegation_key() -> Weight { - Weight::from_ref_time(25_214_000 as u64) + Weight::from_parts(25_214_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn set_ed25519_attestation_key() -> Weight { - Weight::from_ref_time(27_400_000 as u64) + Weight::from_parts(27_400_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn set_sr25519_attestation_key() -> Weight { - Weight::from_ref_time(27_629_000 as u64) + Weight::from_parts(27_629_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn set_ecdsa_attestation_key() -> Weight { - Weight::from_ref_time(27_339_000 as u64) + Weight::from_parts(27_339_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn remove_ed25519_attestation_key() -> Weight { - Weight::from_ref_time(25_627_000 as u64) + Weight::from_parts(25_627_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn remove_sr25519_attestation_key() -> Weight { - Weight::from_ref_time(25_484_000 as u64) + Weight::from_parts(25_484_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn remove_ecdsa_attestation_key() -> Weight { - Weight::from_ref_time(25_440_000 as u64) + Weight::from_parts(25_440_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn add_ed25519_key_agreement_key() -> Weight { - Weight::from_ref_time(26_678_000 as u64) + Weight::from_parts(26_678_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn add_sr25519_key_agreement_key() -> Weight { - Weight::from_ref_time(26_586_000 as u64) + Weight::from_parts(26_586_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn add_ecdsa_key_agreement_key() -> Weight { - Weight::from_ref_time(26_209_000 as u64) + Weight::from_parts(26_209_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn remove_ed25519_key_agreement_key() -> Weight { - Weight::from_ref_time(25_586_000 as u64) + Weight::from_parts(25_586_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn remove_sr25519_key_agreement_key() -> Weight { - Weight::from_ref_time(25_620_000 as u64) + Weight::from_parts(25_620_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Did Did (r:1 w:1) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn remove_ecdsa_key_agreement_key() -> Weight { - Weight::from_ref_time(25_458_000 as u64) + Weight::from_parts(25_458_000 as u64 ,0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -315,7 +315,7 @@ impl did::WeightInfo for WeightInfo { // Storage: Did ServiceEndpoints (r:1 w:1) // Proof: Did ServiceEndpoints (max_values: None, max_size: Some(413), added: 2888, mode: MaxEncodedLen) fn add_service_endpoint() -> Weight { - Weight::from_ref_time(32_420_000 as u64) + Weight::from_parts(32_420_000 as u64 ,0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -324,32 +324,32 @@ impl did::WeightInfo for WeightInfo { // Storage: Did DidEndpointsCount (r:1 w:1) // Proof: Did DidEndpointsCount (max_values: None, max_size: Some(52), added: 2527, mode: MaxEncodedLen) fn remove_service_endpoint() -> Weight { - Weight::from_ref_time(26_769_000 as u64) + Weight::from_parts(26_769_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Did Did (r:1 w:0) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn signature_verification_sr25519(l: u32, ) -> Weight { - Weight::from_ref_time(33_371_487 as u64) + Weight::from_parts(33_371_487 as u64, 0) // Standard Error: 0 - .saturating_add(Weight::from_ref_time(4_142 as u64).saturating_mul(l as u64)) + .saturating_add(Weight::from_parts(4_142 as u64, 0).saturating_mul(l as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: Did Did (r:1 w:0) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn signature_verification_ed25519(l: u32, ) -> Weight { - Weight::from_ref_time(41_427_263 as u64) + Weight::from_parts(41_427_263 as u64, 0) // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_465 as u64).saturating_mul(l as u64)) + .saturating_add(Weight::from_parts(2_465 as u64, 0).saturating_mul(l as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: Did Did (r:1 w:0) // Proof: Did Did (max_values: None, max_size: Some(2312), added: 4787, mode: MaxEncodedLen) fn signature_verification_ecdsa(l: u32, ) -> Weight { - Weight::from_ref_time(27_585_880 as u64) + Weight::from_parts(27_585_880 as u64, 0) // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_493 as u64).saturating_mul(l as u64)) + .saturating_add(Weight::from_parts(1_493 as u64, 0).saturating_mul(l as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: Did Did (r:1 w:1) @@ -357,7 +357,7 @@ impl did::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn change_deposit_owner() -> Weight { - Weight::from_ref_time(38_598_000 as u64) + Weight::from_parts(38_598_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -366,7 +366,7 @@ impl did::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn update_deposit() -> Weight { - Weight::from_ref_time(40_121_000 as u64) + Weight::from_parts(40_121_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } diff --git a/runtimes/spiritnet/src/weights/frame_system.rs b/runtimes/spiritnet/src/weights/frame_system.rs index 2b78c28b..79affc22 100644 --- a/runtimes/spiritnet/src/weights/frame_system.rs +++ b/runtimes/spiritnet/src/weights/frame_system.rs @@ -49,46 +49,46 @@ use sp_std::marker::PhantomData; pub struct WeightInfo(PhantomData); impl frame_system::WeightInfo for WeightInfo { fn remark(b: u32, ) -> Weight { - Weight::from_ref_time(9_320_004 as u64) + Weight::from_parts(9_320_004 as u64, 0) // Standard Error: 0 - .saturating_add(Weight::from_ref_time(541 as u64).saturating_mul(b as u64)) + .saturating_add(Weight::from_parts(541 as u64, 0).saturating_mul(b as u64)) } fn remark_with_event(b: u32, ) -> Weight { - Weight::from_ref_time(8_660_000 as u64) + Weight::from_parts(8_660_000 as u64, 0) // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_041 as u64).saturating_mul(b as u64)) + .saturating_add(Weight::from_parts(2_041 as u64, 0).saturating_mul(b as u64)) } // Storage: System Digest (r:1 w:1) // Proof Skipped: System Digest (max_values: Some(1), max_size: None, mode: Measured) // Storage: unknown `0x3a686561707061676573` (r:0 w:1) // Proof Skipped: unknown `0x3a686561707061676573` (r:0 w:1) fn set_heap_pages() -> Weight { - Weight::from_ref_time(4_806_000 as u64) + Weight::from_parts(4_806_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Skipped Metadata (r:0 w:0) // Proof Skipped: Skipped Metadata (max_values: None, max_size: None, mode: Measured) fn set_storage(i: u32, ) -> Weight { - Weight::from_ref_time(3_953_000 as u64) + Weight::from_parts(3_953_000 as u64, 0) // Standard Error: 2_457 - .saturating_add(Weight::from_ref_time(642_798 as u64).saturating_mul(i as u64)) + .saturating_add(Weight::from_parts(642_798 as u64, 0).saturating_mul(i as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: Skipped Metadata (r:0 w:0) // Proof Skipped: Skipped Metadata (max_values: None, max_size: None, mode: Measured) fn kill_storage(i: u32, ) -> Weight { - Weight::from_ref_time(2_542_000 as u64) + Weight::from_parts(2_542_000 as u64, 0) // Standard Error: 890 - .saturating_add(Weight::from_ref_time(478_434 as u64).saturating_mul(i as u64)) + .saturating_add(Weight::from_parts(478_434 as u64, 0).saturating_mul(i as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: Skipped Metadata (r:0 w:0) // Proof Skipped: Skipped Metadata (max_values: None, max_size: None, mode: Measured) fn kill_prefix(p: u32, ) -> Weight { - Weight::from_ref_time(7_173_000 as u64) + Weight::from_parts(7_173_000 as u64, 0) // Standard Error: 1_138 - .saturating_add(Weight::from_ref_time(1_035_139 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(1_035_139 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(p as u64))) } } diff --git a/runtimes/spiritnet/src/weights/pallet_balances.rs b/runtimes/spiritnet/src/weights/pallet_balances.rs index 2ef74a07..6bb8bbfe 100644 --- a/runtimes/spiritnet/src/weights/pallet_balances.rs +++ b/runtimes/spiritnet/src/weights/pallet_balances.rs @@ -51,49 +51,49 @@ impl pallet_balances::WeightInfo for WeightInfo { // Storage: System Account (r:2 w:2) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn transfer() -> Weight { - Weight::from_ref_time(72_209_000 as u64) + Weight::from_parts(72_209_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn transfer_keep_alive() -> Weight { - Weight::from_ref_time(70_328_000 as u64) + Weight::from_parts(70_328_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn set_balance_creating() -> Weight { - Weight::from_ref_time(49_562_000 as u64) + Weight::from_parts(49_562_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn set_balance_killing() -> Weight { - Weight::from_ref_time(39_743_000 as u64) + Weight::from_parts(39_743_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: System Account (r:3 w:3) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn force_transfer() -> Weight { - Weight::from_ref_time(76_438_000 as u64) + Weight::from_parts(76_438_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn transfer_all() -> Weight { - Weight::from_ref_time(58_160_000 as u64) + Weight::from_parts(58_160_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn force_unreserve() -> Weight { - Weight::from_ref_time(31_980_000 as u64) + Weight::from_parts(31_980_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } diff --git a/runtimes/spiritnet/src/weights/pallet_collective.rs b/runtimes/spiritnet/src/weights/pallet_collective.rs index 6152644a..d5362ab2 100644 --- a/runtimes/spiritnet/src/weights/pallet_collective.rs +++ b/runtimes/spiritnet/src/weights/pallet_collective.rs @@ -57,11 +57,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Storage: TechnicalCommittee Prime (r:0 w:1) // Proof Skipped: TechnicalCommittee Prime (max_values: Some(1), max_size: None, mode: Measured) fn set_members(m: u32, _n: u32, p: u32, ) -> Weight { - Weight::from_ref_time(19_571_000 as u64) + Weight::from_parts(19_571_000 as u64, 0) // Standard Error: 47_809 - .saturating_add(Weight::from_ref_time(5_442_912 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(5_442_912 as u64, 0).saturating_mul(m as u64)) // Standard Error: 47_809 - .saturating_add(Weight::from_ref_time(8_270_610 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(8_270_610 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -70,11 +70,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Storage: TechnicalCommittee Members (r:1 w:0) // Proof Skipped: TechnicalCommittee Members (max_values: Some(1), max_size: None, mode: Measured) fn execute(b: u32, m: u32, ) -> Weight { - Weight::from_ref_time(21_455_250 as u64) + Weight::from_parts(21_455_250 as u64, 0) // Standard Error: 260 - .saturating_add(Weight::from_ref_time(839 as u64).saturating_mul(b as u64)) + .saturating_add(Weight::from_parts(839 as u64, 0).saturating_mul(b as u64)) // Standard Error: 2_689 - .saturating_add(Weight::from_ref_time(7_635 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(7_635 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: TechnicalCommittee Members (r:1 w:0) @@ -82,9 +82,9 @@ impl pallet_collective::WeightInfo for WeightInfo { // Storage: TechnicalCommittee ProposalOf (r:1 w:0) // Proof Skipped: TechnicalCommittee ProposalOf (max_values: None, max_size: None, mode: Measured) fn propose_execute(b: u32, _m: u32, ) -> Weight { - Weight::from_ref_time(25_565_943 as u64) + Weight::from_parts(25_565_943 as u64, 0) // Standard Error: 289 - .saturating_add(Weight::from_ref_time(881 as u64).saturating_mul(b as u64)) + .saturating_add(Weight::from_parts(881 as u64, 0).saturating_mul(b as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) } // Storage: TechnicalCommittee Members (r:1 w:0) @@ -98,13 +98,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Storage: TechnicalCommittee Voting (r:0 w:1) // Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured) fn propose_proposed(b: u32, m: u32, p: u32, ) -> Weight { - Weight::from_ref_time(28_785_787 as u64) + Weight::from_parts(28_785_787 as u64, 0) // Standard Error: 50 - .saturating_add(Weight::from_ref_time(2_981 as u64).saturating_mul(b as u64)) + .saturating_add(Weight::from_parts(2_981 as u64, 0).saturating_mul(b as u64)) // Standard Error: 531 - .saturating_add(Weight::from_ref_time(18_747 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(18_747 as u64, 0).saturating_mul(m as u64)) // Standard Error: 525 - .saturating_add(Weight::from_ref_time(110_930 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(110_930 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -113,9 +113,9 @@ impl pallet_collective::WeightInfo for WeightInfo { // Storage: TechnicalCommittee Voting (r:1 w:1) // Proof Skipped: TechnicalCommittee Voting (max_values: None, max_size: None, mode: Measured) fn vote(m: u32, ) -> Weight { - Weight::from_ref_time(25_582_176 as u64) + Weight::from_parts(25_582_176 as u64, 0) // Standard Error: 250 - .saturating_add(Weight::from_ref_time(45_093 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(45_093 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -128,11 +128,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Storage: TechnicalCommittee ProposalOf (r:0 w:1) // Proof Skipped: TechnicalCommittee ProposalOf (max_values: None, max_size: None, mode: Measured) fn close_early_disapproved(m: u32, p: u32, ) -> Weight { - Weight::from_ref_time(31_951_147 as u64) + Weight::from_parts(31_951_147 as u64, 0) // Standard Error: 441 - .saturating_add(Weight::from_ref_time(19_340 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(19_340 as u64, 0).saturating_mul(m as u64)) // Standard Error: 430 - .saturating_add(Weight::from_ref_time(101_144 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(101_144 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -145,11 +145,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Storage: TechnicalCommittee Proposals (r:1 w:1) // Proof Skipped: TechnicalCommittee Proposals (max_values: Some(1), max_size: None, mode: Measured) fn close_early_approved(b: u32, _m: u32, p: u32, ) -> Weight { - Weight::from_ref_time(45_381_860 as u64) + Weight::from_parts(45_381_860 as u64, 0) // Standard Error: 139 - .saturating_add(Weight::from_ref_time(2_394 as u64).saturating_mul(b as u64)) + .saturating_add(Weight::from_parts(2_394 as u64, 0).saturating_mul(b as u64)) // Standard Error: 1_432 - .saturating_add(Weight::from_ref_time(141_110 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(141_110 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -164,11 +164,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Storage: TechnicalCommittee ProposalOf (r:0 w:1) // Proof Skipped: TechnicalCommittee ProposalOf (max_values: None, max_size: None, mode: Measured) fn close_disapproved(m: u32, p: u32, ) -> Weight { - Weight::from_ref_time(34_477_728 as u64) + Weight::from_parts(34_477_728 as u64, 0) // Standard Error: 439 - .saturating_add(Weight::from_ref_time(22_565 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(22_565 as u64, 0).saturating_mul(m as u64)) // Standard Error: 428 - .saturating_add(Weight::from_ref_time(101_301 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(101_301 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -183,13 +183,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Storage: TechnicalCommittee Proposals (r:1 w:1) // Proof Skipped: TechnicalCommittee Proposals (max_values: Some(1), max_size: None, mode: Measured) fn close_approved(b: u32, m: u32, p: u32, ) -> Weight { - Weight::from_ref_time(46_992_807 as u64) + Weight::from_parts(46_992_807 as u64, 0) // Standard Error: 91 - .saturating_add(Weight::from_ref_time(2_611 as u64).saturating_mul(b as u64)) + .saturating_add(Weight::from_parts(2_611 as u64, 0).saturating_mul(b as u64)) // Standard Error: 968 - .saturating_add(Weight::from_ref_time(21_508 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(21_508 as u64, 0).saturating_mul(m as u64)) // Standard Error: 944 - .saturating_add(Weight::from_ref_time(136_086 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(136_086 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -200,9 +200,9 @@ impl pallet_collective::WeightInfo for WeightInfo { // Storage: TechnicalCommittee ProposalOf (r:0 w:1) // Proof Skipped: TechnicalCommittee ProposalOf (max_values: None, max_size: None, mode: Measured) fn disapprove_proposal(p: u32, ) -> Weight { - Weight::from_ref_time(20_274_995 as u64) + Weight::from_parts(20_274_995 as u64, 0) // Standard Error: 408 - .saturating_add(Weight::from_ref_time(94_161 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(94_161 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } diff --git a/runtimes/spiritnet/src/weights/pallet_did_lookup.rs b/runtimes/spiritnet/src/weights/pallet_did_lookup.rs index ab00ac65..2ed54bad 100644 --- a/runtimes/spiritnet/src/weights/pallet_did_lookup.rs +++ b/runtimes/spiritnet/src/weights/pallet_did_lookup.rs @@ -55,7 +55,7 @@ impl pallet_did_lookup::WeightInfo for WeightInfo { // Storage: DidLookup ConnectedAccounts (r:0 w:2) // Proof: DidLookup ConnectedAccounts (max_values: None, max_size: Some(97), added: 2572, mode: MaxEncodedLen) fn associate_account_multisig_sr25519() -> Weight { - Weight::from_ref_time(104_704_000 as u64) + Weight::from_parts(104_704_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -66,7 +66,7 @@ impl pallet_did_lookup::WeightInfo for WeightInfo { // Storage: DidLookup ConnectedAccounts (r:0 w:2) // Proof: DidLookup ConnectedAccounts (max_values: None, max_size: Some(97), added: 2572, mode: MaxEncodedLen) fn associate_account_multisig_ed25519() -> Weight { - Weight::from_ref_time(103_900_000 as u64) + Weight::from_parts(103_900_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -77,7 +77,7 @@ impl pallet_did_lookup::WeightInfo for WeightInfo { // Storage: DidLookup ConnectedAccounts (r:0 w:2) // Proof: DidLookup ConnectedAccounts (max_values: None, max_size: Some(97), added: 2572, mode: MaxEncodedLen) fn associate_account_multisig_ecdsa() -> Weight { - Weight::from_ref_time(91_681_000 as u64) + Weight::from_parts(91_681_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -88,7 +88,7 @@ impl pallet_did_lookup::WeightInfo for WeightInfo { // Storage: DidLookup ConnectedAccounts (r:0 w:2) // Proof: DidLookup ConnectedAccounts (max_values: None, max_size: Some(97), added: 2572, mode: MaxEncodedLen) fn associate_eth_account() -> Weight { - Weight::from_ref_time(93_205_000 as u64) + Weight::from_parts(93_205_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -99,7 +99,7 @@ impl pallet_did_lookup::WeightInfo for WeightInfo { // Storage: DidLookup ConnectedAccounts (r:0 w:2) // Proof: DidLookup ConnectedAccounts (max_values: None, max_size: Some(97), added: 2572, mode: MaxEncodedLen) fn associate_sender() -> Weight { - Weight::from_ref_time(44_691_000 as u64) + Weight::from_parts(44_691_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -110,7 +110,7 @@ impl pallet_did_lookup::WeightInfo for WeightInfo { // Storage: DidLookup ConnectedAccounts (r:0 w:1) // Proof: DidLookup ConnectedAccounts (max_values: None, max_size: Some(97), added: 2572, mode: MaxEncodedLen) fn remove_sender_association() -> Weight { - Weight::from_ref_time(28_757_000 as u64) + Weight::from_parts(28_757_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -121,7 +121,7 @@ impl pallet_did_lookup::WeightInfo for WeightInfo { // Storage: DidLookup ConnectedAccounts (r:0 w:1) // Proof: DidLookup ConnectedAccounts (max_values: None, max_size: Some(97), added: 2572, mode: MaxEncodedLen) fn remove_account_association() -> Weight { - Weight::from_ref_time(30_440_000 as u64) + Weight::from_parts(30_440_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -130,7 +130,7 @@ impl pallet_did_lookup::WeightInfo for WeightInfo { // Storage: System Account (r:2 w:2) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn change_deposit_owner() -> Weight { - Weight::from_ref_time(40_342_000 as u64) + Weight::from_parts(40_342_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -139,7 +139,7 @@ impl pallet_did_lookup::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn update_deposit() -> Weight { - Weight::from_ref_time(57_126_000 as u64) + Weight::from_parts(57_126_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } diff --git a/runtimes/spiritnet/src/weights/pallet_indices.rs b/runtimes/spiritnet/src/weights/pallet_indices.rs index 6e3e1c57..27b9679c 100644 --- a/runtimes/spiritnet/src/weights/pallet_indices.rs +++ b/runtimes/spiritnet/src/weights/pallet_indices.rs @@ -51,7 +51,7 @@ impl pallet_indices::WeightInfo for WeightInfo { // Storage: Indices Accounts (r:1 w:1) // Proof: Indices Accounts (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen) fn claim() -> Weight { - Weight::from_ref_time(23_245_000 as u64) + Weight::from_parts(23_245_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -60,14 +60,14 @@ impl pallet_indices::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn transfer() -> Weight { - Weight::from_ref_time(30_412_000 as u64) + Weight::from_parts(30_412_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Indices Accounts (r:1 w:1) // Proof: Indices Accounts (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen) fn free() -> Weight { - Weight::from_ref_time(25_174_000 as u64) + Weight::from_parts(25_174_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -76,14 +76,14 @@ impl pallet_indices::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn force_transfer() -> Weight { - Weight::from_ref_time(29_725_000 as u64) + Weight::from_parts(29_725_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Indices Accounts (r:1 w:1) // Proof: Indices Accounts (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen) fn freeze() -> Weight { - Weight::from_ref_time(27_373_000 as u64) + Weight::from_parts(27_373_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } diff --git a/runtimes/spiritnet/src/weights/pallet_inflation.rs b/runtimes/spiritnet/src/weights/pallet_inflation.rs index 43b138c2..5842a451 100644 --- a/runtimes/spiritnet/src/weights/pallet_inflation.rs +++ b/runtimes/spiritnet/src/weights/pallet_inflation.rs @@ -51,11 +51,11 @@ impl pallet_inflation::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn on_initialize_mint_to_treasury() -> Weight { - Weight::from_ref_time(31_117_000 as u64) + Weight::from_parts(31_117_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } fn on_initialize_no_action() -> Weight { - Weight::from_ref_time(309_000 as u64) + Weight::from_parts(309_000 as u64, 0) } } diff --git a/runtimes/spiritnet/src/weights/pallet_membership.rs b/runtimes/spiritnet/src/weights/pallet_membership.rs index ab1a0120..8ed470bd 100644 --- a/runtimes/spiritnet/src/weights/pallet_membership.rs +++ b/runtimes/spiritnet/src/weights/pallet_membership.rs @@ -57,9 +57,9 @@ impl pallet_membership::WeightInfo for WeightInfo { // Storage: TechnicalCommittee Prime (r:0 w:1) // Proof Skipped: TechnicalCommittee Prime (max_values: Some(1), max_size: None, mode: Measured) fn add_member(m: u32, ) -> Weight { - Weight::from_ref_time(24_167_195 as u64) + Weight::from_parts(24_167_195 as u64, 0) // Standard Error: 7_543 - .saturating_add(Weight::from_ref_time(37_703 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(37_703 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -74,9 +74,9 @@ impl pallet_membership::WeightInfo for WeightInfo { // Storage: TechnicalCommittee Prime (r:0 w:1) // Proof Skipped: TechnicalCommittee Prime (max_values: Some(1), max_size: None, mode: Measured) fn remove_member(m: u32, ) -> Weight { - Weight::from_ref_time(24_816_490 as u64) + Weight::from_parts(24_816_490 as u64, 0) // Standard Error: 7_634 - .saturating_add(Weight::from_ref_time(55_649 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(55_649 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -91,9 +91,9 @@ impl pallet_membership::WeightInfo for WeightInfo { // Storage: TechnicalCommittee Prime (r:0 w:1) // Proof Skipped: TechnicalCommittee Prime (max_values: Some(1), max_size: None, mode: Measured) fn swap_member(m: u32, ) -> Weight { - Weight::from_ref_time(26_022_922 as u64) + Weight::from_parts(26_022_922 as u64, 0) // Standard Error: 8_446 - .saturating_add(Weight::from_ref_time(67_445 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(67_445 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -108,9 +108,9 @@ impl pallet_membership::WeightInfo for WeightInfo { // Storage: TechnicalCommittee Prime (r:0 w:1) // Proof Skipped: TechnicalCommittee Prime (max_values: Some(1), max_size: None, mode: Measured) fn reset_member(m: u32, ) -> Weight { - Weight::from_ref_time(27_154_127 as u64) + Weight::from_parts(27_154_127 as u64, 0) // Standard Error: 9_682 - .saturating_add(Weight::from_ref_time(167_406 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(167_406 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -125,9 +125,9 @@ impl pallet_membership::WeightInfo for WeightInfo { // Storage: TechnicalCommittee Prime (r:0 w:1) // Proof Skipped: TechnicalCommittee Prime (max_values: Some(1), max_size: None, mode: Measured) fn change_key(m: u32, ) -> Weight { - Weight::from_ref_time(25_355_298 as u64) + Weight::from_parts(25_355_298 as u64, 0) // Standard Error: 8_498 - .saturating_add(Weight::from_ref_time(85_642 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(85_642 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -138,9 +138,9 @@ impl pallet_membership::WeightInfo for WeightInfo { // Storage: TechnicalCommittee Prime (r:0 w:1) // Proof Skipped: TechnicalCommittee Prime (max_values: Some(1), max_size: None, mode: Measured) fn set_prime(m: u32, ) -> Weight { - Weight::from_ref_time(10_196_403 as u64) + Weight::from_parts(10_196_403 as u64, 0) // Standard Error: 2_878 - .saturating_add(Weight::from_ref_time(19_764 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(19_764 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -149,9 +149,9 @@ impl pallet_membership::WeightInfo for WeightInfo { // Storage: TechnicalCommittee Prime (r:0 w:1) // Proof Skipped: TechnicalCommittee Prime (max_values: Some(1), max_size: None, mode: Measured) fn clear_prime(m: u32, ) -> Weight { - Weight::from_ref_time(4_737_401 as u64) + Weight::from_parts(4_737_401 as u64, 0) // Standard Error: 1_575 - .saturating_add(Weight::from_ref_time(4_713 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(4_713 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } } diff --git a/runtimes/spiritnet/src/weights/pallet_multisig.rs b/runtimes/spiritnet/src/weights/pallet_multisig.rs index 10abb793..acf8806e 100644 --- a/runtimes/spiritnet/src/weights/pallet_multisig.rs +++ b/runtimes/spiritnet/src/weights/pallet_multisig.rs @@ -49,29 +49,29 @@ use sp_std::marker::PhantomData; pub struct WeightInfo(PhantomData); impl pallet_multisig::WeightInfo for WeightInfo { fn as_multi_threshold_1(z: u32, ) -> Weight { - Weight::from_ref_time(8_364_882 as u64) + Weight::from_parts(8_364_882 as u64, 0) // Standard Error: 79 - .saturating_add(Weight::from_ref_time(849 as u64).saturating_mul(z as u64)) + .saturating_add(Weight::from_parts(849 as u64, 0).saturating_mul(z as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Proof: Multisig Multisigs (max_values: None, max_size: Some(2198), added: 4673, mode: MaxEncodedLen) fn as_multi_create(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(20_285_811 as u64) + Weight::from_parts(20_285_811 as u64, 0) // Standard Error: 5_408 - .saturating_add(Weight::from_ref_time(80_065 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(80_065 as u64, 0).saturating_mul(s as u64)) // Standard Error: 33 - .saturating_add(Weight::from_ref_time(986 as u64).saturating_mul(z as u64)) + .saturating_add(Weight::from_parts(986 as u64, 0).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Proof: Multisig Multisigs (max_values: None, max_size: Some(2198), added: 4673, mode: MaxEncodedLen) fn as_multi_approve(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(12_705_025 as u64) + Weight::from_parts(12_705_025 as u64, 0) // Standard Error: 30_300 - .saturating_add(Weight::from_ref_time(20_431 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(20_431 as u64, 0).saturating_mul(s as u64)) // Standard Error: 186 - .saturating_add(Weight::from_ref_time(3_373 as u64).saturating_mul(z as u64)) + .saturating_add(Weight::from_parts(3_373 as u64, 0).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -80,38 +80,38 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn as_multi_complete(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(20_642_060 as u64) + Weight::from_parts(20_642_060 as u64, 0) // Standard Error: 5_511 - .saturating_add(Weight::from_ref_time(104_693 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(104_693 as u64, 0).saturating_mul(s as u64)) // Standard Error: 34 - .saturating_add(Weight::from_ref_time(1_132 as u64).saturating_mul(z as u64)) + .saturating_add(Weight::from_parts(1_132 as u64, 0).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Proof: Multisig Multisigs (max_values: None, max_size: Some(2198), added: 4673, mode: MaxEncodedLen) fn approve_as_multi_create(s: u32, ) -> Weight { - Weight::from_ref_time(17_036_891 as u64) + Weight::from_parts(17_036_891 as u64, 0) // Standard Error: 4_200 - .saturating_add(Weight::from_ref_time(122_554 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(122_554 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Proof: Multisig Multisigs (max_values: None, max_size: Some(2198), added: 4673, mode: MaxEncodedLen) fn approve_as_multi_approve(s: u32, ) -> Weight { - Weight::from_ref_time(12_421_505 as u64) + Weight::from_parts(12_421_505 as u64, 0) // Standard Error: 7_770 - .saturating_add(Weight::from_ref_time(81_668 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(81_668 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Proof: Multisig Multisigs (max_values: None, max_size: Some(2198), added: 4673, mode: MaxEncodedLen) fn cancel_as_multi(s: u32, ) -> Weight { - Weight::from_ref_time(19_681_233 as u64) + Weight::from_parts(19_681_233 as u64, 0) // Standard Error: 4_292 - .saturating_add(Weight::from_ref_time(70_945 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(70_945 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } diff --git a/runtimes/spiritnet/src/weights/pallet_preimage.rs b/runtimes/spiritnet/src/weights/pallet_preimage.rs index 75a53f68..44a6850c 100644 --- a/runtimes/spiritnet/src/weights/pallet_preimage.rs +++ b/runtimes/spiritnet/src/weights/pallet_preimage.rs @@ -53,9 +53,9 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Storage: Preimage PreimageFor (r:0 w:1) // Proof: Preimage PreimageFor (max_values: None, max_size: Some(4194344), added: 4196819, mode: MaxEncodedLen) fn note_preimage(s: u32, ) -> Weight { - Weight::from_ref_time(45_064_000 as u64) + Weight::from_parts(45_064_000 as u64, 0) // Standard Error: 1 - .saturating_add(Weight::from_ref_time(2_741 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(2_741 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -64,9 +64,9 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Storage: Preimage PreimageFor (r:0 w:1) // Proof: Preimage PreimageFor (max_values: None, max_size: Some(4194344), added: 4196819, mode: MaxEncodedLen) fn note_requested_preimage(s: u32, ) -> Weight { - Weight::from_ref_time(27_532_000 as u64) + Weight::from_parts(27_532_000 as u64, 0) // Standard Error: 1 - .saturating_add(Weight::from_ref_time(2_744 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(2_744 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -75,9 +75,9 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Storage: Preimage PreimageFor (r:0 w:1) // Proof: Preimage PreimageFor (max_values: None, max_size: Some(4194344), added: 4196819, mode: MaxEncodedLen) fn note_no_deposit_preimage(s: u32, ) -> Weight { - Weight::from_ref_time(26_595_000 as u64) + Weight::from_parts(26_595_000 as u64, 0) // Standard Error: 1 - .saturating_add(Weight::from_ref_time(2_743 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(2_743 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -86,7 +86,7 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Storage: Preimage PreimageFor (r:0 w:1) // Proof: Preimage PreimageFor (max_values: None, max_size: Some(4194344), added: 4196819, mode: MaxEncodedLen) fn unnote_preimage() -> Weight { - Weight::from_ref_time(39_718_000 as u64) + Weight::from_parts(39_718_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -95,35 +95,35 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Storage: Preimage PreimageFor (r:0 w:1) // Proof: Preimage PreimageFor (max_values: None, max_size: Some(4194344), added: 4196819, mode: MaxEncodedLen) fn unnote_no_deposit_preimage() -> Weight { - Weight::from_ref_time(25_937_000 as u64) + Weight::from_parts(25_937_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Preimage StatusFor (r:1 w:1) // Proof: Preimage StatusFor (max_values: None, max_size: Some(91), added: 2566, mode: MaxEncodedLen) fn request_preimage() -> Weight { - Weight::from_ref_time(23_314_000 as u64) + Weight::from_parts(23_314_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Preimage StatusFor (r:1 w:1) // Proof: Preimage StatusFor (max_values: None, max_size: Some(91), added: 2566, mode: MaxEncodedLen) fn request_no_deposit_preimage() -> Weight { - Weight::from_ref_time(14_546_000 as u64) + Weight::from_parts(14_546_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Preimage StatusFor (r:1 w:1) // Proof: Preimage StatusFor (max_values: None, max_size: Some(91), added: 2566, mode: MaxEncodedLen) fn request_unnoted_preimage() -> Weight { - Weight::from_ref_time(16_369_000 as u64) + Weight::from_parts(16_369_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Preimage StatusFor (r:1 w:1) // Proof: Preimage StatusFor (max_values: None, max_size: Some(91), added: 2566, mode: MaxEncodedLen) fn request_requested_preimage() -> Weight { - Weight::from_ref_time(10_153_000 as u64) + Weight::from_parts(10_153_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -132,21 +132,21 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Storage: Preimage PreimageFor (r:0 w:1) // Proof: Preimage PreimageFor (max_values: None, max_size: Some(4194344), added: 4196819, mode: MaxEncodedLen) fn unrequest_preimage() -> Weight { - Weight::from_ref_time(24_453_000 as u64) + Weight::from_parts(24_453_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Preimage StatusFor (r:1 w:1) // Proof: Preimage StatusFor (max_values: None, max_size: Some(91), added: 2566, mode: MaxEncodedLen) fn unrequest_unnoted_preimage() -> Weight { - Weight::from_ref_time(10_128_000 as u64) + Weight::from_parts(10_128_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Preimage StatusFor (r:1 w:1) // Proof: Preimage StatusFor (max_values: None, max_size: Some(91), added: 2566, mode: MaxEncodedLen) fn unrequest_multi_referenced_preimage() -> Weight { - Weight::from_ref_time(10_132_000 as u64) + Weight::from_parts(10_132_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } diff --git a/runtimes/spiritnet/src/weights/pallet_proxy.rs b/runtimes/spiritnet/src/weights/pallet_proxy.rs index de233fb7..db29243b 100644 --- a/runtimes/spiritnet/src/weights/pallet_proxy.rs +++ b/runtimes/spiritnet/src/weights/pallet_proxy.rs @@ -51,7 +51,7 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Storage: Proxy Proxies (r:1 w:0) // Proof: Proxy Proxies (max_values: None, max_size: Some(467), added: 2942, mode: MaxEncodedLen) fn proxy(_p: u32, ) -> Weight { - Weight::from_ref_time(24_929_956 as u64) + Weight::from_parts(24_929_956 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: Proxy Proxies (r:1 w:0) @@ -61,9 +61,9 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn proxy_announced(a: u32, _p: u32, ) -> Weight { - Weight::from_ref_time(41_483_872 as u64) + Weight::from_parts(41_483_872 as u64, 0) // Standard Error: 43_404 - .saturating_add(Weight::from_ref_time(122_506 as u64).saturating_mul(a as u64)) + .saturating_add(Weight::from_parts(122_506 as u64, 0).saturating_mul(a as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -72,9 +72,9 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn remove_announcement(a: u32, _p: u32, ) -> Weight { - Weight::from_ref_time(25_637_685 as u64) + Weight::from_parts(25_637_685 as u64, 0) // Standard Error: 31_182 - .saturating_add(Weight::from_ref_time(310_154 as u64).saturating_mul(a as u64)) + .saturating_add(Weight::from_parts(310_154 as u64, 0).saturating_mul(a as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -83,11 +83,11 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn reject_announcement(a: u32, p: u32, ) -> Weight { - Weight::from_ref_time(23_441_094 as u64) + Weight::from_parts(23_441_094 as u64, 0) // Standard Error: 42_108 - .saturating_add(Weight::from_ref_time(486_177 as u64).saturating_mul(a as u64)) + .saturating_add(Weight::from_parts(486_177 as u64, 0).saturating_mul(a as u64)) // Standard Error: 46_746 - .saturating_add(Weight::from_ref_time(189_817 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(189_817 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -98,54 +98,54 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn announce(a: u32, p: u32, ) -> Weight { - Weight::from_ref_time(33_809_817 as u64) + Weight::from_parts(33_809_817 as u64, 0) // Standard Error: 63_991 - .saturating_add(Weight::from_ref_time(546_841 as u64).saturating_mul(a as u64)) + .saturating_add(Weight::from_parts(546_841 as u64, 0).saturating_mul(a as u64)) // Standard Error: 71_040 - .saturating_add(Weight::from_ref_time(163_484 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(163_484 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Proxy Proxies (r:1 w:1) // Proof: Proxy Proxies (max_values: None, max_size: Some(467), added: 2942, mode: MaxEncodedLen) fn add_proxy(p: u32, ) -> Weight { - Weight::from_ref_time(26_271_824 as u64) + Weight::from_parts(26_271_824 as u64, 0) // Standard Error: 68_528 - .saturating_add(Weight::from_ref_time(739_793 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(739_793 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Proxy Proxies (r:1 w:1) // Proof: Proxy Proxies (max_values: None, max_size: Some(467), added: 2942, mode: MaxEncodedLen) fn remove_proxy(_p: u32, ) -> Weight { - Weight::from_ref_time(31_310_212 as u64) + Weight::from_parts(31_310_212 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Proxy Proxies (r:1 w:1) // Proof: Proxy Proxies (max_values: None, max_size: Some(467), added: 2942, mode: MaxEncodedLen) fn remove_proxies(p: u32, ) -> Weight { - Weight::from_ref_time(22_999_382 as u64) + Weight::from_parts(22_999_382 as u64, 0) // Standard Error: 77_197 - .saturating_add(Weight::from_ref_time(89_076 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(89_076 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Proxy Proxies (r:1 w:1) // Proof: Proxy Proxies (max_values: None, max_size: Some(467), added: 2942, mode: MaxEncodedLen) fn create_pure(p: u32, ) -> Weight { - Weight::from_ref_time(29_724_514 as u64) + Weight::from_parts(29_724_514 as u64, 0) // Standard Error: 117_550 - .saturating_add(Weight::from_ref_time(1_203_667 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(1_203_667 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Proxy Proxies (r:1 w:1) // Proof: Proxy Proxies (max_values: None, max_size: Some(467), added: 2942, mode: MaxEncodedLen) fn kill_pure(p: u32, ) -> Weight { - Weight::from_ref_time(23_020_019 as u64) + Weight::from_parts(23_020_019 as u64, 0) // Standard Error: 63_735 - .saturating_add(Weight::from_ref_time(272_602 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(272_602 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } diff --git a/runtimes/spiritnet/src/weights/pallet_scheduler.rs b/runtimes/spiritnet/src/weights/pallet_scheduler.rs index 66e88a49..23e863ca 100644 --- a/runtimes/spiritnet/src/weights/pallet_scheduler.rs +++ b/runtimes/spiritnet/src/weights/pallet_scheduler.rs @@ -51,54 +51,54 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Storage: Scheduler IncompleteSince (r:1 w:1) // Proof: Scheduler IncompleteSince (max_values: Some(1), max_size: Some(8), added: 503, mode: MaxEncodedLen) fn service_agendas_base() -> Weight { - Weight::from_ref_time(7_259_000 as u64) + Weight::from_parts(7_259_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Scheduler Agenda (r:1 w:1) // Proof: Scheduler Agenda (max_values: None, max_size: Some(39167), added: 41642, mode: MaxEncodedLen) fn service_agenda_base(s: u32, ) -> Weight { - Weight::from_ref_time(8_732_296 as u64) + Weight::from_parts(8_732_296 as u64, 0) // Standard Error: 8_385 - .saturating_add(Weight::from_ref_time(1_201_595 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(1_201_595 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } fn service_task_base() -> Weight { - Weight::from_ref_time(6_936_000 as u64) + Weight::from_parts(6_936_000 as u64, 0) } // Storage: Preimage PreimageFor (r:1 w:1) // Proof: Preimage PreimageFor (max_values: None, max_size: Some(4194344), added: 4196819, mode: Measured) // Storage: Preimage StatusFor (r:1 w:1) // Proof: Preimage StatusFor (max_values: None, max_size: Some(91), added: 2566, mode: MaxEncodedLen) fn service_task_fetched(s: u32, ) -> Weight { - Weight::from_ref_time(36_011_000 as u64) + Weight::from_parts(36_011_000 as u64, 0) // Standard Error: 15 - .saturating_add(Weight::from_ref_time(1_768 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(1_768 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Scheduler Lookup (r:0 w:1) // Proof: Scheduler Lookup (max_values: None, max_size: Some(52), added: 2527, mode: MaxEncodedLen) fn service_task_named() -> Weight { - Weight::from_ref_time(8_568_000 as u64) + Weight::from_parts(8_568_000 as u64, 0) .saturating_add(T::DbWeight::get().writes(1 as u64)) } fn service_task_periodic() -> Weight { - Weight::from_ref_time(6_813_000 as u64) + Weight::from_parts(6_813_000 as u64, 0) } fn execute_dispatch_signed() -> Weight { - Weight::from_ref_time(3_487_000 as u64) + Weight::from_parts(3_487_000 as u64, 0) } fn execute_dispatch_unsigned() -> Weight { - Weight::from_ref_time(4_863_000 as u64) + Weight::from_parts(4_863_000 as u64, 0) } // Storage: Scheduler Agenda (r:1 w:1) // Proof: Scheduler Agenda (max_values: None, max_size: Some(39167), added: 41642, mode: MaxEncodedLen) fn schedule(s: u32, ) -> Weight { - Weight::from_ref_time(22_448_494 as u64) + Weight::from_parts(22_448_494 as u64, 0) // Standard Error: 12_694 - .saturating_add(Weight::from_ref_time(1_153_307 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(1_153_307 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -107,9 +107,9 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Storage: Scheduler Lookup (r:0 w:1) // Proof: Scheduler Lookup (max_values: None, max_size: Some(52), added: 2527, mode: MaxEncodedLen) fn cancel(s: u32, ) -> Weight { - Weight::from_ref_time(24_096_800 as u64) + Weight::from_parts(24_096_800 as u64, 0) // Standard Error: 13_060 - .saturating_add(Weight::from_ref_time(2_096_283 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(2_096_283 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -118,9 +118,9 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Storage: Scheduler Agenda (r:1 w:1) // Proof: Scheduler Agenda (max_values: None, max_size: Some(39167), added: 41642, mode: MaxEncodedLen) fn schedule_named(s: u32, ) -> Weight { - Weight::from_ref_time(28_799_568 as u64) + Weight::from_parts(28_799_568 as u64, 0) // Standard Error: 15_283 - .saturating_add(Weight::from_ref_time(1_110_018 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(1_110_018 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -129,9 +129,9 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Storage: Scheduler Agenda (r:1 w:1) // Proof: Scheduler Agenda (max_values: None, max_size: Some(39167), added: 41642, mode: MaxEncodedLen) fn cancel_named(s: u32, ) -> Weight { - Weight::from_ref_time(26_672_036 as u64) + Weight::from_parts(26_672_036 as u64, 0) // Standard Error: 15_001 - .saturating_add(Weight::from_ref_time(2_108_784 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(2_108_784 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } diff --git a/runtimes/spiritnet/src/weights/pallet_session.rs b/runtimes/spiritnet/src/weights/pallet_session.rs index a0852bef..1df3c950 100644 --- a/runtimes/spiritnet/src/weights/pallet_session.rs +++ b/runtimes/spiritnet/src/weights/pallet_session.rs @@ -53,7 +53,7 @@ impl pallet_session::WeightInfo for WeightInfo { // Storage: Session KeyOwner (r:1 w:1) // Proof Skipped: Session KeyOwner (max_values: None, max_size: None, mode: Measured) fn set_keys() -> Weight { - Weight::from_ref_time(17_827_000 as u64) + Weight::from_parts(17_827_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -62,7 +62,7 @@ impl pallet_session::WeightInfo for WeightInfo { // Storage: Session KeyOwner (r:0 w:1) // Proof Skipped: Session KeyOwner (max_values: None, max_size: None, mode: Measured) fn purge_keys() -> Weight { - Weight::from_ref_time(13_772_000 as u64) + Weight::from_parts(13_772_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } diff --git a/runtimes/spiritnet/src/weights/pallet_timestamp.rs b/runtimes/spiritnet/src/weights/pallet_timestamp.rs index 7aac1c8c..35bf4dfc 100644 --- a/runtimes/spiritnet/src/weights/pallet_timestamp.rs +++ b/runtimes/spiritnet/src/weights/pallet_timestamp.rs @@ -51,11 +51,11 @@ impl pallet_timestamp::WeightInfo for WeightInfo { // Storage: Timestamp Now (r:1 w:1) // Proof: Timestamp Now (max_values: Some(1), max_size: Some(8), added: 503, mode: MaxEncodedLen) fn set() -> Weight { - Weight::from_ref_time(8_194_000 as u64) + Weight::from_parts(8_194_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } fn on_finalize() -> Weight { - Weight::from_ref_time(5_551_000 as u64) + Weight::from_parts(5_551_000 as u64, 0) } } diff --git a/runtimes/spiritnet/src/weights/pallet_tips.rs b/runtimes/spiritnet/src/weights/pallet_tips.rs index ead8a9c8..4d80aaff 100644 --- a/runtimes/spiritnet/src/weights/pallet_tips.rs +++ b/runtimes/spiritnet/src/weights/pallet_tips.rs @@ -53,9 +53,9 @@ impl pallet_tips::WeightInfo for WeightInfo { // Storage: Tips Tips (r:1 w:1) // Proof Skipped: Tips Tips (max_values: None, max_size: None, mode: Measured) fn report_awesome(r: u32, ) -> Weight { - Weight::from_ref_time(34_678_995 as u64) + Weight::from_parts(34_678_995 as u64, 0) // Standard Error: 63 - .saturating_add(Weight::from_ref_time(1_929 as u64).saturating_mul(r as u64)) + .saturating_add(Weight::from_parts(1_929 as u64, 0).saturating_mul(r as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -64,7 +64,7 @@ impl pallet_tips::WeightInfo for WeightInfo { // Storage: Tips Reasons (r:0 w:1) // Proof Skipped: Tips Reasons (max_values: None, max_size: None, mode: Measured) fn retract_tip() -> Weight { - Weight::from_ref_time(26_984_000 as u64) + Weight::from_parts(26_984_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -75,11 +75,11 @@ impl pallet_tips::WeightInfo for WeightInfo { // Storage: Tips Tips (r:0 w:1) // Proof Skipped: Tips Tips (max_values: None, max_size: None, mode: Measured) fn tip_new(r: u32, t: u32, ) -> Weight { - Weight::from_ref_time(23_331_637 as u64) + Weight::from_parts(23_331_637 as u64, 0) // Standard Error: 29 - .saturating_add(Weight::from_ref_time(2_083 as u64).saturating_mul(r as u64)) + .saturating_add(Weight::from_parts(2_083 as u64, 0).saturating_mul(r as u64)) // Standard Error: 4_929 - .saturating_add(Weight::from_ref_time(38_831 as u64).saturating_mul(t as u64)) + .saturating_add(Weight::from_parts(38_831 as u64, 0).saturating_mul(t as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -88,9 +88,9 @@ impl pallet_tips::WeightInfo for WeightInfo { // Storage: Tips Tips (r:1 w:1) // Proof Skipped: Tips Tips (max_values: None, max_size: None, mode: Measured) fn tip(t: u32, ) -> Weight { - Weight::from_ref_time(21_024_385 as u64) + Weight::from_parts(21_024_385 as u64, 0) // Standard Error: 4_827 - .saturating_add(Weight::from_ref_time(80_931 as u64).saturating_mul(t as u64)) + .saturating_add(Weight::from_parts(80_931 as u64, 0).saturating_mul(t as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -103,9 +103,9 @@ impl pallet_tips::WeightInfo for WeightInfo { // Storage: Tips Reasons (r:0 w:1) // Proof Skipped: Tips Reasons (max_values: None, max_size: None, mode: Measured) fn close_tip(t: u32, ) -> Weight { - Weight::from_ref_time(60_474_036 as u64) + Weight::from_parts(60_474_036 as u64, 0) // Standard Error: 9_536 - .saturating_add(Weight::from_ref_time(2_238 as u64).saturating_mul(t as u64)) + .saturating_add(Weight::from_parts(2_238 as u64, 0).saturating_mul(t as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -114,7 +114,7 @@ impl pallet_tips::WeightInfo for WeightInfo { // Storage: Tips Reasons (r:0 w:1) // Proof Skipped: Tips Reasons (max_values: None, max_size: None, mode: Measured) fn slash_tip(_t: u32, ) -> Weight { - Weight::from_ref_time(20_257_747 as u64) + Weight::from_parts(20_257_747 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } diff --git a/runtimes/spiritnet/src/weights/pallet_treasury.rs b/runtimes/spiritnet/src/weights/pallet_treasury.rs index 93dd32b8..aa3eeab5 100644 --- a/runtimes/spiritnet/src/weights/pallet_treasury.rs +++ b/runtimes/spiritnet/src/weights/pallet_treasury.rs @@ -49,14 +49,14 @@ use sp_std::marker::PhantomData; pub struct WeightInfo(PhantomData); impl pallet_treasury::WeightInfo for WeightInfo { fn spend() -> Weight { - Weight::from_ref_time(257_000 as u64) + Weight::from_parts(257_000 as u64, 0) } // Storage: Treasury ProposalCount (r:1 w:1) // Proof: Treasury ProposalCount (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) // Storage: Treasury Proposals (r:0 w:1) // Proof: Treasury Proposals (max_values: None, max_size: Some(108), added: 2583, mode: MaxEncodedLen) fn propose_spend() -> Weight { - Weight::from_ref_time(27_461_000 as u64) + Weight::from_parts(27_461_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -65,7 +65,7 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Storage: System Account (r:2 w:2) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn reject_proposal() -> Weight { - Weight::from_ref_time(68_602_000 as u64) + Weight::from_parts(68_602_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -74,16 +74,16 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Storage: Treasury Approvals (r:1 w:1) // Proof: Treasury Approvals (max_values: Some(1), max_size: Some(402), added: 897, mode: MaxEncodedLen) fn approve_proposal(p: u32, ) -> Weight { - Weight::from_ref_time(14_674_204 as u64) + Weight::from_parts(14_674_204 as u64, 0) // Standard Error: 1_555 - .saturating_add(Weight::from_ref_time(24_451 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(24_451 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Treasury Approvals (r:1 w:1) // Proof: Treasury Approvals (max_values: Some(1), max_size: Some(402), added: 897, mode: MaxEncodedLen) fn remove_approval() -> Weight { - Weight::from_ref_time(12_125_000 as u64) + Weight::from_parts(12_125_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -98,9 +98,9 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Storage: Treasury Proposals (r:100 w:100) // Proof: Treasury Proposals (max_values: None, max_size: Some(108), added: 2583, mode: MaxEncodedLen) fn on_initialize_proposals(p: u32, ) -> Weight { - Weight::from_ref_time(71_952_240 as u64) + Weight::from_parts(71_952_240 as u64, 0) // Standard Error: 22_654 - .saturating_add(Weight::from_ref_time(34_252_995 as u64).saturating_mul(p as u64)) + .saturating_add(Weight::from_parts(34_252_995 as u64, 0).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes(4 as u64)) diff --git a/runtimes/spiritnet/src/weights/pallet_utility.rs b/runtimes/spiritnet/src/weights/pallet_utility.rs index 5ca8468c..6d7769aa 100644 --- a/runtimes/spiritnet/src/weights/pallet_utility.rs +++ b/runtimes/spiritnet/src/weights/pallet_utility.rs @@ -49,24 +49,24 @@ use sp_std::marker::PhantomData; pub struct WeightInfo(PhantomData); impl pallet_utility::WeightInfo for WeightInfo { fn batch(c: u32, ) -> Weight { - Weight::from_ref_time(79_134_909 as u64) + Weight::from_parts(79_134_909 as u64, 0) // Standard Error: 21_258 - .saturating_add(Weight::from_ref_time(5_084_810 as u64).saturating_mul(c as u64)) + .saturating_add(Weight::from_parts(5_084_810 as u64, 0).saturating_mul(c as u64)) } fn as_derivative() -> Weight { - Weight::from_ref_time(9_379_000 as u64) + Weight::from_parts(9_379_000 as u64, 0) } fn batch_all(c: u32, ) -> Weight { - Weight::from_ref_time(56_869_903 as u64) + Weight::from_parts(56_869_903 as u64, 0) // Standard Error: 18_968 - .saturating_add(Weight::from_ref_time(5_396_723 as u64).saturating_mul(c as u64)) + .saturating_add(Weight::from_parts(5_396_723 as u64, 0).saturating_mul(c as u64)) } fn dispatch_as() -> Weight { - Weight::from_ref_time(10_999_000 as u64) + Weight::from_parts(10_999_000 as u64, 0) } fn force_batch(c: u32, ) -> Weight { - Weight::from_ref_time(68_110_842 as u64) + Weight::from_parts(68_110_842 as u64, 0) // Standard Error: 9_807 - .saturating_add(Weight::from_ref_time(5_069_264 as u64).saturating_mul(c as u64)) + .saturating_add(Weight::from_parts(5_069_264 as u64, 0).saturating_mul(c as u64)) } } diff --git a/runtimes/spiritnet/src/weights/pallet_vesting.rs b/runtimes/spiritnet/src/weights/pallet_vesting.rs index 132fb96f..22c3069d 100644 --- a/runtimes/spiritnet/src/weights/pallet_vesting.rs +++ b/runtimes/spiritnet/src/weights/pallet_vesting.rs @@ -53,11 +53,11 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Storage: Balances Locks (r:1 w:1) // Proof: Balances Locks (max_values: None, max_size: Some(1299), added: 3774, mode: MaxEncodedLen) fn vest_locked(l: u32, s: u32, ) -> Weight { - Weight::from_ref_time(33_400_641 as u64) + Weight::from_parts(33_400_641 as u64, 0) // Standard Error: 7_324 - .saturating_add(Weight::from_ref_time(44_003 as u64).saturating_mul(l as u64)) + .saturating_add(Weight::from_parts(44_003 as u64, 0).saturating_mul(l as u64)) // Standard Error: 13_032 - .saturating_add(Weight::from_ref_time(97_512 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(97_512 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -66,9 +66,9 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Storage: Balances Locks (r:1 w:1) // Proof: Balances Locks (max_values: None, max_size: Some(1299), added: 3774, mode: MaxEncodedLen) fn vest_unlocked(l: u32, _s: u32, ) -> Weight { - Weight::from_ref_time(35_069_059 as u64) + Weight::from_parts(35_069_059 as u64, 0) // Standard Error: 4_836 - .saturating_add(Weight::from_ref_time(28_435 as u64).saturating_mul(l as u64)) + .saturating_add(Weight::from_parts(28_435 as u64, 0).saturating_mul(l as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -79,11 +79,11 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn vest_other_locked(l: u32, s: u32, ) -> Weight { - Weight::from_ref_time(40_289_268 as u64) + Weight::from_parts(40_289_268 as u64, 0) // Standard Error: 4_796 - .saturating_add(Weight::from_ref_time(15_247 as u64).saturating_mul(l as u64)) + .saturating_add(Weight::from_parts(15_247 as u64, 0).saturating_mul(l as u64)) // Standard Error: 8_533 - .saturating_add(Weight::from_ref_time(19_258 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(19_258 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -94,11 +94,11 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn vest_other_unlocked(l: u32, s: u32, ) -> Weight { - Weight::from_ref_time(38_349_682 as u64) + Weight::from_parts(38_349_682 as u64, 0) // Standard Error: 4_594 - .saturating_add(Weight::from_ref_time(35_747 as u64).saturating_mul(l as u64)) + .saturating_add(Weight::from_parts(35_747 as u64, 0).saturating_mul(l as u64)) // Standard Error: 8_173 - .saturating_add(Weight::from_ref_time(21_563 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(21_563 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -109,9 +109,9 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Storage: Balances Locks (r:1 w:1) // Proof: Balances Locks (max_values: None, max_size: Some(1299), added: 3774, mode: MaxEncodedLen) fn vested_transfer(l: u32, _s: u32, ) -> Weight { - Weight::from_ref_time(54_860_618 as u64) + Weight::from_parts(54_860_618 as u64, 0) // Standard Error: 12_316 - .saturating_add(Weight::from_ref_time(51_714 as u64).saturating_mul(l as u64)) + .saturating_add(Weight::from_parts(51_714 as u64, 0).saturating_mul(l as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -122,11 +122,11 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Storage: Balances Locks (r:1 w:1) // Proof: Balances Locks (max_values: None, max_size: Some(1299), added: 3774, mode: MaxEncodedLen) fn force_vested_transfer(l: u32, s: u32, ) -> Weight { - Weight::from_ref_time(61_203_879 as u64) + Weight::from_parts(61_203_879 as u64, 0) // Standard Error: 16_405 - .saturating_add(Weight::from_ref_time(50_578 as u64).saturating_mul(l as u64)) + .saturating_add(Weight::from_parts(50_578 as u64, 0).saturating_mul(l as u64)) // Standard Error: 29_187 - .saturating_add(Weight::from_ref_time(59_211 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(59_211 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -137,11 +137,11 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn not_unlocking_merge_schedules(l: u32, s: u32, ) -> Weight { - Weight::from_ref_time(38_957_662 as u64) + Weight::from_parts(38_957_662 as u64, 0) // Standard Error: 3_010 - .saturating_add(Weight::from_ref_time(34_046 as u64).saturating_mul(l as u64)) + .saturating_add(Weight::from_parts(34_046 as u64, 0).saturating_mul(l as u64)) // Standard Error: 5_559 - .saturating_add(Weight::from_ref_time(37_367 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(37_367 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -152,11 +152,11 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn unlocking_merge_schedules(l: u32, s: u32, ) -> Weight { - Weight::from_ref_time(38_940_362 as u64) + Weight::from_parts(38_940_362 as u64, 0) // Standard Error: 6_011 - .saturating_add(Weight::from_ref_time(28_458 as u64).saturating_mul(l as u64)) + .saturating_add(Weight::from_parts(28_458 as u64, 0).saturating_mul(l as u64)) // Standard Error: 11_100 - .saturating_add(Weight::from_ref_time(59_868 as u64).saturating_mul(s as u64)) + .saturating_add(Weight::from_parts(59_868 as u64, 0).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } diff --git a/runtimes/spiritnet/src/weights/pallet_web3_names.rs b/runtimes/spiritnet/src/weights/pallet_web3_names.rs index 46dda16f..14fc7500 100644 --- a/runtimes/spiritnet/src/weights/pallet_web3_names.rs +++ b/runtimes/spiritnet/src/weights/pallet_web3_names.rs @@ -57,7 +57,7 @@ impl pallet_web3_names::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn claim(_n: u32, ) -> Weight { - Weight::from_ref_time(40_237_964 as u64) + Weight::from_parts(40_237_964 as u64, 0) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -68,7 +68,7 @@ impl pallet_web3_names::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn release_by_owner() -> Weight { - Weight::from_ref_time(32_912_000 as u64) + Weight::from_parts(32_912_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -79,9 +79,9 @@ impl pallet_web3_names::WeightInfo for WeightInfo { // Storage: Web3Names Names (r:0 w:1) // Proof: Web3Names Names (max_values: None, max_size: Some(81), added: 2556, mode: MaxEncodedLen) fn reclaim_deposit(n: u32, ) -> Weight { - Weight::from_ref_time(31_703_821 as u64) + Weight::from_parts(31_703_821 as u64, 0) // Standard Error: 36_296 - .saturating_add(Weight::from_ref_time(235_783 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(235_783 as u64, 0).saturating_mul(n as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -94,14 +94,14 @@ impl pallet_web3_names::WeightInfo for WeightInfo { // Storage: Web3Names Names (r:0 w:1) // Proof: Web3Names Names (max_values: None, max_size: Some(81), added: 2556, mode: MaxEncodedLen) fn ban(_n: u32, ) -> Weight { - Weight::from_ref_time(43_007_574 as u64) + Weight::from_parts(43_007_574 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } // Storage: Web3Names Banned (r:1 w:1) // Proof: Web3Names Banned (max_values: None, max_size: Some(49), added: 2524, mode: MaxEncodedLen) fn unban(_n: u32, ) -> Weight { - Weight::from_ref_time(17_954_246 as u64) + Weight::from_parts(17_954_246 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -112,7 +112,7 @@ impl pallet_web3_names::WeightInfo for WeightInfo { // Storage: System Account (r:2 w:2) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn change_deposit_owner() -> Weight { - Weight::from_ref_time(66_017_000 as u64) + Weight::from_parts(66_017_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -121,7 +121,7 @@ impl pallet_web3_names::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn update_deposit() -> Weight { - Weight::from_ref_time(57_911_000 as u64) + Weight::from_parts(57_911_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } diff --git a/runtimes/spiritnet/src/weights/pallet_xcm.rs b/runtimes/spiritnet/src/weights/pallet_xcm.rs index a9bc9f99..8bb2babb 100644 --- a/runtimes/spiritnet/src/weights/pallet_xcm.rs +++ b/runtimes/spiritnet/src/weights/pallet_xcm.rs @@ -59,35 +59,35 @@ impl pallet_xcm::WeightInfo for WeightInfo { // Storage: ParachainSystem PendingUpwardMessages (r:1 w:1) // Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured) fn send() -> Weight { - Weight::from_ref_time(47_819_000 as u64) + Weight::from_parts(47_819_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Benchmark Override (r:0 w:0) // Proof Skipped: Benchmark Override (max_values: None, max_size: None, mode: Measured) fn teleport_assets() -> Weight { - Weight::from_ref_time(18_446_744_073_709_551_000 as u64) + Weight::from_parts(18_446_744_073_709_551_000 as u64, 0) } // Storage: Benchmark Override (r:0 w:0) // Proof Skipped: Benchmark Override (max_values: None, max_size: None, mode: Measured) fn reserve_transfer_assets() -> Weight { - Weight::from_ref_time(18_446_744_073_709_551_000 as u64) + Weight::from_parts(18_446_744_073_709_551_000 as u64, 0) } // Storage: Benchmark Override (r:0 w:0) // Proof Skipped: Benchmark Override (max_values: None, max_size: None, mode: Measured) fn execute() -> Weight { - Weight::from_ref_time(18_446_744_073_709_551_000 as u64) + Weight::from_parts(18_446_744_073_709_551_000 as u64, 0) } // Storage: PolkadotXcm SupportedVersion (r:0 w:1) // Proof Skipped: PolkadotXcm SupportedVersion (max_values: None, max_size: None, mode: Measured) fn force_xcm_version() -> Weight { - Weight::from_ref_time(11_906_000 as u64) + Weight::from_parts(11_906_000 as u64, 0) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: PolkadotXcm SafeXcmVersion (r:0 w:1) // Proof Skipped: PolkadotXcm SafeXcmVersion (max_values: Some(1), max_size: None, mode: Measured) fn force_default_xcm_version() -> Weight { - Weight::from_ref_time(3_726_000 as u64) + Weight::from_parts(3_726_000 as u64, 0) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: PolkadotXcm VersionNotifiers (r:1 w:1) @@ -107,7 +107,7 @@ impl pallet_xcm::WeightInfo for WeightInfo { // Storage: PolkadotXcm Queries (r:0 w:1) // Proof Skipped: PolkadotXcm Queries (max_values: None, max_size: None, mode: Measured) fn force_subscribe_version_notify() -> Weight { - Weight::from_ref_time(39_357_000 as u64) + Weight::from_parts(39_357_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -126,28 +126,28 @@ impl pallet_xcm::WeightInfo for WeightInfo { // Storage: PolkadotXcm Queries (r:0 w:1) // Proof Skipped: PolkadotXcm Queries (max_values: None, max_size: None, mode: Measured) fn force_unsubscribe_version_notify() -> Weight { - Weight::from_ref_time(57_944_000 as u64) + Weight::from_parts(57_944_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } // Storage: PolkadotXcm SupportedVersion (r:4 w:2) // Proof Skipped: PolkadotXcm SupportedVersion (max_values: None, max_size: None, mode: Measured) fn migrate_supported_version() -> Weight { - Weight::from_ref_time(33_805_000 as u64) + Weight::from_parts(33_805_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: PolkadotXcm VersionNotifiers (r:4 w:2) // Proof Skipped: PolkadotXcm VersionNotifiers (max_values: None, max_size: None, mode: Measured) fn migrate_version_notifiers() -> Weight { - Weight::from_ref_time(35_045_000 as u64) + Weight::from_parts(35_045_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: PolkadotXcm VersionNotifyTargets (r:5 w:0) // Proof Skipped: PolkadotXcm VersionNotifyTargets (max_values: None, max_size: None, mode: Measured) fn already_notified_target() -> Weight { - Weight::from_ref_time(39_994_000 as u64) + Weight::from_parts(39_994_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(5 as u64)) } // Storage: PolkadotXcm VersionNotifyTargets (r:2 w:1) @@ -163,20 +163,20 @@ impl pallet_xcm::WeightInfo for WeightInfo { // Storage: ParachainSystem PendingUpwardMessages (r:1 w:1) // Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured) fn notify_current_targets() -> Weight { - Weight::from_ref_time(35_628_000 as u64) + Weight::from_parts(35_628_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } // Storage: PolkadotXcm VersionNotifyTargets (r:3 w:0) // Proof Skipped: PolkadotXcm VersionNotifyTargets (max_values: None, max_size: None, mode: Measured) fn notify_target_migration_fail() -> Weight { - Weight::from_ref_time(9_994_000 as u64) + Weight::from_parts(9_994_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) } // Storage: PolkadotXcm VersionNotifyTargets (r:4 w:2) // Proof Skipped: PolkadotXcm VersionNotifyTargets (max_values: None, max_size: None, mode: Measured) fn migrate_version_notify_targets() -> Weight { - Weight::from_ref_time(20_693_000 as u64) + Weight::from_parts(20_693_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -193,7 +193,7 @@ impl pallet_xcm::WeightInfo for WeightInfo { // Storage: ParachainSystem PendingUpwardMessages (r:1 w:1) // Proof Skipped: ParachainSystem PendingUpwardMessages (max_values: Some(1), max_size: None, mode: Measured) fn migrate_and_notify_old_targets() -> Weight { - Weight::from_ref_time(44_084_000 as u64) + Weight::from_parts(44_084_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } diff --git a/runtimes/spiritnet/src/weights/parachain_staking.rs b/runtimes/spiritnet/src/weights/parachain_staking.rs index c42fca2c..040ad9ff 100644 --- a/runtimes/spiritnet/src/weights/parachain_staking.rs +++ b/runtimes/spiritnet/src/weights/parachain_staking.rs @@ -51,13 +51,13 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking Round (r:1 w:0) // Proof: ParachainStaking Round (max_values: Some(1), max_size: Some(20), added: 515, mode: MaxEncodedLen) fn on_initialize_no_action() -> Weight { - Weight::from_ref_time(9_720_000 as u64) + Weight::from_parts(9_720_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: ParachainStaking Round (r:1 w:1) // Proof: ParachainStaking Round (max_values: Some(1), max_size: Some(20), added: 515, mode: MaxEncodedLen) fn on_initialize_round_update() -> Weight { - Weight::from_ref_time(19_583_000 as u64) + Weight::from_parts(19_583_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -72,14 +72,14 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn on_initialize_network_rewards() -> Weight { - Weight::from_ref_time(37_094_000 as u64) + Weight::from_parts(37_094_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: ParachainStaking ForceNewRound (r:0 w:1) // Proof: ParachainStaking ForceNewRound (max_values: Some(1), max_size: Some(1), added: 496, mode: MaxEncodedLen) fn force_new_round() -> Weight { - Weight::from_ref_time(3_573_000 as u64) + Weight::from_parts(3_573_000 as u64, 0) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: ParachainStaking CandidatePool (r:76 w:0) @@ -97,11 +97,11 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking CounterForCandidatePool (r:1 w:0) // Proof: ParachainStaking CounterForCandidatePool (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) fn set_inflation(n: u32, m: u32, ) -> Weight { - Weight::from_ref_time(663_557_000 as u64) + Weight::from_parts(663_557_000 as u64, 0) // Standard Error: 4_566_075 - .saturating_add(Weight::from_ref_time(143_112_464 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(143_112_464 as u64, 0).saturating_mul(n as u64)) // Standard Error: 9_803_263 - .saturating_add(Weight::from_ref_time(269_841_967 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(269_841_967 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(152 as u64)) .saturating_add(T::DbWeight::get().reads((27 as u64).saturating_mul(n as u64))) .saturating_add(T::DbWeight::get().reads((51 as u64).saturating_mul(m as u64))) @@ -118,11 +118,11 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking TotalCollatorStake (r:1 w:1) // Proof: ParachainStaking TotalCollatorStake (max_values: Some(1), max_size: Some(32), added: 527, mode: MaxEncodedLen) fn set_max_selected_candidates(n: u32, m: u32, ) -> Weight { - Weight::from_ref_time(34_791_000 as u64) + Weight::from_parts(34_791_000 as u64, 0) // Standard Error: 22_810 - .saturating_add(Weight::from_ref_time(3_158_790 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(3_158_790 as u64, 0).saturating_mul(n as u64)) // Standard Error: 50_488 - .saturating_add(Weight::from_ref_time(237_373 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(237_373 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(n as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -130,7 +130,7 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking Round (r:1 w:1) // Proof: ParachainStaking Round (max_values: Some(1), max_size: Some(20), added: 515, mode: MaxEncodedLen) fn set_blocks_per_round() -> Weight { - Weight::from_ref_time(24_158_000 as u64) + Weight::from_parts(24_158_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -163,11 +163,11 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking MaxSelectedCandidates (r:1 w:0) // Proof: ParachainStaking MaxSelectedCandidates (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) fn force_remove_candidate(n: u32, m: u32, ) -> Weight { - Weight::from_ref_time(133_321_000 as u64) + Weight::from_parts(133_321_000 as u64, 0) // Standard Error: 23_503 - .saturating_add(Weight::from_ref_time(849_432 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(849_432 as u64, 0).saturating_mul(n as u64)) // Standard Error: 52_141 - .saturating_add(Weight::from_ref_time(24_512_322 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(24_512_322 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(29 as u64)) .saturating_add(T::DbWeight::get().reads((4 as u64).saturating_mul(m as u64))) .saturating_add(T::DbWeight::get().writes(10 as u64)) @@ -194,11 +194,11 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking TotalCollatorStake (r:1 w:1) // Proof: ParachainStaking TotalCollatorStake (max_values: Some(1), max_size: Some(32), added: 527, mode: MaxEncodedLen) fn join_candidates(n: u32, m: u32, ) -> Weight { - Weight::from_ref_time(58_290_006 as u64) + Weight::from_parts(58_290_006 as u64, 0) // Standard Error: 9_768 - .saturating_add(Weight::from_ref_time(452_557 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(452_557 as u64, 0).saturating_mul(n as u64)) // Standard Error: 20_284 - .saturating_add(Weight::from_ref_time(801_802 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(801_802 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -213,11 +213,11 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking TotalCollatorStake (r:1 w:1) // Proof: ParachainStaking TotalCollatorStake (max_values: Some(1), max_size: Some(32), added: 527, mode: MaxEncodedLen) fn init_leave_candidates(n: u32, m: u32, ) -> Weight { - Weight::from_ref_time(82_719_648 as u64) + Weight::from_parts(82_719_648 as u64, 0) // Standard Error: 9_416 - .saturating_add(Weight::from_ref_time(540_449 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(540_449 as u64, 0).saturating_mul(n as u64)) // Standard Error: 15_271 - .saturating_add(Weight::from_ref_time(1_265_189 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(1_265_189 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(21 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -230,11 +230,11 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking TotalCollatorStake (r:1 w:1) // Proof: ParachainStaking TotalCollatorStake (max_values: Some(1), max_size: Some(32), added: 527, mode: MaxEncodedLen) fn cancel_leave_candidates(n: u32, m: u32, ) -> Weight { - Weight::from_ref_time(40_360_490 as u64) + Weight::from_parts(40_360_490 as u64, 0) // Standard Error: 6_610 - .saturating_add(Weight::from_ref_time(244_903 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(244_903 as u64, 0).saturating_mul(n as u64)) // Standard Error: 10_720 - .saturating_add(Weight::from_ref_time(568_999 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(568_999 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -265,11 +265,11 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking CounterForCandidatePool (r:1 w:1) // Proof: ParachainStaking CounterForCandidatePool (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) fn execute_leave_candidates(n: u32, m: u32, ) -> Weight { - Weight::from_ref_time(66_923_000 as u64) + Weight::from_parts(66_923_000 as u64, 0) // Standard Error: 20_476 - .saturating_add(Weight::from_ref_time(750_740 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(750_740 as u64, 0).saturating_mul(n as u64)) // Standard Error: 44_843 - .saturating_add(Weight::from_ref_time(24_654_644 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(24_654_644 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(12 as u64)) .saturating_add(T::DbWeight::get().reads((4 as u64).saturating_mul(m as u64))) .saturating_add(T::DbWeight::get().writes(8 as u64)) @@ -300,13 +300,13 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking InflationConfig (r:1 w:0) // Proof: ParachainStaking InflationConfig (max_values: Some(1), max_size: Some(96), added: 591, mode: MaxEncodedLen) fn candidate_stake_more(n: u32, m: u32, u: u32, ) -> Weight { - Weight::from_ref_time(55_908_884 as u64) + Weight::from_parts(55_908_884 as u64, 0) // Standard Error: 9_777 - .saturating_add(Weight::from_ref_time(500_279 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(500_279 as u64, 0).saturating_mul(n as u64)) // Standard Error: 20_296 - .saturating_add(Weight::from_ref_time(964_901 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(964_901 as u64, 0).saturating_mul(m as u64)) // Standard Error: 75_180 - .saturating_add(Weight::from_ref_time(1_126_340 as u64).saturating_mul(u as u64)) + .saturating_add(Weight::from_parts(1_126_340 as u64, 0).saturating_mul(u as u64)) .saturating_add(T::DbWeight::get().reads(12 as u64)) .saturating_add(T::DbWeight::get().writes(8 as u64)) } @@ -329,11 +329,11 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking InflationConfig (r:1 w:0) // Proof: ParachainStaking InflationConfig (max_values: Some(1), max_size: Some(96), added: 591, mode: MaxEncodedLen) fn candidate_stake_less(n: u32, m: u32, ) -> Weight { - Weight::from_ref_time(45_889_115 as u64) + Weight::from_parts(45_889_115 as u64, 0) // Standard Error: 10_474 - .saturating_add(Weight::from_ref_time(483_213 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(483_213 as u64, 0).saturating_mul(n as u64)) // Standard Error: 21_750 - .saturating_add(Weight::from_ref_time(905_984 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(905_984 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -362,11 +362,11 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking BlocksRewarded (r:0 w:1) // Proof: ParachainStaking BlocksRewarded (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen) fn join_delegators(n: u32, m: u32, ) -> Weight { - Weight::from_ref_time(62_585_140 as u64) + Weight::from_parts(62_585_140 as u64, 0) // Standard Error: 10_255 - .saturating_add(Weight::from_ref_time(588_425 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(588_425 as u64, 0).saturating_mul(n as u64)) // Standard Error: 22_793 - .saturating_add(Weight::from_ref_time(1_193_810 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(1_193_810 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(12 as u64)) .saturating_add(T::DbWeight::get().writes(9 as u64)) } @@ -395,13 +395,13 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking InflationConfig (r:1 w:0) // Proof: ParachainStaking InflationConfig (max_values: Some(1), max_size: Some(96), added: 591, mode: MaxEncodedLen) fn delegator_stake_more(n: u32, m: u32, u: u32, ) -> Weight { - Weight::from_ref_time(66_780_705 as u64) + Weight::from_parts(66_780_705 as u64, 0) // Standard Error: 9_176 - .saturating_add(Weight::from_ref_time(519_243 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(519_243 as u64, 0).saturating_mul(n as u64)) // Standard Error: 20_387 - .saturating_add(Weight::from_ref_time(950_103 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(950_103 as u64, 0).saturating_mul(m as u64)) // Standard Error: 79_072 - .saturating_add(Weight::from_ref_time(1_029_497 as u64).saturating_mul(u as u64)) + .saturating_add(Weight::from_parts(1_029_497 as u64, 0).saturating_mul(u as u64)) .saturating_add(T::DbWeight::get().reads(12 as u64)) .saturating_add(T::DbWeight::get().writes(9 as u64)) } @@ -426,11 +426,11 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking InflationConfig (r:1 w:0) // Proof: ParachainStaking InflationConfig (max_values: Some(1), max_size: Some(96), added: 591, mode: MaxEncodedLen) fn delegator_stake_less(n: u32, m: u32, ) -> Weight { - Weight::from_ref_time(55_304_698 as u64) + Weight::from_parts(55_304_698 as u64, 0) // Standard Error: 10_232 - .saturating_add(Weight::from_ref_time(495_173 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(495_173 as u64, 0).saturating_mul(n as u64)) // Standard Error: 22_742 - .saturating_add(Weight::from_ref_time(960_378 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(960_378 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -455,11 +455,11 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking MaxSelectedCandidates (r:1 w:0) // Proof: ParachainStaking MaxSelectedCandidates (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) fn leave_delegators(n: u32, m: u32, ) -> Weight { - Weight::from_ref_time(62_004_177 as u64) + Weight::from_parts(62_004_177 as u64, 0) // Standard Error: 10_361 - .saturating_add(Weight::from_ref_time(490_342 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(490_342 as u64, 0).saturating_mul(n as u64)) // Standard Error: 23_027 - .saturating_add(Weight::from_ref_time(900_182 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(900_182 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -470,14 +470,14 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn unlock_unstaked(_u: u32, ) -> Weight { - Weight::from_ref_time(40_259_781 as u64) + Weight::from_parts(40_259_781 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } // Storage: ParachainStaking MaxCollatorCandidateStake (r:0 w:1) // Proof: ParachainStaking MaxCollatorCandidateStake (max_values: Some(1), max_size: Some(16), added: 511, mode: MaxEncodedLen) fn set_max_candidate_stake() -> Weight { - Weight::from_ref_time(9_402_000 as u64) + Weight::from_parts(9_402_000 as u64, 0) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: ParachainStaking DelegatorState (r:1 w:0) @@ -493,7 +493,7 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking InflationConfig (r:1 w:0) // Proof: ParachainStaking InflationConfig (max_values: Some(1), max_size: Some(96), added: 591, mode: MaxEncodedLen) fn increment_delegator_rewards() -> Weight { - Weight::from_ref_time(40_524_000 as u64) + Weight::from_parts(40_524_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -510,7 +510,7 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking InflationConfig (r:1 w:0) // Proof: ParachainStaking InflationConfig (max_values: Some(1), max_size: Some(96), added: 591, mode: MaxEncodedLen) fn increment_collator_rewards() -> Weight { - Weight::from_ref_time(24_257_000 as u64) + Weight::from_parts(24_257_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -519,7 +519,7 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn claim_rewards() -> Weight { - Weight::from_ref_time(48_168_000 as u64) + Weight::from_parts(48_168_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -540,11 +540,11 @@ impl parachain_staking::WeightInfo for WeightInfo { // Storage: ParachainStaking CounterForCandidatePool (r:1 w:0) // Proof: ParachainStaking CounterForCandidatePool (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen) fn execute_scheduled_reward_change(n: u32, m: u32, ) -> Weight { - Weight::from_ref_time(657_155_000 as u64) + Weight::from_parts(657_155_000 as u64, 0) // Standard Error: 4_390_482 - .saturating_add(Weight::from_ref_time(136_436_522 as u64).saturating_mul(n as u64)) + .saturating_add(Weight::from_parts(136_436_522 as u64, 0).saturating_mul(n as u64)) // Standard Error: 9_426_268 - .saturating_add(Weight::from_ref_time(263_946_048 as u64).saturating_mul(m as u64)) + .saturating_add(Weight::from_parts(263_946_048 as u64, 0).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(153 as u64)) .saturating_add(T::DbWeight::get().reads((27 as u64).saturating_mul(n as u64))) .saturating_add(T::DbWeight::get().reads((51 as u64).saturating_mul(m as u64))) diff --git a/runtimes/spiritnet/src/weights/public_credentials.rs b/runtimes/spiritnet/src/weights/public_credentials.rs index bcc43a16..89a23b8d 100644 --- a/runtimes/spiritnet/src/weights/public_credentials.rs +++ b/runtimes/spiritnet/src/weights/public_credentials.rs @@ -57,9 +57,9 @@ impl public_credentials::WeightInfo for WeightInfo { // Storage: PublicCredentials CredentialSubjects (r:0 w:1) // Proof: PublicCredentials CredentialSubjects (max_values: None, max_size: Some(312), added: 2787, mode: MaxEncodedLen) fn add(c: u32, ) -> Weight { - Weight::from_ref_time(52_767_011 as u64) + Weight::from_parts(52_767_011 as u64, 0) // Standard Error: 20 - .saturating_add(Weight::from_ref_time(3_182 as u64).saturating_mul(c as u64)) + .saturating_add(Weight::from_parts(3_182 as u64, 0).saturating_mul(c as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -68,7 +68,7 @@ impl public_credentials::WeightInfo for WeightInfo { // Storage: PublicCredentials Credentials (r:1 w:1) // Proof: PublicCredentials Credentials (max_values: None, max_size: Some(475), added: 2950, mode: MaxEncodedLen) fn revoke() -> Weight { - Weight::from_ref_time(27_663_000 as u64) + Weight::from_parts(27_663_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -77,7 +77,7 @@ impl public_credentials::WeightInfo for WeightInfo { // Storage: PublicCredentials Credentials (r:1 w:1) // Proof: PublicCredentials Credentials (max_values: None, max_size: Some(475), added: 2950, mode: MaxEncodedLen) fn unrevoke() -> Weight { - Weight::from_ref_time(27_570_000 as u64) + Weight::from_parts(27_570_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -88,7 +88,7 @@ impl public_credentials::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn remove() -> Weight { - Weight::from_ref_time(45_902_000 as u64) + Weight::from_parts(45_902_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -99,7 +99,7 @@ impl public_credentials::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn reclaim_deposit() -> Weight { - Weight::from_ref_time(68_877_000 as u64) + Weight::from_parts(68_877_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -110,7 +110,7 @@ impl public_credentials::WeightInfo for WeightInfo { // Storage: System Account (r:2 w:2) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn change_deposit_owner() -> Weight { - Weight::from_ref_time(58_093_000 as u64) + Weight::from_parts(58_093_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -121,7 +121,7 @@ impl public_credentials::WeightInfo for WeightInfo { // Storage: System Account (r:1 w:1) // Proof: System Account (max_values: None, max_size: Some(132), added: 2607, mode: MaxEncodedLen) fn update_deposit() -> Weight { - Weight::from_ref_time(54_520_000 as u64) + Weight::from_parts(54_520_000 as u64, 0) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } diff --git a/runtimes/standalone/src/lib.rs b/runtimes/standalone/src/lib.rs index e2bebd5a..c547c807 100644 --- a/runtimes/standalone/src/lib.rs +++ b/runtimes/standalone/src/lib.rs @@ -29,7 +29,7 @@ include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); use frame_support::{ construct_runtime, parameter_types, - traits::{Currency, Everything, InstanceFilter, KeyOwnerProofSystem}, + traits::{Currency, Everything, InstanceFilter}, weights::{constants::RocksDbWeight, ConstantMultiplier, IdentityFee, Weight}, }; pub use frame_system::Call as SystemCall; @@ -43,7 +43,7 @@ use pallet_grandpa::{fg_primitives, AuthorityId as GrandpaId, AuthorityList as G use pallet_transaction_payment::{CurrencyAdapter, FeeDetails}; use sp_api::impl_runtime_apis; use sp_consensus_aura::{ed25519::AuthorityId as AuraId, SlotDuration}; -use sp_core::{crypto::KeyTypeId, ConstU64, OpaqueMetadata}; +use sp_core::{ConstU64, OpaqueMetadata}; use sp_runtime::{ create_runtime_str, generic, impl_opaque_keys, traits::{AccountIdLookup, BlakeTwo256, Block as BlockT, NumberFor, OpaqueKeys}, @@ -212,20 +212,12 @@ impl pallet_aura::Config for Runtime { impl pallet_grandpa::Config for Runtime { type RuntimeEvent = RuntimeEvent; - - type KeyOwnerProofSystem = (); - - type KeyOwnerProof = >::Proof; - - type KeyOwnerIdentification = - >::IdentificationTuple; - - type HandleEquivocation = (); - + type KeyOwnerProof = sp_core::Void; type WeightInfo = (); type MaxAuthorities = MaxAuthorities; // This is a purely random value type MaxSetIdSessionEntries = ConstU64<100>; + type EquivocationReportSystem = (); } parameter_types! { @@ -683,7 +675,6 @@ construct_runtime!( Session: pallet_session = 15, Authorship: pallet_authorship = 16, - // Democracy: pallet_democracy = 25, // Council: pallet_collective = 26, // TechnicalCommittee: pallet_collective = 27,