diff --git a/CHANGELOG.md b/CHANGELOG.md index 41c434a00..4749114c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,25 +7,37 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). At the moment this project **does not** adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased](https://github.com/entropyxyz/entropy-core/compare/release/v0.1.0...master) +## [Unreleased](https://github.com/entropyxyz/entropy-core/compare/release/v0.2.0-rc.1...master) + +## [0.2.0-rc.1](https://github.com/entropyxyz/entropy-core/compare/release/v0.1.0...release/v0.2.0-rc.1) - 2024-06-24 ### Breaking Changes -- In [#866](https://github.com/entropyxyz/entropy-core/pull/866) timestamp was removed from `UserSignatureRequest` and replaced with block_number. Thus check_stale now uses block_number for stale checks +- In [#853](https://github.com/entropyxyz/entropy-core/pull/853) the responsibility of generating a + TSS mnemonic was shifted to operators, which can be done using the `--mnemonic` flag during + process startup. This also allows operators to back up the mnemonic for their TSS. +- In [#856](https://github.com/entropyxyz/entropy-core/pull/856) a new flag, `--mnemonic-option`, + and environment variable `DEPLOYER_MNEMONIC`, were added to the `entropy-test-cli` as ways to + indicate which account to use during registration. This replaces having an account name or + mnemonic directly in the command invocation. +- In [#866](https://github.com/entropyxyz/entropy-core/pull/866) timestamp was removed from + `UserSignatureRequest` and replaced with block_number. Thus check_stale now uses block_number for + stale checks - In [#881](https://github.com/entropyxyz/entropy-core/pull/881) the `HashingAlgorithm` enum is given an additional variant `Blake2_256` and marked as `non_exhaustive` meaning we must handle the case that an unknown variant is added in the future. - - In [#900](https://github.com/entropyxyz/entropy-core/pull/900) the subgroup signer selection now adds a ```.sort()``` function before selecting the index to ensure consistentcy across libraries languages and clients +- In [#900](https://github.com/entropyxyz/entropy-core/pull/900) the subgroup signer selection was + sorted to ensure a predicatble order across libraries, languages and clients. ### Added -- Add a way to change program modification account ([#843](https://github.com/entropyxyz/entropy-core/pull/843)) +- Add a way to change program modification account ([#843](https://github.com/entropyxyz/entropy-core/pull/843)) - Add support for `--mnemonic-file` and `THRESHOLD_SERVER_MNEMONIC` ([#864](https://github.com/entropyxyz/entropy-core/pull/864)) - Add validator helpers to cli ([#870](https://github.com/entropyxyz/entropy-core/pull/870)) -- Add blake2 as built in hash function and make HashingAlgorithm non-exhaustive ([#881](https://github.com/entropyxyz/entropy-core/pull/881)) +- Add `blake2` as built in hash function and make `HashingAlgorithm` non-exhaustive ([#881](https://github.com/entropyxyz/entropy-core/pull/881)) - Add sort to subgroup signer selection ([#900](https://github.com/entropyxyz/entropy-core/pull/900)) - Create four node Docker Compose chainspec ([#902](https://github.com/entropyxyz/entropy-core/pull/902)) ### Changed -- Move TSS mnemonic out of keystore [#853](https://github.com/entropyxyz/entropy-core/pull/853) +- Move TSS mnemonic out of keystore ([#853](https://github.com/entropyxyz/entropy-core/pull/853)) - Prepare test CLI for use in Programs repo ([#856](https://github.com/entropyxyz/entropy-core/pull/856)) - Replace timestamp with block number ([#866](https://github.com/entropyxyz/entropy-core/pull/866)) - Change currency units ([#901](https://github.com/entropyxyz/entropy-core/pull/901)) diff --git a/Cargo.lock b/Cargo.lock index d95a4adad..926bff5f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2358,7 +2358,7 @@ dependencies = [ [[package]] name = "entropy" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "clap", "entropy-runtime", @@ -2434,7 +2434,7 @@ dependencies = [ [[package]] name = "entropy-client" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "anyhow", "base64 0.22.1", @@ -2464,7 +2464,7 @@ dependencies = [ [[package]] name = "entropy-kvdb" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "bincode", "chacha20poly1305 0.9.1", @@ -2509,7 +2509,7 @@ dependencies = [ [[package]] name = "entropy-protocol" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "anyhow", "async-trait", @@ -2549,7 +2549,7 @@ dependencies = [ [[package]] name = "entropy-runtime" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "entropy-shared", "frame-benchmarking", @@ -2632,7 +2632,7 @@ dependencies = [ [[package]] name = "entropy-shared" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "hex-literal", "lazy_static", @@ -2650,7 +2650,7 @@ dependencies = [ [[package]] name = "entropy-test-cli" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "anyhow", "bincode", @@ -2667,7 +2667,7 @@ dependencies = [ [[package]] name = "entropy-testing-utils" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "axum", "entropy-kvdb", @@ -2691,7 +2691,7 @@ dependencies = [ [[package]] name = "entropy-tss" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "anyhow", "axum", @@ -6990,7 +6990,7 @@ dependencies = [ [[package]] name = "pallet-parameters" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "frame-benchmarking", "frame-support 29.0.2", @@ -7023,7 +7023,7 @@ dependencies = [ [[package]] name = "pallet-programs" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "frame-benchmarking", "frame-support 29.0.2", @@ -7041,7 +7041,7 @@ dependencies = [ [[package]] name = "pallet-propagation" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "entropy-shared", "frame-benchmarking", @@ -7106,7 +7106,7 @@ dependencies = [ [[package]] name = "pallet-registry" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "entropy-shared", "frame-benchmarking", @@ -7195,7 +7195,7 @@ dependencies = [ [[package]] name = "pallet-slashing" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7245,7 +7245,7 @@ dependencies = [ [[package]] name = "pallet-staking-extension" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "entropy-shared", "frame-benchmarking", @@ -7342,7 +7342,7 @@ dependencies = [ [[package]] name = "pallet-transaction-pause" -version = "0.1.0" +version = "0.2.0-rc.1" dependencies = [ "frame-benchmarking", "frame-support 29.0.2", diff --git a/RELEASE_CHECKLIST.md b/RELEASE_CHECKLIST.md index 8cf33c889..9f5f66531 100644 --- a/RELEASE_CHECKLIST.md +++ b/RELEASE_CHECKLIST.md @@ -45,7 +45,7 @@ tagged as the final release. - Build the images and spin up the network using `docker compose up` - Register an account using: - `cargo run -p entropy-test-cli -- register \ - One public ./crates/testing-utils/template_barebones.wasm` + public -m //One ./crates/testing-utils/template_barebones.wasm` - Request a signature using: - `cargo run -p entropy-test-cli -- sign \ $VERIFYING_KEY "Hello, Docker Compose"` diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index f0e797ed1..026799715 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name ="entropy-client" -version ="0.1.0" +version ="0.2.0-rc.1" edition ="2021" authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' @@ -11,7 +11,7 @@ repository ='https://github.com/entropyxyz/entropy-core' [dependencies] sha3 ="0.10.8" serde ={ version="1.0", default-features=false, features=["derive"] } -entropy-shared={ version="0.1.0", path="../shared", default-features=false } +entropy-shared={ version="0.2.0-rc.1", path="../shared", default-features=false } subxt ={ version="0.35.3", default-features=false, features=["jsonrpsee"] } num ="0.4.3" thiserror ="1.0.61" @@ -24,7 +24,7 @@ blake2 ={ version="0.10.4", optional=true } rand_core ={ version="0.6.4", optional=true } serde_json ={ version="1.0", optional=true } x25519-dalek ={ version="2.0.1", features=["static_secrets"], optional=true } -entropy-protocol={ version="0.1.0", path="../protocol", optional=true, default-features=false } +entropy-protocol={ version="0.2.0-rc.1", path="../protocol", optional=true, default-features=false } reqwest ={ version="0.12.5", features=["json", "stream"], optional=true } base64 ={ version="0.22.0", optional=true } synedrion ={ version="0.1", optional=true } diff --git a/crates/client/entropy_metadata.scale b/crates/client/entropy_metadata.scale index 1f54d684c..dd72dae04 100644 Binary files a/crates/client/entropy_metadata.scale and b/crates/client/entropy_metadata.scale differ diff --git a/crates/kvdb/Cargo.toml b/crates/kvdb/Cargo.toml index 8bb6a6fe3..7f46cba99 100644 --- a/crates/kvdb/Cargo.toml +++ b/crates/kvdb/Cargo.toml @@ -1,7 +1,7 @@ [package] name ="entropy-kvdb" description="Encrypted key-value database for the Entropy Theshold Signing Server" -version ="0.1.0" +version ="0.2.0-rc.1" authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -32,7 +32,7 @@ tracing={ version="0.1", default-features=false } # Misc sled ="0.34.7" bincode ="1.3.3" -entropy-protocol={ version="0.1.0", path="../protocol" } +entropy-protocol={ version="0.2.0-rc.1", path="../protocol" } [dev-dependencies] serial_test="3.1.1" diff --git a/crates/protocol/Cargo.toml b/crates/protocol/Cargo.toml index a4ded38ac..7b10e362e 100644 --- a/crates/protocol/Cargo.toml +++ b/crates/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='entropy-protocol' -version ='0.1.0' +version ='0.2.0-rc.1' authors =['Entropy Cryptography '] description="Entropy Signing and DKG protocol execution and transport logic" homepage ='https://entropy.xyz/' @@ -10,7 +10,7 @@ edition ='2021' [dependencies] async-trait ="0.1.80" -entropy-shared ={ version="0.1.0", path="../shared", default-features=false } +entropy-shared ={ version="0.2.0-rc.1", path="../shared", default-features=false } synedrion ="0.1" serde ={ version="1.0", features=["derive"], default-features=false } subxt ={ version="0.35.3", default-features=false } diff --git a/crates/shared/Cargo.toml b/crates/shared/Cargo.toml index 89fcf9db2..db02e40be 100644 --- a/crates/shared/Cargo.toml +++ b/crates/shared/Cargo.toml @@ -1,7 +1,7 @@ [package] name ="entropy-shared" description="Shared types used by the Entropy chain node and Entropy Threshold Signing Server" -version ="0.1.0" +version ="0.2.0-rc.1" authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' diff --git a/crates/test-cli/Cargo.toml b/crates/test-cli/Cargo.toml index 7bdcd948f..52a2fbfed 100644 --- a/crates/test-cli/Cargo.toml +++ b/crates/test-cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name ="entropy-test-cli" description="Simple command line interface client for testing Entropy" -version ='0.1.0' +version ='0.2.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -9,7 +9,7 @@ repository ='https://github.com/entropyxyz/entropy-core' edition ='2021' [dependencies] -entropy-client={ version="0.1.0", path="../client" } +entropy-client={ version="0.2.0-rc.1", path="../client" } clap ={ version="4.5.7", features=["derive"] } colored ="2.0.4" subxt ="0.35.3" diff --git a/crates/testing-utils/Cargo.toml b/crates/testing-utils/Cargo.toml index a837fdccc..9f72e4f8b 100644 --- a/crates/testing-utils/Cargo.toml +++ b/crates/testing-utils/Cargo.toml @@ -1,7 +1,7 @@ [package] name ="entropy-testing-utils" description="Utilities for testing the Entropy Threshold Signature Server" -version ='0.1.0' +version ='0.2.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -18,10 +18,10 @@ lazy_static ="1.5.0" hex-literal ="0.4.1" tokio ={ version="1.38", features=["macros", "fs", "rt-multi-thread", "io-util", "process"] } axum ={ version="0.7.5" } -entropy-shared ={ version="0.1.0", path="../shared" } -entropy-kvdb ={ version="0.1.0", path="../kvdb", default-features=false } -entropy-tss ={ version="0.1.0", path="../threshold-signature-server" } -entropy-protocol ={ version="0.1.0", path="../protocol" } +entropy-shared ={ version="0.2.0-rc.1", path="../shared" } +entropy-kvdb ={ version="0.2.0-rc.1", path="../kvdb", default-features=false } +entropy-tss ={ version="0.2.0-rc.1", path="../threshold-signature-server" } +entropy-protocol ={ version="0.2.0-rc.1", path="../protocol" } synedrion ="0.1" hex ="0.4.3" rand_core ="0.6.4" diff --git a/crates/threshold-signature-server/Cargo.toml b/crates/threshold-signature-server/Cargo.toml index 27001fc6b..4aaeaee50 100644 --- a/crates/threshold-signature-server/Cargo.toml +++ b/crates/threshold-signature-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name ="entropy-tss" -version ="0.1.0" +version ="0.2.0-rc.1" authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' description='Entropy threshold signature scheme (TSS) server' @@ -38,10 +38,12 @@ parity-scale-codec="3.6.12" sp-core ={ version="31.0.0", default-features=false } # Entropy -entropy-shared ={ version="0.1.0", path="../shared" } -entropy-kvdb ={ version="0.1.0", path="../kvdb", default-features=false } -entropy-protocol={ version="0.1.0", path="../protocol", features=["server"] } -entropy-client ={ version="0.1.0", path="../client", default-features=false, features=["native"] } +entropy-shared={ version="0.2.0-rc.1", path="../shared" } +entropy-kvdb={ version="0.2.0-rc.1", path="../kvdb", default-features=false } +entropy-protocol={ version="0.2.0-rc.1", path="../protocol", features=["server"] } +entropy-client={ version="0.2.0-rc.1", path="../client", default-features=false, features=[ + "native", +] } # Programs entropy-programs-runtime="0.10.0" diff --git a/node/cli/Cargo.toml b/node/cli/Cargo.toml index ebfa5a85d..d556b2009 100644 --- a/node/cli/Cargo.toml +++ b/node/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='entropy' -version ='0.1.0' +version ='0.2.0-rc.1' description="Entropy substrate node" authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' @@ -90,12 +90,12 @@ pallet-transaction-payment ={ version="29.0.0" } pallet-transaction-payment-rpc={ version="31.0.0" } # Entropy Dependencies -entropy-runtime={ version="0.1.0", path="../../runtime" } -entropy-shared={ version="0.1.0", path="../../crates/shared", default-features=false, features=[ +entropy-runtime={ version="0.2.0-rc.1", path="../../runtime" } +entropy-shared={ version="0.2.0-rc.1", path="../../crates/shared", default-features=false, features=[ "wasm-no-std", ] } -pallet-registry={ version="0.1.0", path="../../pallets/registry" } -pallet-staking-extension={ version="0.1.0", path="../../pallets/staking" } +pallet-registry={ version="0.2.0-rc.1", path="../../pallets/registry" } +pallet-staking-extension={ version="0.2.0-rc.1", path="../../pallets/staking" } project-root="0.2.2" [build-dependencies] diff --git a/pallets/parameters/Cargo.toml b/pallets/parameters/Cargo.toml index 5ce5482bd..ffec968f6 100644 --- a/pallets/parameters/Cargo.toml +++ b/pallets/parameters/Cargo.toml @@ -1,6 +1,6 @@ [package] name ="pallet-parameters" -version ='0.1.0' +version ='0.2.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' diff --git a/pallets/programs/Cargo.toml b/pallets/programs/Cargo.toml index d79f7c058..61478bc47 100644 --- a/pallets/programs/Cargo.toml +++ b/pallets/programs/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='pallet-programs' -version ='0.1.0' +version ='0.2.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' diff --git a/pallets/propagation/Cargo.toml b/pallets/propagation/Cargo.toml index 78f598e65..d56bfb694 100644 --- a/pallets/propagation/Cargo.toml +++ b/pallets/propagation/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='pallet-propagation' -version ='0.1.0' +version ='0.2.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -26,12 +26,12 @@ sp-io ={ version="31.0.0", default-features=false } sp-runtime ={ version="32.0.0", default-features=false } sp-staking ={ version="27.0.0", default-features=false } -entropy-shared={ version="0.1.0", path="../../crates/shared", default-features=false, features=[ +entropy-shared={ version="0.2.0-rc.1", path="../../crates/shared", default-features=false, features=[ "wasm-no-std", ] } -pallet-registry={ version="0.1.0", path="../registry", default-features=false } -pallet-programs={ version="0.1.0", path="../programs", default-features=false } -pallet-staking-extension={ version="0.1.0", path="../staking", default-features=false } +pallet-registry={ version="0.2.0-rc.1", path="../registry", default-features=false } +pallet-programs={ version="0.2.0-rc.1", path="../programs", default-features=false } +pallet-staking-extension={ version="0.2.0-rc.1", path="../staking", default-features=false } [dev-dependencies] parking_lot="0.12.3" diff --git a/pallets/registry/Cargo.toml b/pallets/registry/Cargo.toml index 1fc257fb5..d82bd77ec 100644 --- a/pallets/registry/Cargo.toml +++ b/pallets/registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='pallet-registry' -version ='0.1.0' +version ='0.2.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -26,11 +26,11 @@ sp-core ={ version="29.0.0", default-features=false } sp-runtime ={ version="32.0.0", default-features=false } sp-std ={ version="14.0.0", default-features=false } -entropy-shared={ version="0.1.0", path="../../crates/shared", features=[ +entropy-shared={ version="0.2.0-rc.1", path="../../crates/shared", features=[ "wasm-no-std", ], default-features=false } -pallet-programs={ version="0.1.0", path="../programs", default-features=false } -pallet-staking-extension={ version="0.1.0", path="../staking", default-features=false } +pallet-programs={ version="0.2.0-rc.1", path="../programs", default-features=false } +pallet-staking-extension={ version="0.2.0-rc.1", path="../staking", default-features=false } [dev-dependencies] frame-election-provider-support={ version="29.0.0", default-features=false } diff --git a/pallets/slashing/Cargo.toml b/pallets/slashing/Cargo.toml index f43b675be..aa9b04bff 100644 --- a/pallets/slashing/Cargo.toml +++ b/pallets/slashing/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='pallet-slashing' -version ='0.1.0' +version ='0.2.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' diff --git a/pallets/staking/Cargo.toml b/pallets/staking/Cargo.toml index 240cf14cf..405005571 100644 --- a/pallets/staking/Cargo.toml +++ b/pallets/staking/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='pallet-staking-extension' -version ='0.1.0' +version ='0.2.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -27,7 +27,7 @@ sp-runtime ={ version="32.0.0", default-features=false } sp-staking ={ version="27.0.0", default-features=false } sp-std ={ version="14.0.0", default-features=false } -entropy-shared={ version="0.1.0", path="../../crates/shared", features=[ +entropy-shared={ version="0.2.0-rc.1", path="../../crates/shared", features=[ "wasm-no-std", ], default-features=false } diff --git a/pallets/transaction-pause/Cargo.toml b/pallets/transaction-pause/Cargo.toml index fe857cce5..d8b27bcf8 100644 --- a/pallets/transaction-pause/Cargo.toml +++ b/pallets/transaction-pause/Cargo.toml @@ -1,6 +1,6 @@ [package] name ="pallet-transaction-pause" -version ='0.1.0' +version ='0.2.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -25,7 +25,7 @@ pallet-balances={ version="29.0.0" } sp-core ={ version="29.0.0" } sp-io ={ version="31.0.0" } -pallet-programs={ version="0.1.0", default-features=false, path="../programs" } +pallet-programs={ version="0.2.0-rc.1", default-features=false, path="../programs" } [features] default=["std"] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index f2a3a6297..eaac38abd 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,7 +1,7 @@ [package] name ='entropy-runtime' description="The substrate runtime for the Entropy chain node" -version ='0.1.0' +version ='0.2.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -95,15 +95,15 @@ pallet-utility ={ version="29.0.0", default-featur pallet-vesting ={ version="29.0.0", default-features=false } # Entropy Pallets -pallet-programs ={ version='0.1.0', path='../pallets/programs', default-features=false } -pallet-propagation ={ version='0.1.0', path='../pallets/propagation', default-features=false } -pallet-registry ={ version='0.1.0', path='../pallets/registry', default-features=false } -pallet-slashing ={ version='0.1.0', path='../pallets/slashing', default-features=false } -pallet-staking-extension={ version='0.1.0', path='../pallets/staking', default-features=false } -pallet-transaction-pause={ version='0.1.0', path='../pallets/transaction-pause', default-features=false } -pallet-parameters ={ version='0.1.0', path='../pallets/parameters', default-features=false } +pallet-programs ={ version='0.2.0-rc.1', path='../pallets/programs', default-features=false } +pallet-propagation ={ version='0.2.0-rc.1', path='../pallets/propagation', default-features=false } +pallet-registry ={ version='0.2.0-rc.1', path='../pallets/registry', default-features=false } +pallet-slashing ={ version='0.2.0-rc.1', path='../pallets/slashing', default-features=false } +pallet-staking-extension={ version='0.2.0-rc.1', path='../pallets/staking', default-features=false } +pallet-transaction-pause={ version='0.2.0-rc.1', path='../pallets/transaction-pause', default-features=false } +pallet-parameters ={ version='0.2.0-rc.1', path='../pallets/parameters', default-features=false } -entropy-shared={ version="0.1.0", path="../crates/shared", default-features=false, features=[ +entropy-shared={ version="0.2.0-rc.1", path="../crates/shared", default-features=false, features=[ "wasm-no-std", ] } diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index a820c2eaa..4ec9533de 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -209,7 +209,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // We update this if the runtime behaviour has changed. When this happens we set the // `impl_version` to `0`. #[allow(clippy::zero_prefixed_literal)] - spec_version: 00_01_00, + spec_version: 00_02_00, // We only bump this if the runtime behaviour remains unchanged, but the implementations details // have changed. @@ -223,7 +223,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // call index, parameter changes, etc.). // // The `spec_version` also needs to be bumped in this case. - transaction_version: 6, + transaction_version: 7, // Version of the state implementation to use. // diff --git a/runtime/src/weights/frame_benchmarking.rs b/runtime/src/weights/frame_benchmarking.rs index 241781f26..da8fddcf6 100644 --- a/runtime/src/weights/frame_benchmarking.rs +++ b/runtime/src/weights/frame_benchmarking.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `frame_benchmarking` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -53,8 +53,8 @@ impl frame_benchmarking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 259_000 picoseconds. - Weight::from_parts(314_327, 0) + // Minimum execution time: 268_000 picoseconds. + Weight::from_parts(318_877, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `i` is `[0, 1000000]`. @@ -62,8 +62,8 @@ impl frame_benchmarking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 275_000 picoseconds. - Weight::from_parts(353_472, 0) + // Minimum execution time: 265_000 picoseconds. + Weight::from_parts(332_234, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `i` is `[0, 1000000]`. @@ -71,8 +71,8 @@ impl frame_benchmarking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 265_000 picoseconds. - Weight::from_parts(315_366, 0) + // Minimum execution time: 260_000 picoseconds. + Weight::from_parts(322_797, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `i` is `[0, 1000000]`. @@ -81,15 +81,15 @@ impl frame_benchmarking::WeightInfo for WeightInfo { // Measured: `0` // Estimated: `0` // Minimum execution time: 262_000 picoseconds. - Weight::from_parts(327_787, 0) + Weight::from_parts(326_451, 0) .saturating_add(Weight::from_parts(0, 0)) } fn hashing() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 30_933_915_000 picoseconds. - Weight::from_parts(31_159_176_000, 0) + // Minimum execution time: 31_208_685_000 picoseconds. + Weight::from_parts(31_247_824_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `i` is `[0, 100]`. @@ -97,10 +97,10 @@ impl frame_benchmarking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 379_000 picoseconds. - Weight::from_parts(394_000, 0) + // Minimum execution time: 395_000 picoseconds. + Weight::from_parts(5_731_496, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 10_680 - .saturating_add(Weight::from_parts(45_393_795, 0).saturating_mul(i.into())) + // Standard Error: 5_752 + .saturating_add(Weight::from_parts(41_548_189, 0).saturating_mul(i.into())) } } \ No newline at end of file diff --git a/runtime/src/weights/frame_election_provider_support.rs b/runtime/src/weights/frame_election_provider_support.rs index 99e0b964c..da2102e08 100644 --- a/runtime/src/weights/frame_election_provider_support.rs +++ b/runtime/src/weights/frame_election_provider_support.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `frame_election_provider_support` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -55,13 +55,13 @@ impl frame_election_provider_support::WeightInfo for We // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 9_488_991_000 picoseconds. - Weight::from_parts(9_643_374_000, 0) + // Minimum execution time: 9_649_340_000 picoseconds. + Weight::from_parts(9_769_807_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 194_801 - .saturating_add(Weight::from_parts(8_346_455, 0).saturating_mul(v.into())) - // Standard Error: 19_915_848 - .saturating_add(Weight::from_parts(1_979_898_757, 0).saturating_mul(d.into())) + // Standard Error: 197_459 + .saturating_add(Weight::from_parts(8_442_336, 0).saturating_mul(v.into())) + // Standard Error: 20_187_531 + .saturating_add(Weight::from_parts(2_001_376_701, 0).saturating_mul(d.into())) } /// The range of component `v` is `[1000, 2000]`. /// The range of component `t` is `[500, 1000]`. @@ -70,12 +70,12 @@ impl frame_election_provider_support::WeightInfo for We // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_324_955_000 picoseconds. - Weight::from_parts(6_470_458_000, 0) + // Minimum execution time: 6_199_091_000 picoseconds. + Weight::from_parts(6_238_219_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 165_566 - .saturating_add(Weight::from_parts(6_515_325, 0).saturating_mul(v.into())) - // Standard Error: 16_926_886 - .saturating_add(Weight::from_parts(1_791_053_224, 0).saturating_mul(d.into())) + // Standard Error: 160_928 + .saturating_add(Weight::from_parts(6_428_846, 0).saturating_mul(v.into())) + // Standard Error: 16_452_756 + .saturating_add(Weight::from_parts(1_817_091_514, 0).saturating_mul(d.into())) } } \ No newline at end of file diff --git a/runtime/src/weights/frame_system.rs b/runtime/src/weights/frame_system.rs index 54e640756..eb09dfba2 100644 --- a/runtime/src/weights/frame_system.rs +++ b/runtime/src/weights/frame_system.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `frame_system` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -53,22 +53,22 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_363_000 picoseconds. - Weight::from_parts(3_532_000, 0) + // Minimum execution time: 3_330_000 picoseconds. + Weight::from_parts(7_244_508, 0) .saturating_add(Weight::from_parts(0, 0)) // Standard Error: 0 - .saturating_add(Weight::from_parts(434, 0).saturating_mul(b.into())) + .saturating_add(Weight::from_parts(366, 0).saturating_mul(b.into())) } /// The range of component `b` is `[0, 3932160]`. fn remark_with_event(b: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 8_022_000 picoseconds. - Weight::from_parts(8_348_000, 0) + // Minimum execution time: 8_286_000 picoseconds. + Weight::from_parts(16_575_808, 0) .saturating_add(Weight::from_parts(0, 0)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_478, 0).saturating_mul(b.into())) + .saturating_add(Weight::from_parts(1_361, 0).saturating_mul(b.into())) } /// Storage: `System::Digest` (r:1 w:1) /// Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) @@ -78,8 +78,8 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `1485` - // Minimum execution time: 5_847_000 picoseconds. - Weight::from_parts(6_153_000, 0) + // Minimum execution time: 5_585_000 picoseconds. + Weight::from_parts(5_954_000, 0) .saturating_add(Weight::from_parts(0, 1485)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -92,8 +92,8 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `1485` - // Minimum execution time: 120_786_368_000 picoseconds. - Weight::from_parts(122_197_000_000, 0) + // Minimum execution time: 121_858_799_000 picoseconds. + Weight::from_parts(122_426_575_000, 0) .saturating_add(Weight::from_parts(0, 1485)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -105,11 +105,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_504_000 picoseconds. - Weight::from_parts(3_646_000, 0) + // Minimum execution time: 3_326_000 picoseconds. + Weight::from_parts(3_493_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 974 - .saturating_add(Weight::from_parts(1_033_467, 0).saturating_mul(i.into())) + // Standard Error: 942 + .saturating_add(Weight::from_parts(1_032_110, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -119,11 +119,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_290_000 picoseconds. - Weight::from_parts(3_514_000, 0) + // Minimum execution time: 3_480_000 picoseconds. + Weight::from_parts(3_630_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 948 - .saturating_add(Weight::from_parts(748_947, 0).saturating_mul(i.into())) + // Standard Error: 970 + .saturating_add(Weight::from_parts(751_486, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -133,11 +133,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `102 + p * (69 ±0)` // Estimated: `87 + p * (70 ±0)` - // Minimum execution time: 5_895_000 picoseconds. - Weight::from_parts(6_177_000, 0) + // Minimum execution time: 6_046_000 picoseconds. + Weight::from_parts(6_183_000, 0) .saturating_add(Weight::from_parts(0, 87)) - // Standard Error: 2_580 - .saturating_add(Weight::from_parts(1_421_924, 0).saturating_mul(p.into())) + // Standard Error: 2_228 + .saturating_add(Weight::from_parts(1_405_367, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) .saturating_add(Weight::from_parts(0, 70).saturating_mul(p.into())) @@ -148,8 +148,8 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 21_512_000 picoseconds. - Weight::from_parts(25_110_000, 0) + // Minimum execution time: 15_976_000 picoseconds. + Weight::from_parts(17_480_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -163,8 +163,8 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `22` // Estimated: `1518` - // Minimum execution time: 125_903_295_000 picoseconds. - Weight::from_parts(128_221_652_000, 0) + // Minimum execution time: 127_448_656_000 picoseconds. + Weight::from_parts(128_981_726_000, 0) .saturating_add(Weight::from_parts(0, 1518)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) diff --git a/runtime/src/weights/pallet_babe.rs b/runtime/src/weights/pallet_babe.rs new file mode 100644 index 000000000..cbb2a0f53 --- /dev/null +++ b/runtime/src/weights/pallet_babe.rs @@ -0,0 +1,62 @@ +// Copyright (C) 2023 Entropy Cryptography Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +//! Autogenerated weights for `pallet_babe` +//! +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! WORST CASE MAP SIZE: `1000000` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 + +// Executed Command: +// ./target/release/entropy +// benchmark +// pallet +// --chain +// dev +// --wasm-execution=compiled +// --pallet=pallet_babe +// --extrinsic=* +// --steps=50 +// --repeat=20 +// --header=.maintain/AGPL-3.0-header.txt +// --template +// .maintain/frame-weight-template.hbs +// --output=./runtime/src/weights/ + +#![cfg_attr(rustfmt, rustfmt_skip)] +#![allow(unused_parens)] +#![allow(unused_imports)] +#![allow(missing_docs)] + +use frame_support::{traits::Get, weights::Weight}; +use core::marker::PhantomData; + +/// Weight functions for `pallet_babe`. +pub struct WeightInfo(PhantomData); +impl pallet_babe::WeightInfo for WeightInfo { + /// The range of component `x` is `[0, 1]`. + fn check_equivocation_proof(x: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 99_300_000 picoseconds. + Weight::from_parts(100_173_055, 0) + .saturating_add(Weight::from_parts(0, 0)) + // Standard Error: 64_897 + .saturating_add(Weight::from_parts(224_644, 0).saturating_mul(x.into())) + } +} \ No newline at end of file diff --git a/runtime/src/weights/pallet_bags_list.rs b/runtime/src/weights/pallet_bags_list.rs index 8c1c4cd49..b2f4e2a66 100644 --- a/runtime/src/weights/pallet_bags_list.rs +++ b/runtime/src/weights/pallet_bags_list.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_bags_list` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -60,8 +60,8 @@ impl pallet_bags_list::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1702` // Estimated: `11506` - // Minimum execution time: 72_181_000 picoseconds. - Weight::from_parts(74_588_000, 0) + // Minimum execution time: 76_975_000 picoseconds. + Weight::from_parts(78_145_000, 0) .saturating_add(Weight::from_parts(0, 11506)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(5)) @@ -78,8 +78,8 @@ impl pallet_bags_list::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1599` // Estimated: `8877` - // Minimum execution time: 71_184_000 picoseconds. - Weight::from_parts(72_962_000, 0) + // Minimum execution time: 74_542_000 picoseconds. + Weight::from_parts(76_779_000, 0) .saturating_add(Weight::from_parts(0, 8877)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(5)) @@ -98,8 +98,8 @@ impl pallet_bags_list::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1908` // Estimated: `11506` - // Minimum execution time: 87_831_000 picoseconds. - Weight::from_parts(89_663_000, 0) + // Minimum execution time: 89_622_000 picoseconds. + Weight::from_parts(92_264_000, 0) .saturating_add(Weight::from_parts(0, 11506)) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(6)) diff --git a/runtime/src/weights/pallet_balances.rs b/runtime/src/weights/pallet_balances.rs index aa94357e0..95fd79995 100644 --- a/runtime/src/weights/pallet_balances.rs +++ b/runtime/src/weights/pallet_balances.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_balances` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -54,8 +54,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 67_678_000 picoseconds. - Weight::from_parts(68_914_000, 0) + // Minimum execution time: 68_269_000 picoseconds. + Weight::from_parts(70_005_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -66,8 +66,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 52_991_000 picoseconds. - Weight::from_parts(54_177_000, 0) + // Minimum execution time: 54_590_000 picoseconds. + Weight::from_parts(55_507_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -78,8 +78,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `207` // Estimated: `3593` - // Minimum execution time: 19_329_000 picoseconds. - Weight::from_parts(20_019_000, 0) + // Minimum execution time: 19_667_000 picoseconds. + Weight::from_parts(20_229_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -90,8 +90,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `207` // Estimated: `3593` - // Minimum execution time: 26_907_000 picoseconds. - Weight::from_parts(27_650_000, 0) + // Minimum execution time: 27_385_000 picoseconds. + Weight::from_parts(28_084_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -102,8 +102,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `6196` - // Minimum execution time: 68_695_000 picoseconds. - Weight::from_parts(69_641_000, 0) + // Minimum execution time: 70_474_000 picoseconds. + Weight::from_parts(71_447_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -114,8 +114,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 66_476_000 picoseconds. - Weight::from_parts(67_561_000, 0) + // Minimum execution time: 67_350_000 picoseconds. + Weight::from_parts(68_819_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -126,8 +126,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `207` // Estimated: `3593` - // Minimum execution time: 23_427_000 picoseconds. - Weight::from_parts(24_215_000, 0) + // Minimum execution time: 24_233_000 picoseconds. + Weight::from_parts(25_051_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -139,11 +139,11 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + u * (135 ±0)` // Estimated: `990 + u * (2603 ±0)` - // Minimum execution time: 23_310_000 picoseconds. - Weight::from_parts(23_920_000, 0) + // Minimum execution time: 24_195_000 picoseconds. + Weight::from_parts(24_686_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 19_031 - .saturating_add(Weight::from_parts(19_221_728, 0).saturating_mul(u.into())) + // Standard Error: 19_093 + .saturating_add(Weight::from_parts(19_433_890, 0).saturating_mul(u.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(u.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(u.into()))) .saturating_add(Weight::from_parts(0, 2603).saturating_mul(u.into())) @@ -152,8 +152,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 9_135_000 picoseconds. - Weight::from_parts(9_418_000, 0) + // Minimum execution time: 8_942_000 picoseconds. + Weight::from_parts(9_458_000, 0) .saturating_add(Weight::from_parts(0, 0)) } } \ No newline at end of file diff --git a/runtime/src/weights/pallet_bounties.rs b/runtime/src/weights/pallet_bounties.rs index 24e16656c..8e72b7d79 100644 --- a/runtime/src/weights/pallet_bounties.rs +++ b/runtime/src/weights/pallet_bounties.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_bounties` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -61,61 +61,95 @@ impl pallet_bounties::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `177` // Estimated: `3593` - // Minimum execution time: 33_889_000 picoseconds. - Weight::from_parts(35_775_834, 0) + // Minimum execution time: 34_270_000 picoseconds. + Weight::from_parts(35_942_614, 0) .saturating_add(Weight::from_parts(0, 3593)) - // Standard Error: 6 - .saturating_add(Weight::from_parts(798, 0).saturating_mul(d.into())) + // Standard Error: 7 + .saturating_add(Weight::from_parts(700, 0).saturating_mul(d.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(4)) } + /// Storage: `Bounties::Bounties` (r:1 w:1) + /// Proof: `Bounties::Bounties` (`max_values`: None, `max_size`: Some(177), added: 2652, mode: `MaxEncodedLen`) + /// Storage: `Bounties::BountyApprovals` (r:1 w:1) + /// Proof: `Bounties::BountyApprovals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn approve_bounty() -> Weight { // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `0` - // Minimum execution time: 0_000 picoseconds. - Weight::from_parts(0, 0) - .saturating_add(Weight::from_parts(0, 0)) + // Measured: `269` + // Estimated: `3642` + // Minimum execution time: 16_389_000 picoseconds. + Weight::from_parts(17_304_000, 0) + .saturating_add(Weight::from_parts(0, 3642)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(2)) } + /// Storage: `Bounties::Bounties` (r:1 w:1) + /// Proof: `Bounties::Bounties` (`max_values`: None, `max_size`: Some(177), added: 2652, mode: `MaxEncodedLen`) fn propose_curator() -> Weight { // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `0` - // Minimum execution time: 0_000 picoseconds. - Weight::from_parts(0, 0) - .saturating_add(Weight::from_parts(0, 0)) + // Measured: `289` + // Estimated: `3642` + // Minimum execution time: 15_553_000 picoseconds. + Weight::from_parts(16_541_000, 0) + .saturating_add(Weight::from_parts(0, 3642)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) } + /// Storage: `Bounties::Bounties` (r:1 w:1) + /// Proof: `Bounties::Bounties` (`max_values`: None, `max_size`: Some(177), added: 2652, mode: `MaxEncodedLen`) + /// Storage: `System::Account` (r:1 w:1) + /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) fn unassign_curator() -> Weight { // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `0` - // Minimum execution time: 0_000 picoseconds. - Weight::from_parts(0, 0) - .saturating_add(Weight::from_parts(0, 0)) + // Measured: `499` + // Estimated: `3642` + // Minimum execution time: 49_565_000 picoseconds. + Weight::from_parts(51_242_000, 0) + .saturating_add(Weight::from_parts(0, 3642)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(2)) } + /// Storage: `Bounties::Bounties` (r:1 w:1) + /// Proof: `Bounties::Bounties` (`max_values`: None, `max_size`: Some(177), added: 2652, mode: `MaxEncodedLen`) + /// Storage: `System::Account` (r:1 w:1) + /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) fn accept_curator() -> Weight { // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `0` - // Minimum execution time: 0_000 picoseconds. - Weight::from_parts(0, 0) - .saturating_add(Weight::from_parts(0, 0)) + // Measured: `495` + // Estimated: `3642` + // Minimum execution time: 35_579_000 picoseconds. + Weight::from_parts(36_649_000, 0) + .saturating_add(Weight::from_parts(0, 3642)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(2)) } + /// Storage: `Bounties::Bounties` (r:1 w:1) + /// Proof: `Bounties::Bounties` (`max_values`: None, `max_size`: Some(177), added: 2652, mode: `MaxEncodedLen`) fn award_bounty() -> Weight { // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `0` - // Minimum execution time: 0_000 picoseconds. - Weight::from_parts(0, 0) - .saturating_add(Weight::from_parts(0, 0)) + // Measured: `325` + // Estimated: `3642` + // Minimum execution time: 16_409_000 picoseconds. + Weight::from_parts(17_255_000, 0) + .saturating_add(Weight::from_parts(0, 3642)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) } + /// Storage: `Bounties::Bounties` (r:1 w:1) + /// Proof: `Bounties::Bounties` (`max_values`: None, `max_size`: Some(177), added: 2652, mode: `MaxEncodedLen`) + /// Storage: `System::Account` (r:3 w:3) + /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) + /// Storage: `Bounties::BountyDescriptions` (r:0 w:1) + /// Proof: `Bounties::BountyDescriptions` (`max_values`: None, `max_size`: Some(16400), added: 18875, mode: `MaxEncodedLen`) fn claim_bounty() -> Weight { // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `0` - // Minimum execution time: 0_000 picoseconds. - Weight::from_parts(0, 0) - .saturating_add(Weight::from_parts(0, 0)) + // Measured: `723` + // Estimated: `8799` + // Minimum execution time: 142_697_000 picoseconds. + Weight::from_parts(145_227_000, 0) + .saturating_add(Weight::from_parts(0, 8799)) + .saturating_add(T::DbWeight::get().reads(4)) + .saturating_add(T::DbWeight::get().writes(5)) } /// Storage: `Bounties::Bounties` (r:1 w:1) /// Proof: `Bounties::Bounties` (`max_values`: None, `max_size`: Some(177), added: 2652, mode: `MaxEncodedLen`) @@ -127,37 +161,60 @@ impl pallet_bounties::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `369` // Estimated: `3642` - // Minimum execution time: 36_793_000 picoseconds. - Weight::from_parts(37_954_000, 0) + // Minimum execution time: 49_228_000 picoseconds. + Weight::from_parts(50_863_000, 0) .saturating_add(Weight::from_parts(0, 3642)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) } + /// Storage: `Bounties::Bounties` (r:1 w:1) + /// Proof: `Bounties::Bounties` (`max_values`: None, `max_size`: Some(177), added: 2652, mode: `MaxEncodedLen`) + /// Storage: `System::Account` (r:2 w:2) + /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) + /// Storage: `Bounties::BountyDescriptions` (r:0 w:1) + /// Proof: `Bounties::BountyDescriptions` (`max_values`: None, `max_size`: Some(16400), added: 18875, mode: `MaxEncodedLen`) fn close_bounty_active() -> Weight { // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `0` - // Minimum execution time: 0_000 picoseconds. - Weight::from_parts(0, 0) - .saturating_add(Weight::from_parts(0, 0)) + // Measured: `639` + // Estimated: `6196` + // Minimum execution time: 94_931_000 picoseconds. + Weight::from_parts(97_509_000, 0) + .saturating_add(Weight::from_parts(0, 6196)) + .saturating_add(T::DbWeight::get().reads(3)) + .saturating_add(T::DbWeight::get().writes(4)) } + /// Storage: `Bounties::Bounties` (r:1 w:1) + /// Proof: `Bounties::Bounties` (`max_values`: None, `max_size`: Some(177), added: 2652, mode: `MaxEncodedLen`) fn extend_bounty_expiry() -> Weight { // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `0` - // Minimum execution time: 0_000 picoseconds. - Weight::from_parts(0, 0) - .saturating_add(Weight::from_parts(0, 0)) + // Measured: `325` + // Estimated: `3642` + // Minimum execution time: 16_442_000 picoseconds. + Weight::from_parts(16_932_000, 0) + .saturating_add(Weight::from_parts(0, 3642)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) } /// Storage: `Bounties::BountyApprovals` (r:1 w:1) /// Proof: `Bounties::BountyApprovals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) + /// Storage: `Bounties::Bounties` (r:100 w:100) + /// Proof: `Bounties::Bounties` (`max_values`: None, `max_size`: Some(177), added: 2652, mode: `MaxEncodedLen`) + /// Storage: `System::Account` (r:200 w:200) + /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) /// The range of component `b` is `[0, 100]`. - fn spend_funds(_b: u32, ) -> Weight { + fn spend_funds(b: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `1887` - // Minimum execution time: 0_000 picoseconds. - Weight::from_parts(2_252_992, 0) + // Measured: `121 + b * (296 ±0)` + // Estimated: `1887 + b * (5206 ±0)` + // Minimum execution time: 4_844_000 picoseconds. + Weight::from_parts(4_974_000, 0) .saturating_add(Weight::from_parts(0, 1887)) + // Standard Error: 15_754 + .saturating_add(Weight::from_parts(45_575_085, 0).saturating_mul(b.into())) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(b.into()))) + .saturating_add(T::DbWeight::get().writes(1)) + .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into()))) + .saturating_add(Weight::from_parts(0, 5206).saturating_mul(b.into())) } } \ No newline at end of file diff --git a/runtime/src/weights/pallet_collective.rs b/runtime/src/weights/pallet_collective.rs index 6645ba5d5..f9565a50a 100644 --- a/runtime/src/weights/pallet_collective.rs +++ b/runtime/src/weights/pallet_collective.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_collective` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -63,13 +63,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + m * (3232 ±0) + p * (3190 ±0)` // Estimated: `15762 + m * (1967 ±24) + p * (4332 ±24)` - // Minimum execution time: 19_036_000 picoseconds. - Weight::from_parts(19_329_000, 0) + // Minimum execution time: 19_377_000 picoseconds. + Weight::from_parts(19_795_000, 0) .saturating_add(Weight::from_parts(0, 15762)) - // Standard Error: 63_557 - .saturating_add(Weight::from_parts(4_579_950, 0).saturating_mul(m.into())) - // Standard Error: 63_557 - .saturating_add(Weight::from_parts(9_415_695, 0).saturating_mul(p.into())) + // Standard Error: 65_832 + .saturating_add(Weight::from_parts(4_791_870, 0).saturating_mul(m.into())) + // Standard Error: 65_832 + .saturating_add(Weight::from_parts(9_603_853, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -85,13 +85,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103 + m * (32 ±0)` // Estimated: `1589 + m * (32 ±0)` - // Minimum execution time: 18_196_000 picoseconds. - Weight::from_parts(17_378_277, 0) + // Minimum execution time: 17_856_000 picoseconds. + Weight::from_parts(17_080_027, 0) .saturating_add(Weight::from_parts(0, 1589)) - // Standard Error: 45 - .saturating_add(Weight::from_parts(1_694, 0).saturating_mul(b.into())) - // Standard Error: 468 - .saturating_add(Weight::from_parts(18_608, 0).saturating_mul(m.into())) + // Standard Error: 43 + .saturating_add(Weight::from_parts(1_816, 0).saturating_mul(b.into())) + // Standard Error: 449 + .saturating_add(Weight::from_parts(16_602, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -105,13 +105,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103 + m * (32 ±0)` // Estimated: `3569 + m * (32 ±0)` - // Minimum execution time: 21_567_000 picoseconds. - Weight::from_parts(20_580_119, 0) + // Minimum execution time: 21_587_000 picoseconds. + Weight::from_parts(20_590_965, 0) .saturating_add(Weight::from_parts(0, 3569)) - // Standard Error: 51 - .saturating_add(Weight::from_parts(2_105, 0).saturating_mul(b.into())) - // Standard Error: 533 - .saturating_add(Weight::from_parts(31_170, 0).saturating_mul(m.into())) + // Standard Error: 56 + .saturating_add(Weight::from_parts(1_994, 0).saturating_mul(b.into())) + // Standard Error: 581 + .saturating_add(Weight::from_parts(30_309, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -132,15 +132,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `368 + m * (32 ±0) + p * (36 ±0)` // Estimated: `3806 + m * (33 ±0) + p * (37 ±0)` - // Minimum execution time: 28_728_000 picoseconds. - Weight::from_parts(26_637_309, 0) + // Minimum execution time: 29_038_000 picoseconds. + Weight::from_parts(27_908_197, 0) .saturating_add(Weight::from_parts(0, 3806)) - // Standard Error: 154 - .saturating_add(Weight::from_parts(4_293, 0).saturating_mul(b.into())) - // Standard Error: 1_610 - .saturating_add(Weight::from_parts(24_796, 0).saturating_mul(m.into())) - // Standard Error: 1_589 - .saturating_add(Weight::from_parts(293_083, 0).saturating_mul(p.into())) + // Standard Error: 98 + .saturating_add(Weight::from_parts(4_475, 0).saturating_mul(b.into())) + // Standard Error: 1_027 + .saturating_add(Weight::from_parts(17_935, 0).saturating_mul(m.into())) + // Standard Error: 1_014 + .saturating_add(Weight::from_parts(265_494, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 33).saturating_mul(m.into())) @@ -155,11 +155,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `969 + m * (64 ±0)` // Estimated: `4433 + m * (64 ±0)` - // Minimum execution time: 29_159_000 picoseconds. - Weight::from_parts(31_305_022, 0) + // Minimum execution time: 28_630_000 picoseconds. + Weight::from_parts(29_807_040, 0) .saturating_add(Weight::from_parts(0, 4433)) - // Standard Error: 1_943 - .saturating_add(Weight::from_parts(60_992, 0).saturating_mul(m.into())) + // Standard Error: 800 + .saturating_add(Weight::from_parts(57_259, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -178,13 +178,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `459 + m * (64 ±0) + p * (37 ±0)` // Estimated: `3902 + m * (64 ±0) + p * (37 ±0)` - // Minimum execution time: 32_207_000 picoseconds. - Weight::from_parts(31_896_702, 0) + // Minimum execution time: 31_909_000 picoseconds. + Weight::from_parts(31_556_028, 0) .saturating_add(Weight::from_parts(0, 3902)) - // Standard Error: 1_637 - .saturating_add(Weight::from_parts(38_674, 0).saturating_mul(m.into())) - // Standard Error: 1_596 - .saturating_add(Weight::from_parts(249_771, 0).saturating_mul(p.into())) + // Standard Error: 1_642 + .saturating_add(Weight::from_parts(45_100, 0).saturating_mul(m.into())) + // Standard Error: 1_601 + .saturating_add(Weight::from_parts(239_172, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -205,15 +205,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `499 + b * (1 ±0) + m * (64 ±0) + p * (42 ±0)` // Estimated: `4059 + b * (1 ±0) + m * (63 ±0) + p * (42 ±0)` - // Minimum execution time: 45_993_000 picoseconds. - Weight::from_parts(36_955_766, 0) + // Minimum execution time: 46_013_000 picoseconds. + Weight::from_parts(46_383_251, 0) .saturating_add(Weight::from_parts(0, 4059)) - // Standard Error: 316 - .saturating_add(Weight::from_parts(8_131, 0).saturating_mul(b.into())) - // Standard Error: 3_340 - .saturating_add(Weight::from_parts(78_602, 0).saturating_mul(m.into())) - // Standard Error: 3_256 - .saturating_add(Weight::from_parts(348_592, 0).saturating_mul(p.into())) + // Standard Error: 199 + .saturating_add(Weight::from_parts(3_410, 0).saturating_mul(b.into())) + // Standard Error: 2_106 + .saturating_add(Weight::from_parts(43_608, 0).saturating_mul(m.into())) + // Standard Error: 2_053 + .saturating_add(Weight::from_parts(265_017, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -236,13 +236,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `479 + m * (64 ±0) + p * (37 ±0)` // Estimated: `3922 + m * (64 ±0) + p * (37 ±0)` - // Minimum execution time: 34_770_000 picoseconds. - Weight::from_parts(30_532_657, 0) + // Minimum execution time: 35_049_000 picoseconds. + Weight::from_parts(34_179_615, 0) .saturating_add(Weight::from_parts(0, 3922)) - // Standard Error: 1_976 - .saturating_add(Weight::from_parts(75_327, 0).saturating_mul(m.into())) - // Standard Error: 1_926 - .saturating_add(Weight::from_parts(280_061, 0).saturating_mul(p.into())) + // Standard Error: 1_847 + .saturating_add(Weight::from_parts(49_195, 0).saturating_mul(m.into())) + // Standard Error: 1_801 + .saturating_add(Weight::from_parts(239_343, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -265,15 +265,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `519 + b * (1 ±0) + m * (64 ±0) + p * (42 ±0)` // Estimated: `4079 + b * (1 ±0) + m * (63 ±0) + p * (42 ±0)` - // Minimum execution time: 48_136_000 picoseconds. - Weight::from_parts(49_151_898, 0) + // Minimum execution time: 48_355_000 picoseconds. + Weight::from_parts(49_352_988, 0) .saturating_add(Weight::from_parts(0, 4079)) - // Standard Error: 290 - .saturating_add(Weight::from_parts(2_496, 0).saturating_mul(b.into())) - // Standard Error: 3_070 - .saturating_add(Weight::from_parts(41_857, 0).saturating_mul(m.into())) - // Standard Error: 2_993 - .saturating_add(Weight::from_parts(336_277, 0).saturating_mul(p.into())) + // Standard Error: 186 + .saturating_add(Weight::from_parts(2_610, 0).saturating_mul(b.into())) + // Standard Error: 1_966 + .saturating_add(Weight::from_parts(47_626, 0).saturating_mul(m.into())) + // Standard Error: 1_917 + .saturating_add(Weight::from_parts(267_464, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -291,11 +291,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `260 + p * (32 ±0)` // Estimated: `1745 + p * (32 ±0)` - // Minimum execution time: 17_747_000 picoseconds. - Weight::from_parts(19_005_928, 0) + // Minimum execution time: 17_269_000 picoseconds. + Weight::from_parts(19_337_700, 0) .saturating_add(Weight::from_parts(0, 1745)) - // Standard Error: 1_372 - .saturating_add(Weight::from_parts(239_973, 0).saturating_mul(p.into())) + // Standard Error: 1_411 + .saturating_add(Weight::from_parts(220_352, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(p.into())) diff --git a/runtime/src/weights/pallet_democracy.rs b/runtime/src/weights/pallet_democracy.rs index 416139d59..f5441f5b2 100644 --- a/runtime/src/weights/pallet_democracy.rs +++ b/runtime/src/weights/pallet_democracy.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_democracy` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -60,8 +60,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4734` // Estimated: `18187` - // Minimum execution time: 55_565_000 picoseconds. - Weight::from_parts(58_290_000, 0) + // Minimum execution time: 55_556_000 picoseconds. + Weight::from_parts(56_531_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -72,8 +72,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3489` // Estimated: `6695` - // Minimum execution time: 49_302_000 picoseconds. - Weight::from_parts(50_224_000, 0) + // Minimum execution time: 49_386_000 picoseconds. + Weight::from_parts(50_782_000, 0) .saturating_add(Weight::from_parts(0, 6695)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -90,8 +90,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3437` // Estimated: `7260` - // Minimum execution time: 73_166_000 picoseconds. - Weight::from_parts(76_762_000, 0) + // Minimum execution time: 72_142_000 picoseconds. + Weight::from_parts(73_110_000, 0) .saturating_add(Weight::from_parts(0, 7260)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -108,8 +108,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3459` // Estimated: `7260` - // Minimum execution time: 76_893_000 picoseconds. - Weight::from_parts(84_053_000, 0) + // Minimum execution time: 75_822_000 picoseconds. + Weight::from_parts(77_570_000, 0) .saturating_add(Weight::from_parts(0, 7260)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -124,8 +124,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `299` // Estimated: `3666` - // Minimum execution time: 30_494_000 picoseconds. - Weight::from_parts(31_135_000, 0) + // Minimum execution time: 30_786_000 picoseconds. + Weight::from_parts(32_055_000, 0) .saturating_add(Weight::from_parts(0, 3666)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -148,8 +148,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `5877` // Estimated: `18187` - // Minimum execution time: 129_506_000 picoseconds. - Weight::from_parts(133_246_000, 0) + // Minimum execution time: 127_244_000 picoseconds. + Weight::from_parts(128_800_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(7)) @@ -162,8 +162,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3349` // Estimated: `6703` - // Minimum execution time: 15_719_000 picoseconds. - Weight::from_parts(16_271_000, 0) + // Minimum execution time: 15_430_000 picoseconds. + Weight::from_parts(16_106_000, 0) .saturating_add(Weight::from_parts(0, 6703)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -174,8 +174,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_290_000 picoseconds. - Weight::from_parts(4_405_000, 0) + // Minimum execution time: 4_305_000 picoseconds. + Weight::from_parts(4_523_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -185,8 +185,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_256_000 picoseconds. - Weight::from_parts(4_436_000, 0) + // Minimum execution time: 4_439_000 picoseconds. + Weight::from_parts(4_552_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -202,8 +202,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `219` // Estimated: `3518` - // Minimum execution time: 29_890_000 picoseconds. - Weight::from_parts(31_116_000, 0) + // Minimum execution time: 30_522_000 picoseconds. + Weight::from_parts(31_458_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(5)) @@ -218,8 +218,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3452` // Estimated: `6703` - // Minimum execution time: 33_375_000 picoseconds. - Weight::from_parts(34_717_000, 0) + // Minimum execution time: 34_812_000 picoseconds. + Weight::from_parts(35_806_000, 0) .saturating_add(Weight::from_parts(0, 6703)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -236,8 +236,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `5788` // Estimated: `18187` - // Minimum execution time: 105_600_000 picoseconds. - Weight::from_parts(111_689_000, 0) + // Minimum execution time: 104_811_000 picoseconds. + Weight::from_parts(105_702_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -250,8 +250,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `204` // Estimated: `3518` - // Minimum execution time: 21_137_000 picoseconds. - Weight::from_parts(22_231_000, 0) + // Minimum execution time: 21_495_000 picoseconds. + Weight::from_parts(22_189_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -267,11 +267,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `177 + r * (86 ±0)` // Estimated: `1489 + r * (2676 ±0)` - // Minimum execution time: 6_794_000 picoseconds. - Weight::from_parts(8_309_403, 0) + // Minimum execution time: 6_811_000 picoseconds. + Weight::from_parts(8_400_956, 0) .saturating_add(Weight::from_parts(0, 1489)) - // Standard Error: 8_412 - .saturating_add(Weight::from_parts(3_915_379, 0).saturating_mul(r.into())) + // Standard Error: 8_598 + .saturating_add(Weight::from_parts(4_035_858, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -294,11 +294,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `177 + r * (86 ±0)` // Estimated: `18187 + r * (2676 ±0)` - // Minimum execution time: 10_505_000 picoseconds. - Weight::from_parts(10_208_700, 0) + // Minimum execution time: 10_757_000 picoseconds. + Weight::from_parts(10_986_599, 0) .saturating_add(Weight::from_parts(0, 18187)) - // Standard Error: 7_500 - .saturating_add(Weight::from_parts(3_988_101, 0).saturating_mul(r.into())) + // Standard Error: 9_565 + .saturating_add(Weight::from_parts(4_054_468, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -317,11 +317,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `796 + r * (108 ±0)` // Estimated: `19800 + r * (2676 ±0)` - // Minimum execution time: 51_042_000 picoseconds. - Weight::from_parts(52_665_982, 0) + // Minimum execution time: 50_756_000 picoseconds. + Weight::from_parts(56_869_978, 0) .saturating_add(Weight::from_parts(0, 19800)) - // Standard Error: 13_407 - .saturating_add(Weight::from_parts(5_518_596, 0).saturating_mul(r.into())) + // Standard Error: 11_225 + .saturating_add(Weight::from_parts(5_290_789, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(4)) @@ -337,11 +337,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `426 + r * (108 ±0)` // Estimated: `13530 + r * (2676 ±0)` - // Minimum execution time: 22_762_000 picoseconds. - Weight::from_parts(23_422_706, 0) + // Minimum execution time: 22_789_000 picoseconds. + Weight::from_parts(24_235_519, 0) .saturating_add(Weight::from_parts(0, 13530)) - // Standard Error: 11_608 - .saturating_add(Weight::from_parts(5_342_869, 0).saturating_mul(r.into())) + // Standard Error: 10_504 + .saturating_add(Weight::from_parts(5_256_582, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -354,8 +354,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_342_000 picoseconds. - Weight::from_parts(4_506_000, 0) + // Minimum execution time: 4_352_000 picoseconds. + Weight::from_parts(4_567_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -372,11 +372,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `533` // Estimated: `7260` - // Minimum execution time: 31_907_000 picoseconds. - Weight::from_parts(44_923_591, 0) + // Minimum execution time: 32_562_000 picoseconds. + Weight::from_parts(47_203_554, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 3_462 - .saturating_add(Weight::from_parts(178_629, 0).saturating_mul(r.into())) + // Standard Error: 3_757 + .saturating_add(Weight::from_parts(114_711, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -393,11 +393,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `534 + r * (22 ±0)` // Estimated: `7260` - // Minimum execution time: 41_409_000 picoseconds. - Weight::from_parts(44_744_634, 0) + // Minimum execution time: 41_978_000 picoseconds. + Weight::from_parts(46_745_588, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 2_374 - .saturating_add(Weight::from_parts(198_721, 0).saturating_mul(r.into())) + // Standard Error: 2_033 + .saturating_add(Weight::from_parts(140_091, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -410,11 +410,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `661 + r * (26 ±0)` // Estimated: `7260` - // Minimum execution time: 19_270_000 picoseconds. - Weight::from_parts(22_599_948, 0) + // Minimum execution time: 19_870_000 picoseconds. + Weight::from_parts(24_534_988, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 1_874 - .saturating_add(Weight::from_parts(178_843, 0).saturating_mul(r.into())) + // Standard Error: 2_091 + .saturating_add(Weight::from_parts(138_912, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -427,11 +427,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `661 + r * (26 ±0)` // Estimated: `7260` - // Minimum execution time: 20_504_000 picoseconds. - Weight::from_parts(23_613_399, 0) + // Minimum execution time: 19_920_000 picoseconds. + Weight::from_parts(24_630_659, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 2_060 - .saturating_add(Weight::from_parts(165_806, 0).saturating_mul(r.into())) + // Standard Error: 2_031 + .saturating_add(Weight::from_parts(147_124, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -447,8 +447,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `356` // Estimated: `3556` - // Minimum execution time: 23_602_000 picoseconds. - Weight::from_parts(24_356_000, 0) + // Minimum execution time: 23_218_000 picoseconds. + Weight::from_parts(24_076_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) @@ -461,8 +461,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `219` // Estimated: `3518` - // Minimum execution time: 18_054_000 picoseconds. - Weight::from_parts(18_960_000, 0) + // Minimum execution time: 18_034_000 picoseconds. + Weight::from_parts(18_991_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -479,8 +479,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4888` // Estimated: `18187` - // Minimum execution time: 56_830_000 picoseconds. - Weight::from_parts(61_870_000, 0) + // Minimum execution time: 54_367_000 picoseconds. + Weight::from_parts(55_642_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) @@ -493,8 +493,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4755` // Estimated: `18187` - // Minimum execution time: 47_140_000 picoseconds. - Weight::from_parts(49_153_000, 0) + // Minimum execution time: 48_393_000 picoseconds. + Weight::from_parts(49_243_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -509,8 +509,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `211` // Estimated: `3556` - // Minimum execution time: 18_648_000 picoseconds. - Weight::from_parts(19_230_000, 0) + // Minimum execution time: 18_898_000 picoseconds. + Weight::from_parts(19_576_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -523,8 +523,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `235` // Estimated: `3666` - // Minimum execution time: 21_131_000 picoseconds. - Weight::from_parts(21_893_000, 0) + // Minimum execution time: 21_794_000 picoseconds. + Weight::from_parts(22_731_000, 0) .saturating_add(Weight::from_parts(0, 3666)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/src/weights/pallet_election_provider_multi_phase.rs b/runtime/src/weights/pallet_election_provider_multi_phase.rs index 8c92761be..cf25b8813 100644 --- a/runtime/src/weights/pallet_election_provider_multi_phase.rs +++ b/runtime/src/weights/pallet_election_provider_multi_phase.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_election_provider_multi_phase` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -68,8 +68,8 @@ impl pallet_election_provider_multi_phase::WeightInfo f // Proof Size summary in bytes: // Measured: `913` // Estimated: `3481` - // Minimum execution time: 21_062_000 picoseconds. - Weight::from_parts(21_818_000, 0) + // Minimum execution time: 22_004_000 picoseconds. + Weight::from_parts(22_402_000, 0) .saturating_add(Weight::from_parts(0, 3481)) .saturating_add(T::DbWeight::get().reads(8)) } @@ -81,8 +81,8 @@ impl pallet_election_provider_multi_phase::WeightInfo f // Proof Size summary in bytes: // Measured: `80` // Estimated: `1565` - // Minimum execution time: 12_152_000 picoseconds. - Weight::from_parts(12_545_000, 0) + // Minimum execution time: 12_304_000 picoseconds. + Weight::from_parts(12_759_000, 0) .saturating_add(Weight::from_parts(0, 1565)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -95,8 +95,8 @@ impl pallet_election_provider_multi_phase::WeightInfo f // Proof Size summary in bytes: // Measured: `80` // Estimated: `1565` - // Minimum execution time: 13_065_000 picoseconds. - Weight::from_parts(13_659_000, 0) + // Minimum execution time: 13_455_000 picoseconds. + Weight::from_parts(14_240_000, 0) .saturating_add(Weight::from_parts(0, 1565)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -109,8 +109,8 @@ impl pallet_election_provider_multi_phase::WeightInfo f // Proof Size summary in bytes: // Measured: `174` // Estimated: `3593` - // Minimum execution time: 35_073_000 picoseconds. - Weight::from_parts(35_697_000, 0) + // Minimum execution time: 35_962_000 picoseconds. + Weight::from_parts(36_405_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -121,8 +121,8 @@ impl pallet_election_provider_multi_phase::WeightInfo f // Proof Size summary in bytes: // Measured: `174` // Estimated: `3593` - // Minimum execution time: 23_597_000 picoseconds. - Weight::from_parts(24_093_000, 0) + // Minimum execution time: 24_347_000 picoseconds. + Weight::from_parts(25_195_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -139,11 +139,11 @@ impl pallet_election_provider_multi_phase::WeightInfo f // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 322_822_000 picoseconds. - Weight::from_parts(349_911_000, 0) + // Minimum execution time: 291_915_000 picoseconds. + Weight::from_parts(316_197_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_959 - .saturating_add(Weight::from_parts(247_792, 0).saturating_mul(v.into())) + // Standard Error: 2_454 + .saturating_add(Weight::from_parts(257_800, 0).saturating_mul(v.into())) .saturating_add(T::DbWeight::get().writes(3)) } /// Storage: `ElectionProviderMultiPhase::SignedSubmissionIndices` (r:1 w:1) @@ -170,13 +170,13 @@ impl pallet_election_provider_multi_phase::WeightInfo f // Proof Size summary in bytes: // Measured: `303 + a * (768 ±0) + d * (48 ±0)` // Estimated: `3855 + a * (768 ±0) + d * (49 ±0)` - // Minimum execution time: 471_497_000 picoseconds. - Weight::from_parts(78_196_193, 0) + // Minimum execution time: 504_977_000 picoseconds. + Weight::from_parts(64_584_711, 0) .saturating_add(Weight::from_parts(0, 3855)) - // Standard Error: 7_476 - .saturating_add(Weight::from_parts(671_174, 0).saturating_mul(a.into())) - // Standard Error: 11_206 - .saturating_add(Weight::from_parts(233_638, 0).saturating_mul(d.into())) + // Standard Error: 9_826 + .saturating_add(Weight::from_parts(717_161, 0).saturating_mul(a.into())) + // Standard Error: 14_729 + .saturating_add(Weight::from_parts(250_385, 0).saturating_mul(d.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(8)) .saturating_add(Weight::from_parts(0, 768).saturating_mul(a.into())) @@ -200,8 +200,8 @@ impl pallet_election_provider_multi_phase::WeightInfo f // Proof Size summary in bytes: // Measured: `858` // Estimated: `2343` - // Minimum execution time: 65_435_000 picoseconds. - Weight::from_parts(67_403_000, 0) + // Minimum execution time: 67_156_000 picoseconds. + Weight::from_parts(69_250_000, 0) .saturating_add(Weight::from_parts(0, 2343)) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(3)) @@ -228,13 +228,13 @@ impl pallet_election_provider_multi_phase::WeightInfo f // Proof Size summary in bytes: // Measured: `185 + t * (32 ±0) + v * (553 ±0)` // Estimated: `1670 + t * (32 ±0) + v * (553 ±0)` - // Minimum execution time: 6_520_340_000 picoseconds. - Weight::from_parts(6_787_782_000, 0) + // Minimum execution time: 6_460_520_000 picoseconds. + Weight::from_parts(6_520_107_000, 0) .saturating_add(Weight::from_parts(0, 1670)) - // Standard Error: 18_358 - .saturating_add(Weight::from_parts(261_370, 0).saturating_mul(v.into())) - // Standard Error: 54_404 - .saturating_add(Weight::from_parts(4_827_312, 0).saturating_mul(a.into())) + // Standard Error: 21_091 + .saturating_add(Weight::from_parts(247_146, 0).saturating_mul(v.into())) + // Standard Error: 62_502 + .saturating_add(Weight::from_parts(5_145_310, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(t.into())) @@ -256,13 +256,13 @@ impl pallet_election_provider_multi_phase::WeightInfo f // Proof Size summary in bytes: // Measured: `160 + t * (32 ±0) + v * (553 ±0)` // Estimated: `1645 + t * (32 ±0) + v * (553 ±0)` - // Minimum execution time: 5_798_593_000 picoseconds. - Weight::from_parts(5_920_834_000, 0) + // Minimum execution time: 5_829_104_000 picoseconds. + Weight::from_parts(5_956_614_000, 0) .saturating_add(Weight::from_parts(0, 1645)) - // Standard Error: 16_954 - .saturating_add(Weight::from_parts(320_651, 0).saturating_mul(v.into())) - // Standard Error: 50_241 - .saturating_add(Weight::from_parts(3_933_545, 0).saturating_mul(a.into())) + // Standard Error: 16_731 + .saturating_add(Weight::from_parts(335_948, 0).saturating_mul(v.into())) + // Standard Error: 49_582 + .saturating_add(Weight::from_parts(3_777_770, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(t.into())) .saturating_add(Weight::from_parts(0, 553).saturating_mul(v.into())) diff --git a/runtime/src/weights/pallet_elections_phragmen.rs b/runtime/src/weights/pallet_elections_phragmen.rs index fd1ccbcf4..5acb5c266 100644 --- a/runtime/src/weights/pallet_elections_phragmen.rs +++ b/runtime/src/weights/pallet_elections_phragmen.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_elections_phragmen` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -65,11 +65,11 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `470 + v * (80 ±0)` // Estimated: `4764 + v * (80 ±0)` - // Minimum execution time: 41_908_000 picoseconds. - Weight::from_parts(43_286_258, 0) + // Minimum execution time: 40_647_000 picoseconds. + Weight::from_parts(41_672_553, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 3_854 - .saturating_add(Weight::from_parts(159_460, 0).saturating_mul(v.into())) + // Standard Error: 3_577 + .saturating_add(Weight::from_parts(220_296, 0).saturating_mul(v.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 80).saturating_mul(v.into())) @@ -91,11 +91,11 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `438 + v * (80 ±0)` // Estimated: `4764 + v * (80 ±0)` - // Minimum execution time: 57_614_000 picoseconds. - Weight::from_parts(59_055_445, 0) + // Minimum execution time: 56_152_000 picoseconds. + Weight::from_parts(56_791_622, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 4_247 - .saturating_add(Weight::from_parts(206_448, 0).saturating_mul(v.into())) + // Standard Error: 4_786 + .saturating_add(Weight::from_parts(256_189, 0).saturating_mul(v.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 80).saturating_mul(v.into())) @@ -117,11 +117,11 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `470 + v * (80 ±0)` // Estimated: `4764 + v * (80 ±0)` - // Minimum execution time: 57_442_000 picoseconds. - Weight::from_parts(59_125_250, 0) + // Minimum execution time: 55_169_000 picoseconds. + Weight::from_parts(56_887_914, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 4_717 - .saturating_add(Weight::from_parts(235_497, 0).saturating_mul(v.into())) + // Standard Error: 5_515 + .saturating_add(Weight::from_parts(266_071, 0).saturating_mul(v.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 80).saturating_mul(v.into())) @@ -136,8 +136,8 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `992` // Estimated: `4764` - // Minimum execution time: 59_915_000 picoseconds. - Weight::from_parts(62_311_000, 0) + // Minimum execution time: 58_949_000 picoseconds. + Weight::from_parts(60_800_000, 0) .saturating_add(Weight::from_parts(0, 4764)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -153,11 +153,11 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1603 + c * (48 ±0)` // Estimated: `3088 + c * (48 ±0)` - // Minimum execution time: 44_846_000 picoseconds. - Weight::from_parts(45_933_174, 0) + // Minimum execution time: 42_445_000 picoseconds. + Weight::from_parts(44_853_645, 0) .saturating_add(Weight::from_parts(0, 3088)) - // Standard Error: 2_596 - .saturating_add(Weight::from_parts(178_247, 0).saturating_mul(c.into())) + // Standard Error: 2_447 + .saturating_add(Weight::from_parts(147_257, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 48).saturating_mul(c.into())) @@ -169,11 +169,11 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `318 + c * (48 ±0)` // Estimated: `1803 + c * (48 ±0)` - // Minimum execution time: 39_526_000 picoseconds. - Weight::from_parts(40_637_552, 0) + // Minimum execution time: 37_693_000 picoseconds. + Weight::from_parts(38_570_764, 0) .saturating_add(Weight::from_parts(0, 1803)) - // Standard Error: 2_179 - .saturating_add(Weight::from_parts(121_812, 0).saturating_mul(c.into())) + // Standard Error: 2_026 + .saturating_add(Weight::from_parts(124_772, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 48).saturating_mul(c.into())) @@ -192,8 +192,8 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1868` // Estimated: `3353` - // Minimum execution time: 55_769_000 picoseconds. - Weight::from_parts(57_713_000, 0) + // Minimum execution time: 53_936_000 picoseconds. + Weight::from_parts(55_493_000, 0) .saturating_add(Weight::from_parts(0, 3353)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -204,8 +204,8 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `913` // Estimated: `2398` - // Minimum execution time: 39_518_000 picoseconds. - Weight::from_parts(40_794_000, 0) + // Minimum execution time: 38_159_000 picoseconds. + Weight::from_parts(39_168_000, 0) .saturating_add(Weight::from_parts(0, 2398)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -236,8 +236,8 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1868` // Estimated: `3593` - // Minimum execution time: 61_009_000 picoseconds. - Weight::from_parts(62_636_000, 0) + // Minimum execution time: 59_089_000 picoseconds. + Weight::from_parts(60_204_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -262,13 +262,13 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0 + d * (819 ±0) + v * (56 ±0)` // Estimated: `24939 + d * (3774 ±1) + v * (24 ±0)` - // Minimum execution time: 12_801_000 picoseconds. - Weight::from_parts(16_022_000, 0) + // Minimum execution time: 13_456_000 picoseconds. + Weight::from_parts(15_132_000, 0) .saturating_add(Weight::from_parts(0, 24939)) - // Standard Error: 20_688 - .saturating_add(Weight::from_parts(347_781, 0).saturating_mul(v.into())) - // Standard Error: 45_057 - .saturating_add(Weight::from_parts(81_043_015, 0).saturating_mul(d.into())) + // Standard Error: 24_620 + .saturating_add(Weight::from_parts(119_355, 0).saturating_mul(v.into())) + // Standard Error: 53_620 + .saturating_add(Weight::from_parts(76_798_430, 0).saturating_mul(d.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(d.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(d.into()))) @@ -300,13 +300,13 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0 + e * (28 ±0) + v * (606 ±0)` // Estimated: `178993 + c * (2135 ±7) + e * (12 ±0) + v * (2653 ±6)` - // Minimum execution time: 1_520_171_000 picoseconds. - Weight::from_parts(1_549_926_000, 0) + // Minimum execution time: 1_509_920_000 picoseconds. + Weight::from_parts(1_530_865_000, 0) .saturating_add(Weight::from_parts(0, 178993)) - // Standard Error: 709_854 - .saturating_add(Weight::from_parts(24_021_564, 0).saturating_mul(v.into())) - // Standard Error: 45_545 - .saturating_add(Weight::from_parts(934_920, 0).saturating_mul(e.into())) + // Standard Error: 696_762 + .saturating_add(Weight::from_parts(23_925_801, 0).saturating_mul(v.into())) + // Standard Error: 44_705 + .saturating_add(Weight::from_parts(903_355, 0).saturating_mul(e.into())) .saturating_add(T::DbWeight::get().reads(21)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into()))) diff --git a/runtime/src/weights/pallet_grandpa.rs b/runtime/src/weights/pallet_grandpa.rs new file mode 100644 index 000000000..bd1f9d6f6 --- /dev/null +++ b/runtime/src/weights/pallet_grandpa.rs @@ -0,0 +1,71 @@ +// Copyright (C) 2023 Entropy Cryptography Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +//! Autogenerated weights for `pallet_grandpa` +//! +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! WORST CASE MAP SIZE: `1000000` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 + +// Executed Command: +// ./target/release/entropy +// benchmark +// pallet +// --chain +// dev +// --wasm-execution=compiled +// --pallet=pallet_grandpa +// --extrinsic=* +// --steps=50 +// --repeat=20 +// --header=.maintain/AGPL-3.0-header.txt +// --template +// .maintain/frame-weight-template.hbs +// --output=./runtime/src/weights/ + +#![cfg_attr(rustfmt, rustfmt_skip)] +#![allow(unused_parens)] +#![allow(unused_imports)] +#![allow(missing_docs)] + +use frame_support::{traits::Get, weights::Weight}; +use core::marker::PhantomData; + +/// Weight functions for `pallet_grandpa`. +pub struct WeightInfo(PhantomData); +impl pallet_grandpa::WeightInfo for WeightInfo { + /// The range of component `x` is `[0, 1]`. + fn check_equivocation_proof(_x: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 106_655_000 picoseconds. + Weight::from_parts(107_555_777, 0) + .saturating_add(Weight::from_parts(0, 0)) + } + /// Storage: `Grandpa::Stalled` (r:0 w:1) + /// Proof: `Grandpa::Stalled` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`) + fn note_stalled() -> Weight { + // Proof Size summary in bytes: + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 4_153_000 picoseconds. + Weight::from_parts(4_482_000, 0) + .saturating_add(Weight::from_parts(0, 0)) + .saturating_add(T::DbWeight::get().writes(1)) + } +} \ No newline at end of file diff --git a/runtime/src/weights/pallet_identity.rs b/runtime/src/weights/pallet_identity.rs index 169103a28..80778acff 100644 --- a/runtime/src/weights/pallet_identity.rs +++ b/runtime/src/weights/pallet_identity.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_identity` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -55,11 +55,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `32 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 11_583_000 picoseconds. - Weight::from_parts(12_388_038, 0) + // Minimum execution time: 11_748_000 picoseconds. + Weight::from_parts(12_298_508, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_793 - .saturating_add(Weight::from_parts(117_370, 0).saturating_mul(r.into())) + // Standard Error: 1_784 + .saturating_add(Weight::from_parts(130_138, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -70,11 +70,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `6978 + r * (5 ±0)` // Estimated: `11037` - // Minimum execution time: 154_532_000 picoseconds. - Weight::from_parts(156_937_186, 0) + // Minimum execution time: 153_991_000 picoseconds. + Weight::from_parts(159_732_338, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 8_323 - .saturating_add(Weight::from_parts(267_460, 0).saturating_mul(r.into())) + // Standard Error: 20_616 + .saturating_add(Weight::from_parts(255_840, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -89,11 +89,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `11037 + s * (2589 ±0)` - // Minimum execution time: 13_118_000 picoseconds. - Weight::from_parts(31_701_744, 0) + // Minimum execution time: 12_959_000 picoseconds. + Weight::from_parts(31_119_368, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 4_807 - .saturating_add(Weight::from_parts(4_818_421, 0).saturating_mul(s.into())) + // Standard Error: 7_764 + .saturating_add(Weight::from_parts(4_866_578, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -111,11 +111,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `194 + p * (32 ±0)` // Estimated: `11037` - // Minimum execution time: 13_087_000 picoseconds. - Weight::from_parts(29_977_752, 0) + // Minimum execution time: 12_933_000 picoseconds. + Weight::from_parts(30_261_531, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 3_960 - .saturating_add(Weight::from_parts(1_975_460, 0).saturating_mul(p.into())) + // Standard Error: 5_267 + .saturating_add(Weight::from_parts(2_019_157, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) @@ -132,13 +132,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `7070 + r * (5 ±0) + s * (32 ±0)` // Estimated: `11037` - // Minimum execution time: 79_769_000 picoseconds. - Weight::from_parts(74_584_460, 0) + // Minimum execution time: 76_085_000 picoseconds. + Weight::from_parts(73_229_569, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 12_552 - .saturating_add(Weight::from_parts(442_590, 0).saturating_mul(r.into())) - // Standard Error: 2_449 - .saturating_add(Weight::from_parts(1_996_242, 0).saturating_mul(s.into())) + // Standard Error: 26_409 + .saturating_add(Weight::from_parts(361_385, 0).saturating_mul(r.into())) + // Standard Error: 5_153 + .saturating_add(Weight::from_parts(2_037_847, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) @@ -152,11 +152,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `6968 + r * (57 ±0)` // Estimated: `11037` - // Minimum execution time: 106_850_000 picoseconds. - Weight::from_parts(108_241_139, 0) + // Minimum execution time: 106_382_000 picoseconds. + Weight::from_parts(108_829_005, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 4_761 - .saturating_add(Weight::from_parts(241_064, 0).saturating_mul(r.into())) + // Standard Error: 10_984 + .saturating_add(Weight::from_parts(250_782, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -167,11 +167,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `6999` // Estimated: `11037` - // Minimum execution time: 104_080_000 picoseconds. - Weight::from_parts(107_057_289, 0) + // Minimum execution time: 104_564_000 picoseconds. + Weight::from_parts(106_705_679, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 9_562 - .saturating_add(Weight::from_parts(61_834, 0).saturating_mul(r.into())) + // Standard Error: 17_414 + .saturating_add(Weight::from_parts(294_289, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -182,11 +182,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 8_274_000 picoseconds. - Weight::from_parts(8_742_882, 0) + // Minimum execution time: 8_345_000 picoseconds. + Weight::from_parts(8_804_007, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_454 - .saturating_add(Weight::from_parts(97_163, 0).saturating_mul(r.into())) + // Standard Error: 1_643 + .saturating_add(Weight::from_parts(105_845, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -197,11 +197,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 8_389_000 picoseconds. - Weight::from_parts(8_822_859, 0) + // Minimum execution time: 8_299_000 picoseconds. + Weight::from_parts(8_886_459, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_373 - .saturating_add(Weight::from_parts(98_036, 0).saturating_mul(r.into())) + // Standard Error: 1_433 + .saturating_add(Weight::from_parts(107_806, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -212,11 +212,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 8_291_000 picoseconds. - Weight::from_parts(8_695_355, 0) + // Minimum execution time: 8_378_000 picoseconds. + Weight::from_parts(8_724_606, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_480 - .saturating_add(Weight::from_parts(102_016, 0).saturating_mul(r.into())) + // Standard Error: 1_530 + .saturating_add(Weight::from_parts(110_250, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -229,11 +229,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `7046 + r * (57 ±0)` // Estimated: `11037` - // Minimum execution time: 134_437_000 picoseconds. - Weight::from_parts(136_677_928, 0) + // Minimum execution time: 133_211_000 picoseconds. + Weight::from_parts(137_054_318, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 7_957 - .saturating_add(Weight::from_parts(209_017, 0).saturating_mul(r.into())) + // Standard Error: 12_125 + .saturating_add(Weight::from_parts(140_320, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -251,13 +251,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `7277 + r * (5 ±0) + s * (32 ±0)` // Estimated: `11037` - // Minimum execution time: 94_650_000 picoseconds. - Weight::from_parts(91_875_039, 0) + // Minimum execution time: 94_469_000 picoseconds. + Weight::from_parts(91_780_792, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 10_917 - .saturating_add(Weight::from_parts(448_291, 0).saturating_mul(r.into())) - // Standard Error: 2_130 - .saturating_add(Weight::from_parts(1_995_556, 0).saturating_mul(s.into())) + // Standard Error: 29_147 + .saturating_add(Weight::from_parts(412_002, 0).saturating_mul(r.into())) + // Standard Error: 5_687 + .saturating_add(Weight::from_parts(2_042_432, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) @@ -273,11 +273,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `475 + s * (36 ±0)` // Estimated: `11037` - // Minimum execution time: 37_311_000 picoseconds. - Weight::from_parts(41_558_825, 0) + // Minimum execution time: 37_479_000 picoseconds. + Weight::from_parts(41_825_607, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 1_329 - .saturating_add(Weight::from_parts(112_571, 0).saturating_mul(s.into())) + // Standard Error: 1_488 + .saturating_add(Weight::from_parts(116_649, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -290,11 +290,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `591 + s * (3 ±0)` // Estimated: `11037` - // Minimum execution time: 17_383_000 picoseconds. - Weight::from_parts(19_157_414, 0) + // Minimum execution time: 17_235_000 picoseconds. + Weight::from_parts(19_333_812, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 511 - .saturating_add(Weight::from_parts(46_009, 0).saturating_mul(s.into())) + // Standard Error: 618 + .saturating_add(Weight::from_parts(49_816, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -309,11 +309,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `638 + s * (35 ±0)` // Estimated: `11037` - // Minimum execution time: 40_886_000 picoseconds. - Weight::from_parts(43_411_937, 0) + // Minimum execution time: 40_474_000 picoseconds. + Weight::from_parts(43_534_618, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 925 - .saturating_add(Weight::from_parts(99_038, 0).saturating_mul(s.into())) + // Standard Error: 1_152 + .saturating_add(Weight::from_parts(102_570, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -328,11 +328,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `704 + s * (37 ±0)` // Estimated: `6723` - // Minimum execution time: 30_179_000 picoseconds. - Weight::from_parts(32_420_944, 0) + // Minimum execution time: 30_494_000 picoseconds. + Weight::from_parts(32_925_810, 0) .saturating_add(Weight::from_parts(0, 6723)) - // Standard Error: 1_039 - .saturating_add(Weight::from_parts(93_800, 0).saturating_mul(s.into())) + // Standard Error: 1_016 + .saturating_add(Weight::from_parts(100_851, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -342,8 +342,8 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 10_092_000 picoseconds. - Weight::from_parts(10_402_000, 0) + // Minimum execution time: 9_609_000 picoseconds. + Weight::from_parts(10_135_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -353,8 +353,8 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `80` // Estimated: `3517` - // Minimum execution time: 13_189_000 picoseconds. - Weight::from_parts(13_547_000, 0) + // Minimum execution time: 13_273_000 picoseconds. + Weight::from_parts(13_591_000, 0) .saturating_add(Weight::from_parts(0, 3517)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -371,8 +371,8 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `80` // Estimated: `11037` - // Minimum execution time: 82_115_000 picoseconds. - Weight::from_parts(83_657_000, 0) + // Minimum execution time: 79_216_000 picoseconds. + Weight::from_parts(81_077_000, 0) .saturating_add(Weight::from_parts(0, 11037)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -387,8 +387,8 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `115` // Estimated: `11037` - // Minimum execution time: 29_012_000 picoseconds. - Weight::from_parts(29_788_000, 0) + // Minimum execution time: 28_663_000 picoseconds. + Weight::from_parts(29_467_000, 0) .saturating_add(Weight::from_parts(0, 11037)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) @@ -399,8 +399,8 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `115` // Estimated: `3550` - // Minimum execution time: 17_974_000 picoseconds. - Weight::from_parts(20_694_000, 0) + // Minimum execution time: 17_432_000 picoseconds. + Weight::from_parts(19_454_000, 0) .saturating_add(Weight::from_parts(0, 3550)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -413,8 +413,8 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `257` // Estimated: `11037` - // Minimum execution time: 22_404_000 picoseconds. - Weight::from_parts(23_135_000, 0) + // Minimum execution time: 22_288_000 picoseconds. + Weight::from_parts(23_189_000, 0) .saturating_add(Weight::from_parts(0, 11037)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -427,8 +427,8 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `98` // Estimated: `11037` - // Minimum execution time: 16_082_000 picoseconds. - Weight::from_parts(16_446_000, 0) + // Minimum execution time: 16_109_000 picoseconds. + Weight::from_parts(16_593_000, 0) .saturating_add(Weight::from_parts(0, 11037)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/src/weights/pallet_im_online.rs b/runtime/src/weights/pallet_im_online.rs index 94d685ace..71f740b1c 100644 --- a/runtime/src/weights/pallet_im_online.rs +++ b/runtime/src/weights/pallet_im_online.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_im_online` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -63,11 +63,11 @@ impl pallet_im_online::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `460 + k * (32 ±0)` // Estimated: `321487 + k * (1761 ±0)` - // Minimum execution time: 74_969_000 picoseconds. - Weight::from_parts(92_709_666, 0) + // Minimum execution time: 75_237_000 picoseconds. + Weight::from_parts(93_773_141, 0) .saturating_add(Weight::from_parts(0, 321487)) - // Standard Error: 517 - .saturating_add(Weight::from_parts(38_911, 0).saturating_mul(k.into())) + // Standard Error: 625 + .saturating_add(Weight::from_parts(38_197, 0).saturating_mul(k.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 1761).saturating_mul(k.into())) diff --git a/runtime/src/weights/pallet_indices.rs b/runtime/src/weights/pallet_indices.rs index bc0840b1a..d8d5b1797 100644 --- a/runtime/src/weights/pallet_indices.rs +++ b/runtime/src/weights/pallet_indices.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_indices` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -54,8 +54,8 @@ impl pallet_indices::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3534` - // Minimum execution time: 28_937_000 picoseconds. - Weight::from_parts(29_909_000, 0) + // Minimum execution time: 29_828_000 picoseconds. + Weight::from_parts(30_689_000, 0) .saturating_add(Weight::from_parts(0, 3534)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -68,8 +68,8 @@ impl pallet_indices::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `275` // Estimated: `3593` - // Minimum execution time: 43_297_000 picoseconds. - Weight::from_parts(44_603_000, 0) + // Minimum execution time: 44_989_000 picoseconds. + Weight::from_parts(46_095_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -80,8 +80,8 @@ impl pallet_indices::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `172` // Estimated: `3534` - // Minimum execution time: 30_560_000 picoseconds. - Weight::from_parts(31_259_000, 0) + // Minimum execution time: 30_706_000 picoseconds. + Weight::from_parts(31_993_000, 0) .saturating_add(Weight::from_parts(0, 3534)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -94,8 +94,8 @@ impl pallet_indices::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `275` // Estimated: `3593` - // Minimum execution time: 32_538_000 picoseconds. - Weight::from_parts(33_528_000, 0) + // Minimum execution time: 33_308_000 picoseconds. + Weight::from_parts(34_209_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -106,8 +106,8 @@ impl pallet_indices::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `172` // Estimated: `3534` - // Minimum execution time: 31_909_000 picoseconds. - Weight::from_parts(32_739_000, 0) + // Minimum execution time: 32_936_000 picoseconds. + Weight::from_parts(33_906_000, 0) .saturating_add(Weight::from_parts(0, 3534)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/src/weights/pallet_membership.rs b/runtime/src/weights/pallet_membership.rs index c37b31f58..88f2ac033 100644 --- a/runtime/src/weights/pallet_membership.rs +++ b/runtime/src/weights/pallet_membership.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_membership` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -61,11 +61,11 @@ impl pallet_membership::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `140 + m * (64 ±0)` // Estimated: `4687 + m * (64 ±0)` - // Minimum execution time: 16_325_000 picoseconds. - Weight::from_parts(16_979_773, 0) + // Minimum execution time: 15_929_000 picoseconds. + Weight::from_parts(16_900_192, 0) .saturating_add(Weight::from_parts(0, 4687)) - // Standard Error: 589 - .saturating_add(Weight::from_parts(33_631, 0).saturating_mul(m.into())) + // Standard Error: 561 + .saturating_add(Weight::from_parts(36_783, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -85,11 +85,11 @@ impl pallet_membership::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `244 + m * (64 ±0)` // Estimated: `4687 + m * (64 ±0)` - // Minimum execution time: 19_203_000 picoseconds. - Weight::from_parts(19_924_601, 0) + // Minimum execution time: 19_191_000 picoseconds. + Weight::from_parts(20_090_794, 0) .saturating_add(Weight::from_parts(0, 4687)) - // Standard Error: 531 - .saturating_add(Weight::from_parts(35_430, 0).saturating_mul(m.into())) + // Standard Error: 560 + .saturating_add(Weight::from_parts(33_946, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -109,11 +109,11 @@ impl pallet_membership::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `244 + m * (64 ±0)` // Estimated: `4687 + m * (64 ±0)` - // Minimum execution time: 19_497_000 picoseconds. - Weight::from_parts(20_302_445, 0) + // Minimum execution time: 19_481_000 picoseconds. + Weight::from_parts(20_385_510, 0) .saturating_add(Weight::from_parts(0, 4687)) - // Standard Error: 617 - .saturating_add(Weight::from_parts(48_865, 0).saturating_mul(m.into())) + // Standard Error: 664 + .saturating_add(Weight::from_parts(45_773, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -133,11 +133,11 @@ impl pallet_membership::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `244 + m * (64 ±0)` // Estimated: `4687 + m * (64 ±0)` - // Minimum execution time: 19_368_000 picoseconds. - Weight::from_parts(20_856_643, 0) + // Minimum execution time: 18_759_000 picoseconds. + Weight::from_parts(20_934_776, 0) .saturating_add(Weight::from_parts(0, 4687)) - // Standard Error: 916 - .saturating_add(Weight::from_parts(148_162, 0).saturating_mul(m.into())) + // Standard Error: 1_100 + .saturating_add(Weight::from_parts(152_913, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -157,11 +157,11 @@ impl pallet_membership::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `244 + m * (64 ±0)` // Estimated: `4687 + m * (64 ±0)` - // Minimum execution time: 20_144_000 picoseconds. - Weight::from_parts(21_232_882, 0) + // Minimum execution time: 20_347_000 picoseconds. + Weight::from_parts(21_384_653, 0) .saturating_add(Weight::from_parts(0, 4687)) - // Standard Error: 619 - .saturating_add(Weight::from_parts(45_436, 0).saturating_mul(m.into())) + // Standard Error: 744 + .saturating_add(Weight::from_parts(48_146, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -177,11 +177,11 @@ impl pallet_membership::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `32 + m * (32 ±0)` // Estimated: `4687 + m * (32 ±0)` - // Minimum execution time: 8_053_000 picoseconds. - Weight::from_parts(8_575_131, 0) + // Minimum execution time: 8_134_000 picoseconds. + Weight::from_parts(8_608_768, 0) .saturating_add(Weight::from_parts(0, 4687)) - // Standard Error: 383 - .saturating_add(Weight::from_parts(18_810, 0).saturating_mul(m.into())) + // Standard Error: 285 + .saturating_add(Weight::from_parts(17_653, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) @@ -191,15 +191,13 @@ impl pallet_membership::WeightInfo for WeightInfo { /// Storage: `TechnicalCommittee::Prime` (r:0 w:1) /// Proof: `TechnicalCommittee::Prime` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// The range of component `m` is `[1, 100]`. - fn clear_prime(m: u32, ) -> Weight { + fn clear_prime(_m: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_718_000 picoseconds. - Weight::from_parts(4_014_740, 0) + // Minimum execution time: 3_727_000 picoseconds. + Weight::from_parts(4_170_697, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 116 - .saturating_add(Weight::from_parts(745, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().writes(2)) } } \ No newline at end of file diff --git a/runtime/src/weights/pallet_multisig.rs b/runtime/src/weights/pallet_multisig.rs index fb3e057dc..57507639a 100644 --- a/runtime/src/weights/pallet_multisig.rs +++ b/runtime/src/weights/pallet_multisig.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_multisig` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -53,11 +53,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 17_272_000 picoseconds. - Weight::from_parts(18_114_346, 0) + // Minimum execution time: 17_598_000 picoseconds. + Weight::from_parts(18_251_472, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 3 - .saturating_add(Weight::from_parts(527, 0).saturating_mul(z.into())) + // Standard Error: 2 + .saturating_add(Weight::from_parts(517, 0).saturating_mul(z.into())) } /// Storage: `Multisig::Multisigs` (r:1 w:1) /// Proof: `Multisig::Multisigs` (`max_values`: None, `max_size`: Some(3346), added: 5821, mode: `MaxEncodedLen`) @@ -67,13 +67,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `296 + s * (2 ±0)` // Estimated: `6811` - // Minimum execution time: 52_073_000 picoseconds. - Weight::from_parts(40_610_239, 0) + // Minimum execution time: 52_821_000 picoseconds. + Weight::from_parts(41_340_281, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 760 - .saturating_add(Weight::from_parts(128_888, 0).saturating_mul(s.into())) - // Standard Error: 7 - .saturating_add(Weight::from_parts(1_495, 0).saturating_mul(z.into())) + // Standard Error: 983 + .saturating_add(Weight::from_parts(133_499, 0).saturating_mul(s.into())) + // Standard Error: 9 + .saturating_add(Weight::from_parts(1_462, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -85,13 +85,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `315` // Estimated: `6811` - // Minimum execution time: 32_364_000 picoseconds. - Weight::from_parts(22_086_313, 0) + // Minimum execution time: 33_055_000 picoseconds. + Weight::from_parts(22_914_756, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 563 - .saturating_add(Weight::from_parts(118_816, 0).saturating_mul(s.into())) - // Standard Error: 5 - .saturating_add(Weight::from_parts(1_508, 0).saturating_mul(z.into())) + // Standard Error: 632 + .saturating_add(Weight::from_parts(122_611, 0).saturating_mul(s.into())) + // Standard Error: 6 + .saturating_add(Weight::from_parts(1_487, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -105,13 +105,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `421 + s * (33 ±0)` // Estimated: `6811` - // Minimum execution time: 58_023_000 picoseconds. - Weight::from_parts(44_390_866, 0) + // Minimum execution time: 58_455_000 picoseconds. + Weight::from_parts(46_235_027, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 1_275 - .saturating_add(Weight::from_parts(173_562, 0).saturating_mul(s.into())) - // Standard Error: 12 - .saturating_add(Weight::from_parts(1_528, 0).saturating_mul(z.into())) + // Standard Error: 1_580 + .saturating_add(Weight::from_parts(160_182, 0).saturating_mul(s.into())) + // Standard Error: 15 + .saturating_add(Weight::from_parts(1_527, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -122,11 +122,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `296 + s * (2 ±0)` // Estimated: `6811` - // Minimum execution time: 38_103_000 picoseconds. - Weight::from_parts(39_112_925, 0) + // Minimum execution time: 37_936_000 picoseconds. + Weight::from_parts(39_779_528, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 764 - .saturating_add(Weight::from_parts(133_632, 0).saturating_mul(s.into())) + // Standard Error: 1_050 + .saturating_add(Weight::from_parts(133_533, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -137,11 +137,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `315` // Estimated: `6811` - // Minimum execution time: 20_240_000 picoseconds. - Weight::from_parts(21_303_523, 0) + // Minimum execution time: 20_574_000 picoseconds. + Weight::from_parts(22_128_442, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 731 - .saturating_add(Weight::from_parts(115_094, 0).saturating_mul(s.into())) + // Standard Error: 1_262 + .saturating_add(Weight::from_parts(118_280, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -152,11 +152,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `487 + s * (1 ±0)` // Estimated: `6811` - // Minimum execution time: 39_170_000 picoseconds. - Weight::from_parts(40_926_190, 0) + // Minimum execution time: 39_123_000 picoseconds. + Weight::from_parts(41_869_928, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 980 - .saturating_add(Weight::from_parts(119_071, 0).saturating_mul(s.into())) + // Standard Error: 3_142 + .saturating_add(Weight::from_parts(122_767, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/src/weights/pallet_offences.rs b/runtime/src/weights/pallet_offences.rs new file mode 100644 index 000000000..f2d2c15a4 --- /dev/null +++ b/runtime/src/weights/pallet_offences.rs @@ -0,0 +1,159 @@ +// Copyright (C) 2023 Entropy Cryptography Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +//! Autogenerated weights for `pallet_offences` +//! +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! WORST CASE MAP SIZE: `1000000` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 + +// Executed Command: +// ./target/release/entropy +// benchmark +// pallet +// --chain +// dev +// --wasm-execution=compiled +// --pallet=pallet_offences +// --extrinsic=* +// --steps=50 +// --repeat=20 +// --header=.maintain/AGPL-3.0-header.txt +// --template +// .maintain/frame-weight-template.hbs +// --output=./runtime/src/weights/ + +#![cfg_attr(rustfmt, rustfmt_skip)] +#![allow(unused_parens)] +#![allow(unused_imports)] +#![allow(missing_docs)] + +use frame_support::{traits::Get, weights::Weight}; +use core::marker::PhantomData; + +/// Weight functions for `pallet_offences`. +pub struct WeightInfo(PhantomData); +impl pallet_offences::WeightInfo for WeightInfo { + /// Storage: `Offences::ConcurrentReportsIndex` (r:1 w:1) + /// Proof: `Offences::ConcurrentReportsIndex` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `Offences::Reports` (r:1 w:1) + /// Proof: `Offences::Reports` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `Staking::SlashRewardFraction` (r:1 w:0) + /// Proof: `Staking::SlashRewardFraction` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) + /// Storage: `Staking::ActiveEra` (r:1 w:0) + /// Proof: `Staking::ActiveEra` (`max_values`: Some(1), `max_size`: Some(13), added: 508, mode: `MaxEncodedLen`) + /// Storage: `Staking::ErasStartSessionIndex` (r:1 w:0) + /// Proof: `Staking::ErasStartSessionIndex` (`max_values`: None, `max_size`: Some(16), added: 2491, mode: `MaxEncodedLen`) + /// Storage: `Staking::Invulnerables` (r:1 w:0) + /// Proof: `Staking::Invulnerables` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `Staking::ValidatorSlashInEra` (r:1 w:1) + /// Proof: `Staking::ValidatorSlashInEra` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`) + /// Storage: `Staking::SlashingSpans` (r:17 w:17) + /// Proof: `Staking::SlashingSpans` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `Staking::SpanSlash` (r:17 w:17) + /// Proof: `Staking::SpanSlash` (`max_values`: None, `max_size`: Some(76), added: 2551, mode: `MaxEncodedLen`) + /// Storage: `Staking::Validators` (r:1 w:1) + /// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`) + /// Storage: `Staking::CounterForValidators` (r:1 w:1) + /// Proof: `Staking::CounterForValidators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) + /// Storage: `BagsList::ListNodes` (r:3 w:3) + /// Proof: `BagsList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`) + /// Storage: `BagsList::CounterForListNodes` (r:1 w:1) + /// Proof: `BagsList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) + /// Storage: `Staking::Nominators` (r:1 w:0) + /// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`) + /// Storage: `Staking::OffendingValidators` (r:1 w:1) + /// Proof: `Staking::OffendingValidators` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `Session::Validators` (r:1 w:0) + /// Proof: `Session::Validators` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `Staking::NominatorSlashInEra` (r:16 w:16) + /// Proof: `Staking::NominatorSlashInEra` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`) + /// Storage: `Staking::UnappliedSlashes` (r:1 w:1) + /// Proof: `Staking::UnappliedSlashes` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `BagsList::ListBags` (r:1 w:1) + /// Proof: `BagsList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`) + /// The range of component `n` is `[0, 16]`. + fn report_offence_grandpa(n: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `1848 + n * (66 ±0)` + // Estimated: `8149 + n * (2551 ±0)` + // Minimum execution time: 121_731_000 picoseconds. + Weight::from_parts(130_960_686, 0) + .saturating_add(Weight::from_parts(0, 8149)) + // Standard Error: 42_776 + .saturating_add(Weight::from_parts(15_788_856, 0).saturating_mul(n.into())) + .saturating_add(T::DbWeight::get().reads(19)) + .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(n.into()))) + .saturating_add(T::DbWeight::get().writes(13)) + .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(n.into()))) + .saturating_add(Weight::from_parts(0, 2551).saturating_mul(n.into())) + } + /// Storage: `Offences::ConcurrentReportsIndex` (r:1 w:1) + /// Proof: `Offences::ConcurrentReportsIndex` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `Offences::Reports` (r:1 w:1) + /// Proof: `Offences::Reports` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `Staking::SlashRewardFraction` (r:1 w:0) + /// Proof: `Staking::SlashRewardFraction` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) + /// Storage: `Staking::ActiveEra` (r:1 w:0) + /// Proof: `Staking::ActiveEra` (`max_values`: Some(1), `max_size`: Some(13), added: 508, mode: `MaxEncodedLen`) + /// Storage: `Staking::ErasStartSessionIndex` (r:1 w:0) + /// Proof: `Staking::ErasStartSessionIndex` (`max_values`: None, `max_size`: Some(16), added: 2491, mode: `MaxEncodedLen`) + /// Storage: `Staking::Invulnerables` (r:1 w:0) + /// Proof: `Staking::Invulnerables` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `Staking::ValidatorSlashInEra` (r:1 w:1) + /// Proof: `Staking::ValidatorSlashInEra` (`max_values`: None, `max_size`: Some(72), added: 2547, mode: `MaxEncodedLen`) + /// Storage: `Staking::SlashingSpans` (r:17 w:17) + /// Proof: `Staking::SlashingSpans` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `Staking::SpanSlash` (r:17 w:17) + /// Proof: `Staking::SpanSlash` (`max_values`: None, `max_size`: Some(76), added: 2551, mode: `MaxEncodedLen`) + /// Storage: `Staking::Validators` (r:1 w:1) + /// Proof: `Staking::Validators` (`max_values`: None, `max_size`: Some(45), added: 2520, mode: `MaxEncodedLen`) + /// Storage: `Staking::CounterForValidators` (r:1 w:1) + /// Proof: `Staking::CounterForValidators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) + /// Storage: `BagsList::ListNodes` (r:3 w:3) + /// Proof: `BagsList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`) + /// Storage: `BagsList::CounterForListNodes` (r:1 w:1) + /// Proof: `BagsList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) + /// Storage: `Staking::Nominators` (r:1 w:0) + /// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`) + /// Storage: `Staking::OffendingValidators` (r:1 w:1) + /// Proof: `Staking::OffendingValidators` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `Session::Validators` (r:1 w:0) + /// Proof: `Session::Validators` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `Staking::NominatorSlashInEra` (r:16 w:16) + /// Proof: `Staking::NominatorSlashInEra` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`) + /// Storage: `Staking::UnappliedSlashes` (r:1 w:1) + /// Proof: `Staking::UnappliedSlashes` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `BagsList::ListBags` (r:1 w:1) + /// Proof: `BagsList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`) + /// The range of component `n` is `[0, 16]`. + fn report_offence_babe(n: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `1848 + n * (66 ±0)` + // Estimated: `8149 + n * (2551 ±0)` + // Minimum execution time: 121_988_000 picoseconds. + Weight::from_parts(131_267_555, 0) + .saturating_add(Weight::from_parts(0, 8149)) + // Standard Error: 42_298 + .saturating_add(Weight::from_parts(15_635_842, 0).saturating_mul(n.into())) + .saturating_add(T::DbWeight::get().reads(19)) + .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(n.into()))) + .saturating_add(T::DbWeight::get().writes(13)) + .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(n.into()))) + .saturating_add(Weight::from_parts(0, 2551).saturating_mul(n.into())) + } +} \ No newline at end of file diff --git a/runtime/src/weights/pallet_parameters.rs b/runtime/src/weights/pallet_parameters.rs index b2baa1a8c..730713fe1 100644 --- a/runtime/src/weights/pallet_parameters.rs +++ b/runtime/src/weights/pallet_parameters.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_parameters` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -54,8 +54,8 @@ impl pallet_parameters::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_913_000 picoseconds. - Weight::from_parts(7_242_000, 0) + // Minimum execution time: 6_943_000 picoseconds. + Weight::from_parts(7_271_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -65,8 +65,8 @@ impl pallet_parameters::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_815_000 picoseconds. - Weight::from_parts(7_037_000, 0) + // Minimum execution time: 6_617_000 picoseconds. + Weight::from_parts(7_096_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/src/weights/pallet_preimage.rs b/runtime/src/weights/pallet_preimage.rs index e018845d4..a06df620d 100644 --- a/runtime/src/weights/pallet_preimage.rs +++ b/runtime/src/weights/pallet_preimage.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_preimage` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -61,11 +61,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `109` // Estimated: `3556` - // Minimum execution time: 65_815_000 picoseconds. - Weight::from_parts(66_445_000, 0) + // Minimum execution time: 67_355_000 picoseconds. + Weight::from_parts(68_388_000, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 2 - .saturating_add(Weight::from_parts(1_847, 0).saturating_mul(s.into())) + // Standard Error: 1 + .saturating_add(Weight::from_parts(1_785, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -80,11 +80,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `173` // Estimated: `3556` - // Minimum execution time: 20_589_000 picoseconds. - Weight::from_parts(21_393_000, 0) + // Minimum execution time: 21_591_000 picoseconds. + Weight::from_parts(21_949_000, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 2 - .saturating_add(Weight::from_parts(1_837, 0).saturating_mul(s.into())) + // Standard Error: 1 + .saturating_add(Weight::from_parts(1_784, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -99,11 +99,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `173` // Estimated: `3556` - // Minimum execution time: 20_591_000 picoseconds. - Weight::from_parts(20_867_000, 0) + // Minimum execution time: 20_842_000 picoseconds. + Weight::from_parts(21_031_000, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 2 - .saturating_add(Weight::from_parts(1_833, 0).saturating_mul(s.into())) + // Standard Error: 1 + .saturating_add(Weight::from_parts(1_798, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -119,8 +119,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `311` // Estimated: `3556` - // Minimum execution time: 80_307_000 picoseconds. - Weight::from_parts(89_029_000, 0) + // Minimum execution time: 90_133_000 picoseconds. + Weight::from_parts(95_993_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -135,8 +135,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `211` // Estimated: `3556` - // Minimum execution time: 39_217_000 picoseconds. - Weight::from_parts(44_631_000, 0) + // Minimum execution time: 45_168_000 picoseconds. + Weight::from_parts(49_133_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -149,8 +149,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `255` // Estimated: `3556` - // Minimum execution time: 31_519_000 picoseconds. - Weight::from_parts(36_421_000, 0) + // Minimum execution time: 40_213_000 picoseconds. + Weight::from_parts(42_414_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -163,8 +163,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `211` // Estimated: `3556` - // Minimum execution time: 21_105_000 picoseconds. - Weight::from_parts(24_301_000, 0) + // Minimum execution time: 28_518_000 picoseconds. + Weight::from_parts(31_227_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -177,8 +177,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `109` // Estimated: `3556` - // Minimum execution time: 23_831_000 picoseconds. - Weight::from_parts(25_499_000, 0) + // Minimum execution time: 28_602_000 picoseconds. + Weight::from_parts(31_140_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -191,8 +191,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `173` // Estimated: `3556` - // Minimum execution time: 13_758_000 picoseconds. - Weight::from_parts(14_107_000, 0) + // Minimum execution time: 15_336_000 picoseconds. + Weight::from_parts(16_585_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -207,8 +207,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `211` // Estimated: `3556` - // Minimum execution time: 33_075_000 picoseconds. - Weight::from_parts(36_309_000, 0) + // Minimum execution time: 42_717_000 picoseconds. + Weight::from_parts(48_165_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -221,8 +221,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `173` // Estimated: `3556` - // Minimum execution time: 15_396_000 picoseconds. - Weight::from_parts(17_683_000, 0) + // Minimum execution time: 15_757_000 picoseconds. + Weight::from_parts(16_353_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -235,8 +235,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `173` // Estimated: `3556` - // Minimum execution time: 13_510_000 picoseconds. - Weight::from_parts(14_483_000, 0) + // Minimum execution time: 15_762_000 picoseconds. + Weight::from_parts(16_734_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -254,11 +254,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + n * (227 ±0)` // Estimated: `990 + n * (2603 ±0)` - // Minimum execution time: 73_574_000 picoseconds. - Weight::from_parts(74_199_000, 0) + // Minimum execution time: 75_551_000 picoseconds. + Weight::from_parts(76_387_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 58_351 - .saturating_add(Weight::from_parts(71_521_548, 0).saturating_mul(n.into())) + // Standard Error: 63_847 + .saturating_add(Weight::from_parts(72_993_618, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(n.into()))) .saturating_add(Weight::from_parts(0, 2603).saturating_mul(n.into())) diff --git a/runtime/src/weights/pallet_programs.rs b/runtime/src/weights/pallet_programs.rs index bd44c13aa..f76bf6960 100644 --- a/runtime/src/weights/pallet_programs.rs +++ b/runtime/src/weights/pallet_programs.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_programs` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -56,8 +56,8 @@ impl pallet_programs::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `214` // Estimated: `3679` - // Minimum execution time: 39_326_000 picoseconds. - Weight::from_parts(40_213_000, 0) + // Minimum execution time: 39_788_000 picoseconds. + Weight::from_parts(40_682_000, 0) .saturating_add(Weight::from_parts(0, 3679)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -71,11 +71,11 @@ impl pallet_programs::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `353 + p * (32 ±0)` // Estimated: `3820 + p * (32 ±0)` - // Minimum execution time: 37_954_000 picoseconds. - Weight::from_parts(40_210_718, 0) + // Minimum execution time: 38_858_000 picoseconds. + Weight::from_parts(40_767_104, 0) .saturating_add(Weight::from_parts(0, 3820)) - // Standard Error: 615 - .saturating_add(Weight::from_parts(156_638, 0).saturating_mul(p.into())) + // Standard Error: 524 + .saturating_add(Weight::from_parts(141_471, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(p.into())) diff --git a/runtime/src/weights/pallet_proxy.rs b/runtime/src/weights/pallet_proxy.rs index 97581ac50..7fe717784 100644 --- a/runtime/src/weights/pallet_proxy.rs +++ b/runtime/src/weights/pallet_proxy.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_proxy` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -55,11 +55,11 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `161 + p * (37 ±0)` // Estimated: `4706` - // Minimum execution time: 17_566_000 picoseconds. - Weight::from_parts(18_353_881, 0) + // Minimum execution time: 17_804_000 picoseconds. + Weight::from_parts(18_812_945, 0) .saturating_add(Weight::from_parts(0, 4706)) - // Standard Error: 1_626 - .saturating_add(Weight::from_parts(44_902, 0).saturating_mul(p.into())) + // Standard Error: 1_519 + .saturating_add(Weight::from_parts(45_223, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `Proxy::Proxies` (r:1 w:0) @@ -74,13 +74,13 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `488 + a * (68 ±0) + p * (37 ±0)` // Estimated: `5698` - // Minimum execution time: 44_877_000 picoseconds. - Weight::from_parts(44_290_048, 0) + // Minimum execution time: 46_879_000 picoseconds. + Weight::from_parts(46_657_229, 0) .saturating_add(Weight::from_parts(0, 5698)) - // Standard Error: 2_379 - .saturating_add(Weight::from_parts(223_192, 0).saturating_mul(a.into())) - // Standard Error: 2_458 - .saturating_add(Weight::from_parts(66_195, 0).saturating_mul(p.into())) + // Standard Error: 2_780 + .saturating_add(Weight::from_parts(211_643, 0).saturating_mul(a.into())) + // Standard Error: 2_873 + .saturating_add(Weight::from_parts(48_431, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -94,13 +94,13 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `403 + a * (68 ±0)` // Estimated: `5698` - // Minimum execution time: 29_714_000 picoseconds. - Weight::from_parts(30_239_280, 0) + // Minimum execution time: 29_941_000 picoseconds. + Weight::from_parts(30_846_128, 0) .saturating_add(Weight::from_parts(0, 5698)) - // Standard Error: 1_895 - .saturating_add(Weight::from_parts(209_486, 0).saturating_mul(a.into())) - // Standard Error: 1_958 - .saturating_add(Weight::from_parts(13_455, 0).saturating_mul(p.into())) + // Standard Error: 1_902 + .saturating_add(Weight::from_parts(220_645, 0).saturating_mul(a.into())) + // Standard Error: 1_965 + .saturating_add(Weight::from_parts(11_632, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -114,13 +114,13 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `403 + a * (68 ±0)` // Estimated: `5698` - // Minimum execution time: 29_719_000 picoseconds. - Weight::from_parts(30_020_654, 0) + // Minimum execution time: 29_906_000 picoseconds. + Weight::from_parts(30_411_800, 0) .saturating_add(Weight::from_parts(0, 5698)) - // Standard Error: 1_871 - .saturating_add(Weight::from_parts(221_058, 0).saturating_mul(a.into())) - // Standard Error: 1_933 - .saturating_add(Weight::from_parts(16_501, 0).saturating_mul(p.into())) + // Standard Error: 2_084 + .saturating_add(Weight::from_parts(225_964, 0).saturating_mul(a.into())) + // Standard Error: 2_153 + .saturating_add(Weight::from_parts(21_976, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -136,13 +136,13 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `420 + a * (68 ±0) + p * (37 ±0)` // Estimated: `5698` - // Minimum execution time: 40_767_000 picoseconds. - Weight::from_parts(40_525_974, 0) + // Minimum execution time: 41_444_000 picoseconds. + Weight::from_parts(41_018_177, 0) .saturating_add(Weight::from_parts(0, 5698)) - // Standard Error: 1_990 - .saturating_add(Weight::from_parts(194_907, 0).saturating_mul(a.into())) - // Standard Error: 2_056 - .saturating_add(Weight::from_parts(49_665, 0).saturating_mul(p.into())) + // Standard Error: 2_380 + .saturating_add(Weight::from_parts(215_451, 0).saturating_mul(a.into())) + // Standard Error: 2_459 + .saturating_add(Weight::from_parts(58_281, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -153,11 +153,11 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `161 + p * (37 ±0)` // Estimated: `4706` - // Minimum execution time: 28_951_000 picoseconds. - Weight::from_parts(30_068_251, 0) + // Minimum execution time: 29_509_000 picoseconds. + Weight::from_parts(30_584_510, 0) .saturating_add(Weight::from_parts(0, 4706)) - // Standard Error: 1_739 - .saturating_add(Weight::from_parts(55_792, 0).saturating_mul(p.into())) + // Standard Error: 2_121 + .saturating_add(Weight::from_parts(70_491, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -168,11 +168,11 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `161 + p * (37 ±0)` // Estimated: `4706` - // Minimum execution time: 28_722_000 picoseconds. - Weight::from_parts(30_239_185, 0) + // Minimum execution time: 29_492_000 picoseconds. + Weight::from_parts(30_918_123, 0) .saturating_add(Weight::from_parts(0, 4706)) - // Standard Error: 2_783 - .saturating_add(Weight::from_parts(49_030, 0).saturating_mul(p.into())) + // Standard Error: 2_801 + .saturating_add(Weight::from_parts(53_812, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -183,11 +183,11 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `161 + p * (37 ±0)` // Estimated: `4706` - // Minimum execution time: 27_957_000 picoseconds. - Weight::from_parts(29_272_837, 0) + // Minimum execution time: 28_378_000 picoseconds. + Weight::from_parts(29_644_396, 0) .saturating_add(Weight::from_parts(0, 4706)) - // Standard Error: 1_392 - .saturating_add(Weight::from_parts(32_703, 0).saturating_mul(p.into())) + // Standard Error: 1_745 + .saturating_add(Weight::from_parts(45_667, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -198,11 +198,11 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `173` // Estimated: `4706` - // Minimum execution time: 31_567_000 picoseconds. - Weight::from_parts(32_610_043, 0) + // Minimum execution time: 31_557_000 picoseconds. + Weight::from_parts(33_043_411, 0) .saturating_add(Weight::from_parts(0, 4706)) - // Standard Error: 1_613 - .saturating_add(Weight::from_parts(8_635, 0).saturating_mul(p.into())) + // Standard Error: 1_686 + .saturating_add(Weight::from_parts(5_127, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -213,11 +213,11 @@ impl pallet_proxy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `198 + p * (37 ±0)` // Estimated: `4706` - // Minimum execution time: 29_486_000 picoseconds. - Weight::from_parts(30_431_215, 0) + // Minimum execution time: 29_338_000 picoseconds. + Weight::from_parts(30_560_802, 0) .saturating_add(Weight::from_parts(0, 4706)) - // Standard Error: 1_750 - .saturating_add(Weight::from_parts(39_909, 0).saturating_mul(p.into())) + // Standard Error: 2_024 + .saturating_add(Weight::from_parts(49_103, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/src/weights/pallet_recovery.rs b/runtime/src/weights/pallet_recovery.rs index 574ba94c8..1e14935bc 100644 --- a/runtime/src/weights/pallet_recovery.rs +++ b/runtime/src/weights/pallet_recovery.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_recovery` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -54,8 +54,8 @@ impl pallet_recovery::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `182` // Estimated: `3545` - // Minimum execution time: 12_772_000 picoseconds. - Weight::from_parts(13_093_000, 0) + // Minimum execution time: 12_916_000 picoseconds. + Weight::from_parts(13_388_000, 0) .saturating_add(Weight::from_parts(0, 3545)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -65,8 +65,8 @@ impl pallet_recovery::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 10_156_000 picoseconds. - Weight::from_parts(10_522_000, 0) + // Minimum execution time: 10_314_000 picoseconds. + Weight::from_parts(10_759_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -77,11 +77,11 @@ impl pallet_recovery::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3816` - // Minimum execution time: 30_891_000 picoseconds. - Weight::from_parts(32_163_616, 0) + // Minimum execution time: 31_534_000 picoseconds. + Weight::from_parts(32_909_826, 0) .saturating_add(Weight::from_parts(0, 3816)) - // Standard Error: 6_440 - .saturating_add(Weight::from_parts(106_835, 0).saturating_mul(n.into())) + // Standard Error: 6_365 + .saturating_add(Weight::from_parts(59_739, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -93,8 +93,8 @@ impl pallet_recovery::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `173` // Estimated: `3854` - // Minimum execution time: 35_053_000 picoseconds. - Weight::from_parts(36_078_000, 0) + // Minimum execution time: 35_280_000 picoseconds. + Weight::from_parts(36_473_000, 0) .saturating_add(Weight::from_parts(0, 3854)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -108,11 +108,11 @@ impl pallet_recovery::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `261 + n * (64 ±0)` // Estimated: `3854` - // Minimum execution time: 22_294_000 picoseconds. - Weight::from_parts(23_132_886, 0) + // Minimum execution time: 23_016_000 picoseconds. + Weight::from_parts(24_224_638, 0) .saturating_add(Weight::from_parts(0, 3854)) - // Standard Error: 5_378 - .saturating_add(Weight::from_parts(141_845, 0).saturating_mul(n.into())) + // Standard Error: 6_317 + .saturating_add(Weight::from_parts(135_995, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -127,11 +127,11 @@ impl pallet_recovery::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `293 + n * (64 ±0)` // Estimated: `3854` - // Minimum execution time: 28_237_000 picoseconds. - Weight::from_parts(29_696_395, 0) + // Minimum execution time: 29_238_000 picoseconds. + Weight::from_parts(30_677_156, 0) .saturating_add(Weight::from_parts(0, 3854)) - // Standard Error: 6_735 - .saturating_add(Weight::from_parts(94_712, 0).saturating_mul(n.into())) + // Standard Error: 7_519 + .saturating_add(Weight::from_parts(115_930, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -144,11 +144,11 @@ impl pallet_recovery::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `414 + n * (32 ±0)` // Estimated: `3854` - // Minimum execution time: 40_692_000 picoseconds. - Weight::from_parts(42_241_343, 0) + // Minimum execution time: 41_740_000 picoseconds. + Weight::from_parts(43_517_345, 0) .saturating_add(Weight::from_parts(0, 3854)) - // Standard Error: 6_467 - .saturating_add(Weight::from_parts(143_767, 0).saturating_mul(n.into())) + // Standard Error: 7_729 + .saturating_add(Weight::from_parts(144_572, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -161,11 +161,11 @@ impl pallet_recovery::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `170 + n * (32 ±0)` // Estimated: `3854` - // Minimum execution time: 37_376_000 picoseconds. - Weight::from_parts(38_879_391, 0) + // Minimum execution time: 38_140_000 picoseconds. + Weight::from_parts(40_139_066, 0) .saturating_add(Weight::from_parts(0, 3854)) - // Standard Error: 8_828 - .saturating_add(Weight::from_parts(102_942, 0).saturating_mul(n.into())) + // Standard Error: 8_401 + .saturating_add(Weight::from_parts(79_839, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -175,8 +175,8 @@ impl pallet_recovery::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `182` // Estimated: `3545` - // Minimum execution time: 14_932_000 picoseconds. - Weight::from_parts(15_338_000, 0) + // Minimum execution time: 15_107_000 picoseconds. + Weight::from_parts(15_542_000, 0) .saturating_add(Weight::from_parts(0, 3545)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/src/weights/pallet_registry.rs b/runtime/src/weights/pallet_registry.rs index 8518e23e8..7dcaff50b 100644 --- a/runtime/src/weights/pallet_registry.rs +++ b/runtime/src/weights/pallet_registry.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_registry` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-21, STEPS: `5`, REPEAT: `2`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `Jesses-MacBook-Pro.local`, CPU: `` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -27,11 +27,14 @@ // pallet // --chain // dev +// --wasm-execution=compiled // --pallet=pallet_registry // --extrinsic=* -// --steps=5 -// --repeat=2 +// --steps=50 +// --repeat=20 // --header=.maintain/AGPL-3.0-header.txt +// --template +// .maintain/frame-weight-template.hbs // --output=./runtime/src/weights/ #![cfg_attr(rustfmt, rustfmt_skip)] @@ -56,11 +59,11 @@ impl pallet_registry::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `358` // Estimated: `3823` - // Minimum execution time: 19_000_000 picoseconds. - Weight::from_parts(17_650_000, 0) + // Minimum execution time: 29_930_000 picoseconds. + Weight::from_parts(28_365_544, 0) .saturating_add(Weight::from_parts(0, 3823)) - // Standard Error: 307_713 - .saturating_add(Weight::from_parts(1_850_000, 0).saturating_mul(p.into())) + // Standard Error: 19_514 + .saturating_add(Weight::from_parts(3_396_308, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -73,8 +76,8 @@ impl pallet_registry::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `480` // Estimated: `3945` - // Minimum execution time: 15_000_000 picoseconds. - Weight::from_parts(16_650_000, 0) + // Minimum execution time: 24_789_000 picoseconds. + Weight::from_parts(26_434_446, 0) .saturating_add(Weight::from_parts(0, 3945)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -85,15 +88,17 @@ impl pallet_registry::WeightInfo for WeightInfo { /// Proof: `Registry::Registered` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `n` is `[1, 5]`. /// The range of component `o` is `[1, 5]`. - fn change_program_instance(_n: u32, o: u32, ) -> Weight { + fn change_program_instance(n: u32, o: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `614 + o * (33 ±0)` // Estimated: `6554 + o * (33 ±0)` - // Minimum execution time: 34_000_000 picoseconds. - Weight::from_parts(45_500_000, 0) + // Minimum execution time: 46_291_000 picoseconds. + Weight::from_parts(30_446_027, 0) .saturating_add(Weight::from_parts(0, 6554)) - // Standard Error: 1_762_184 - .saturating_add(Weight::from_parts(1_728_571, 0).saturating_mul(o.into())) + // Standard Error: 15_100 + .saturating_add(Weight::from_parts(3_152_333, 0).saturating_mul(n.into())) + // Standard Error: 15_100 + .saturating_add(Weight::from_parts(3_119_817, 0).saturating_mul(o.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 33).saturating_mul(o.into())) @@ -107,11 +112,11 @@ impl pallet_registry::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `328 + n * (1 ±0)` // Estimated: `3793 + n * (1 ±0)` - // Minimum execution time: 15_000_000 picoseconds. - Weight::from_parts(14_875_000, 0) + // Minimum execution time: 24_730_000 picoseconds. + Weight::from_parts(25_894_755, 0) .saturating_add(Weight::from_parts(0, 3793)) - // Standard Error: 35_477 - .saturating_add(Weight::from_parts(125_000, 0).saturating_mul(n.into())) + // Standard Error: 2_341 + .saturating_add(Weight::from_parts(124_314, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -123,13 +128,15 @@ impl pallet_registry::WeightInfo for WeightInfo { /// Storage: `StakingExtension::ValidatorToSubgroup` (r:1 w:0) /// Proof: `StakingExtension::ValidatorToSubgroup` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `c` is `[0, 2]`. - fn confirm_register_registering(_c: u32, ) -> Weight { + fn confirm_register_registering(c: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `1410` // Estimated: `4875` - // Minimum execution time: 27_000_000 picoseconds. - Weight::from_parts(35_250_000, 0) + // Minimum execution time: 54_176_000 picoseconds. + Weight::from_parts(64_871_111, 0) .saturating_add(Weight::from_parts(0, 4875)) + // Standard Error: 139_174 + .saturating_add(Weight::from_parts(79_239, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -144,8 +151,8 @@ impl pallet_registry::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1412` // Estimated: `4877` - // Minimum execution time: 24_000_000 picoseconds. - Weight::from_parts(29_166_666, 0) + // Minimum execution time: 44_489_000 picoseconds. + Weight::from_parts(55_668_233, 0) .saturating_add(Weight::from_parts(0, 4877)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) @@ -161,14 +168,16 @@ impl pallet_registry::WeightInfo for WeightInfo { /// Storage: `Registry::Registered` (r:0 w:1) /// Proof: `Registry::Registered` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `c` is `[0, 2]`. - fn confirm_register_registered(_c: u32, ) -> Weight { + fn confirm_register_registered(c: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `1436` // Estimated: `4901` - // Minimum execution time: 31_000_000 picoseconds. - Weight::from_parts(44_583_333, 0) + // Minimum execution time: 58_863_000 picoseconds. + Weight::from_parts(72_236_977, 0) .saturating_add(Weight::from_parts(0, 4901)) + // Standard Error: 195_299 + .saturating_add(Weight::from_parts(756_574, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } -} +} \ No newline at end of file diff --git a/runtime/src/weights/pallet_scheduler.rs b/runtime/src/weights/pallet_scheduler.rs index 137fe9dfe..3e1dca40c 100644 --- a/runtime/src/weights/pallet_scheduler.rs +++ b/runtime/src/weights/pallet_scheduler.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_scheduler` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -54,8 +54,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `30` // Estimated: `1489` - // Minimum execution time: 3_908_000 picoseconds. - Weight::from_parts(4_105_000, 0) + // Minimum execution time: 3_958_000 picoseconds. + Weight::from_parts(4_227_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -67,11 +67,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `80 + s * (177 ±0)` // Estimated: `110487` - // Minimum execution time: 5_279_000 picoseconds. - Weight::from_parts(6_278_178, 0) + // Minimum execution time: 5_302_000 picoseconds. + Weight::from_parts(5_596_780, 0) .saturating_add(Weight::from_parts(0, 110487)) - // Standard Error: 673 - .saturating_add(Weight::from_parts(484_584, 0).saturating_mul(s.into())) + // Standard Error: 1_056 + .saturating_add(Weight::from_parts(479_878, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -79,8 +79,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_482_000 picoseconds. - Weight::from_parts(4_767_000, 0) + // Minimum execution time: 4_450_000 picoseconds. + Weight::from_parts(4_733_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Preimage::PreimageFor` (r:1 w:1) @@ -94,11 +94,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `246 + s * (1 ±0)` // Estimated: `3711 + s * (1 ±0)` - // Minimum execution time: 23_824_000 picoseconds. - Weight::from_parts(24_075_000, 0) + // Minimum execution time: 24_486_000 picoseconds. + Weight::from_parts(24_743_000, 0) .saturating_add(Weight::from_parts(0, 3711)) - // Standard Error: 3 - .saturating_add(Weight::from_parts(1_376, 0).saturating_mul(s.into())) + // Standard Error: 2 + .saturating_add(Weight::from_parts(1_276, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(s.into())) @@ -110,7 +110,7 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Measured: `0` // Estimated: `0` // Minimum execution time: 6_926_000 picoseconds. - Weight::from_parts(7_153_000, 0) + Weight::from_parts(7_161_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -118,24 +118,24 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_364_000 picoseconds. - Weight::from_parts(4_598_000, 0) + // Minimum execution time: 4_460_000 picoseconds. + Weight::from_parts(4_670_000, 0) .saturating_add(Weight::from_parts(0, 0)) } fn execute_dispatch_signed() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_542_000 picoseconds. - Weight::from_parts(3_756_000, 0) + // Minimum execution time: 3_484_000 picoseconds. + Weight::from_parts(3_620_000, 0) .saturating_add(Weight::from_parts(0, 0)) } fn execute_dispatch_unsigned() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_567_000 picoseconds. - Weight::from_parts(3_726_000, 0) + // Minimum execution time: 3_402_000 picoseconds. + Weight::from_parts(3_575_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Scheduler::Agenda` (r:1 w:1) @@ -145,11 +145,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `80 + s * (177 ±0)` // Estimated: `110487` - // Minimum execution time: 14_591_000 picoseconds. - Weight::from_parts(14_132_776, 0) + // Minimum execution time: 14_881_000 picoseconds. + Weight::from_parts(14_731_089, 0) .saturating_add(Weight::from_parts(0, 110487)) - // Standard Error: 961 - .saturating_add(Weight::from_parts(530_279, 0).saturating_mul(s.into())) + // Standard Error: 1_175 + .saturating_add(Weight::from_parts(535_626, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -162,11 +162,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `80 + s * (177 ±0)` // Estimated: `110487` - // Minimum execution time: 19_918_000 picoseconds. - Weight::from_parts(13_985_414, 0) + // Minimum execution time: 20_153_000 picoseconds. + Weight::from_parts(15_667_545, 0) .saturating_add(Weight::from_parts(0, 110487)) - // Standard Error: 1_370 - .saturating_add(Weight::from_parts(840_904, 0).saturating_mul(s.into())) + // Standard Error: 1_685 + .saturating_add(Weight::from_parts(825_434, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -179,11 +179,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `595 + s * (178 ±0)` // Estimated: `110487` - // Minimum execution time: 19_358_000 picoseconds. - Weight::from_parts(24_344_819, 0) + // Minimum execution time: 19_428_000 picoseconds. + Weight::from_parts(22_699_497, 0) .saturating_add(Weight::from_parts(0, 110487)) - // Standard Error: 1_876 - .saturating_add(Weight::from_parts(541_363, 0).saturating_mul(s.into())) + // Standard Error: 1_304 + .saturating_add(Weight::from_parts(554_172, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -196,11 +196,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `708 + s * (177 ±0)` // Estimated: `110487` - // Minimum execution time: 22_135_000 picoseconds. - Weight::from_parts(21_400_553, 0) + // Minimum execution time: 22_321_000 picoseconds. + Weight::from_parts(22_631_024, 0) .saturating_add(Weight::from_parts(0, 110487)) - // Standard Error: 1_015 - .saturating_add(Weight::from_parts(824_676, 0).saturating_mul(s.into())) + // Standard Error: 1_623 + .saturating_add(Weight::from_parts(813_870, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/src/weights/pallet_session.rs b/runtime/src/weights/pallet_session.rs index 8ed14e330..58459cfaf 100644 --- a/runtime/src/weights/pallet_session.rs +++ b/runtime/src/weights/pallet_session.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_session` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -56,11 +56,11 @@ impl pallet_session::WeightInfo for WeightInfo { /// Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_keys() -> Weight { // Proof Size summary in bytes: - // Measured: `1934` - // Estimated: `12824` - // Minimum execution time: 66_747_000 picoseconds. - Weight::from_parts(67_593_000, 0) - .saturating_add(Weight::from_parts(0, 12824)) + // Measured: `1930` + // Estimated: `12820` + // Minimum execution time: 69_926_000 picoseconds. + Weight::from_parts(71_389_000, 0) + .saturating_add(Weight::from_parts(0, 12820)) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(5)) } @@ -72,11 +72,11 @@ impl pallet_session::WeightInfo for WeightInfo { /// Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn purge_keys() -> Weight { // Proof Size summary in bytes: - // Measured: `1707` - // Estimated: `5172` - // Minimum execution time: 47_836_000 picoseconds. - Weight::from_parts(48_706_000, 0) - .saturating_add(Weight::from_parts(0, 5172)) + // Measured: `1703` + // Estimated: `5168` + // Minimum execution time: 50_807_000 picoseconds. + Weight::from_parts(51_889_000, 0) + .saturating_add(Weight::from_parts(0, 5168)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(5)) } diff --git a/runtime/src/weights/pallet_staking.rs b/runtime/src/weights/pallet_staking.rs index 2f328ebfc..3bdf822f9 100644 --- a/runtime/src/weights/pallet_staking.rs +++ b/runtime/src/weights/pallet_staking.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_staking` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -62,8 +62,8 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `968` // Estimated: `4764` - // Minimum execution time: 62_460_000 picoseconds. - Weight::from_parts(64_123_000, 0) + // Minimum execution time: 62_040_000 picoseconds. + Weight::from_parts(63_968_000, 0) .saturating_add(Weight::from_parts(0, 4764)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -82,10 +82,10 @@ impl pallet_staking::WeightInfo for WeightInfo { /// Proof: `BagsList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`) fn bond_extra() -> Weight { // Proof Size summary in bytes: - // Measured: `2004` + // Measured: `2002` // Estimated: `8877` - // Minimum execution time: 117_410_000 picoseconds. - Weight::from_parts(119_486_000, 0) + // Minimum execution time: 119_929_000 picoseconds. + Weight::from_parts(123_416_000, 0) .saturating_add(Weight::from_parts(0, 8877)) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(7)) @@ -112,8 +112,8 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `2209` // Estimated: `8877` - // Minimum execution time: 129_097_000 picoseconds. - Weight::from_parts(130_575_000, 0) + // Minimum execution time: 131_922_000 picoseconds. + Weight::from_parts(134_370_000, 0) .saturating_add(Weight::from_parts(0, 8877)) .saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().writes(7)) @@ -131,13 +131,13 @@ impl pallet_staking::WeightInfo for WeightInfo { /// The range of component `s` is `[0, 100]`. fn withdraw_unbonded_update(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1137` + // Measured: `1131` // Estimated: `4764` - // Minimum execution time: 57_711_000 picoseconds. - Weight::from_parts(59_301_784, 0) + // Minimum execution time: 58_093_000 picoseconds. + Weight::from_parts(60_668_482, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 950 - .saturating_add(Weight::from_parts(58_090, 0).saturating_mul(s.into())) + // Standard Error: 1_449 + .saturating_add(Weight::from_parts(68_618, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -172,13 +172,13 @@ impl pallet_staking::WeightInfo for WeightInfo { /// The range of component `s` is `[0, 100]`. fn withdraw_unbonded_kill(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `2210 + s * (4 ±0)` + // Measured: `2208 + s * (4 ±0)` // Estimated: `6248 + s * (4 ±0)` - // Minimum execution time: 120_651_000 picoseconds. - Weight::from_parts(130_929_292, 0) + // Minimum execution time: 122_591_000 picoseconds. + Weight::from_parts(132_912_147, 0) .saturating_add(Weight::from_parts(0, 6248)) - // Standard Error: 5_072 - .saturating_add(Weight::from_parts(1_832_956, 0).saturating_mul(s.into())) + // Standard Error: 6_994 + .saturating_add(Weight::from_parts(1_890_387, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(13)) .saturating_add(T::DbWeight::get().writes(11)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) @@ -198,7 +198,7 @@ impl pallet_staking::WeightInfo for WeightInfo { /// Proof: `Staking::MaxValidatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// Storage: `Staking::Nominators` (r:1 w:0) /// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`) - /// Storage: `BagsList::ListNodes` (r:1 w:1) + /// Storage: `BagsList::ListNodes` (r:2 w:2) /// Proof: `BagsList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`) /// Storage: `BagsList::ListBags` (r:1 w:1) /// Proof: `BagsList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`) @@ -208,13 +208,13 @@ impl pallet_staking::WeightInfo for WeightInfo { /// Proof: `Staking::CounterForValidators` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn validate() -> Weight { // Proof Size summary in bytes: - // Measured: `1389` - // Estimated: `4556` - // Minimum execution time: 70_516_000 picoseconds. - Weight::from_parts(72_053_000, 0) - .saturating_add(Weight::from_parts(0, 4556)) - .saturating_add(T::DbWeight::get().reads(11)) - .saturating_add(T::DbWeight::get().writes(5)) + // Measured: `1518` + // Estimated: `6248` + // Minimum execution time: 81_707_000 picoseconds. + Weight::from_parts(84_583_000, 0) + .saturating_add(Weight::from_parts(0, 6248)) + .saturating_add(T::DbWeight::get().reads(12)) + .saturating_add(T::DbWeight::get().writes(6)) } /// Storage: `Staking::Ledger` (r:1 w:0) /// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`) @@ -225,13 +225,13 @@ impl pallet_staking::WeightInfo for WeightInfo { /// The range of component `k` is `[1, 128]`. fn kick(k: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1735 + k * (572 ±0)` + // Measured: `1731 + k * (572 ±0)` // Estimated: `4556 + k * (3033 ±0)` - // Minimum execution time: 45_996_000 picoseconds. - Weight::from_parts(45_486_187, 0) + // Minimum execution time: 48_162_000 picoseconds. + Weight::from_parts(45_298_105, 0) .saturating_add(Weight::from_parts(0, 4556)) - // Standard Error: 12_616 - .saturating_add(Weight::from_parts(8_280_312, 0).saturating_mul(k.into())) + // Standard Error: 9_973 + .saturating_add(Weight::from_parts(8_599_956, 0).saturating_mul(k.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(k.into()))) @@ -262,13 +262,13 @@ impl pallet_staking::WeightInfo for WeightInfo { /// The range of component `n` is `[1, 16]`. fn nominate(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1852 + n * (99 ±0)` + // Measured: `1823 + n * (97 ±0)` // Estimated: `6248 + n * (2520 ±0)` - // Minimum execution time: 88_274_000 picoseconds. - Weight::from_parts(87_483_126, 0) + // Minimum execution time: 90_044_000 picoseconds. + Weight::from_parts(89_883_240, 0) .saturating_add(Weight::from_parts(0, 6248)) - // Standard Error: 13_879 - .saturating_add(Weight::from_parts(4_805_950, 0).saturating_mul(n.into())) + // Standard Error: 14_518 + .saturating_add(Weight::from_parts(4_662_644, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes(6)) @@ -292,10 +292,10 @@ impl pallet_staking::WeightInfo for WeightInfo { /// Proof: `BagsList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn chill() -> Weight { // Proof Size summary in bytes: - // Measured: `1797` + // Measured: `1795` // Estimated: `6248` - // Minimum execution time: 76_941_000 picoseconds. - Weight::from_parts(78_785_000, 0) + // Minimum execution time: 78_421_000 picoseconds. + Weight::from_parts(81_010_000, 0) .saturating_add(Weight::from_parts(0, 6248)) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(6)) @@ -308,10 +308,10 @@ impl pallet_staking::WeightInfo for WeightInfo { /// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) fn set_payee() -> Weight { // Proof Size summary in bytes: - // Measured: `890` + // Measured: `886` // Estimated: `4556` - // Minimum execution time: 25_871_000 picoseconds. - Weight::from_parts(26_639_000, 0) + // Minimum execution time: 27_002_000 picoseconds. + Weight::from_parts(27_732_000, 0) .saturating_add(Weight::from_parts(0, 4556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -324,10 +324,10 @@ impl pallet_staking::WeightInfo for WeightInfo { /// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) fn update_payee() -> Weight { // Proof Size summary in bytes: - // Measured: `991` + // Measured: `987` // Estimated: `4556` - // Minimum execution time: 31_305_000 picoseconds. - Weight::from_parts(31_998_000, 0) + // Minimum execution time: 31_820_000 picoseconds. + Weight::from_parts(32_863_000, 0) .saturating_add(Weight::from_parts(0, 4556)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) @@ -338,10 +338,10 @@ impl pallet_staking::WeightInfo for WeightInfo { /// Proof: `Staking::Ledger` (`max_values`: None, `max_size`: Some(1091), added: 3566, mode: `MaxEncodedLen`) fn set_controller() -> Weight { // Proof Size summary in bytes: - // Measured: `890` + // Measured: `886` // Estimated: `8122` - // Minimum execution time: 31_673_000 picoseconds. - Weight::from_parts(32_380_000, 0) + // Minimum execution time: 31_982_000 picoseconds. + Weight::from_parts(33_053_000, 0) .saturating_add(Weight::from_parts(0, 8122)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -352,8 +352,8 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_982_000 picoseconds. - Weight::from_parts(4_122_000, 0) + // Minimum execution time: 3_912_000 picoseconds. + Weight::from_parts(4_226_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -363,8 +363,8 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 11_852_000 picoseconds. - Weight::from_parts(12_219_000, 0) + // Minimum execution time: 11_567_000 picoseconds. + Weight::from_parts(12_186_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -374,8 +374,8 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 11_816_000 picoseconds. - Weight::from_parts(12_090_000, 0) + // Minimum execution time: 11_588_000 picoseconds. + Weight::from_parts(12_159_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -385,8 +385,8 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 11_808_000 picoseconds. - Weight::from_parts(12_095_000, 0) + // Minimum execution time: 11_764_000 picoseconds. + Weight::from_parts(12_328_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -397,11 +397,11 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_163_000 picoseconds. - Weight::from_parts(4_702_623, 0) + // Minimum execution time: 4_125_000 picoseconds. + Weight::from_parts(4_796_626, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 44 - .saturating_add(Weight::from_parts(12_492, 0).saturating_mul(v.into())) + // Standard Error: 31 + .saturating_add(Weight::from_parts(12_173, 0).saturating_mul(v.into())) .saturating_add(T::DbWeight::get().writes(1)) } /// Storage: `Staking::Ledger` (r:10628 w:10628) @@ -413,13 +413,13 @@ impl pallet_staking::WeightInfo for WeightInfo { /// The range of component `i` is `[0, 5314]`. fn deprecate_controller_batch(i: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1813 + i * (229 ±0)` + // Measured: `1813 + i * (225 ±0)` // Estimated: `990 + i * (7132 ±0)` - // Minimum execution time: 7_464_000 picoseconds. - Weight::from_parts(7_653_000, 0) + // Minimum execution time: 7_133_000 picoseconds. + Weight::from_parts(7_398_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 49_077 - .saturating_add(Weight::from_parts(37_652_041, 0).saturating_mul(i.into())) + // Standard Error: 98_251 + .saturating_add(Weight::from_parts(40_105_416, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(i.into()))) .saturating_add(Weight::from_parts(0, 7132).saturating_mul(i.into())) @@ -455,13 +455,13 @@ impl pallet_staking::WeightInfo for WeightInfo { /// The range of component `s` is `[0, 100]`. fn force_unstake(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `2210 + s * (4 ±0)` + // Measured: `2208 + s * (4 ±0)` // Estimated: `6248 + s * (4 ±0)` - // Minimum execution time: 115_180_000 picoseconds. - Weight::from_parts(126_318_341, 0) + // Minimum execution time: 119_522_000 picoseconds. + Weight::from_parts(128_012_386, 0) .saturating_add(Weight::from_parts(0, 6248)) - // Standard Error: 5_955 - .saturating_add(Weight::from_parts(1_817_686, 0).saturating_mul(s.into())) + // Standard Error: 7_810 + .saturating_add(Weight::from_parts(1_937_393, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(13)) .saturating_add(T::DbWeight::get().writes(12)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) @@ -474,11 +474,11 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `66592` // Estimated: `70057` - // Minimum execution time: 131_651_000 picoseconds. - Weight::from_parts(905_758_624, 0) + // Minimum execution time: 139_032_000 picoseconds. + Weight::from_parts(1_181_662_411, 0) .saturating_add(Weight::from_parts(0, 70057)) - // Standard Error: 55_909 - .saturating_add(Weight::from_parts(4_714_862, 0).saturating_mul(s.into())) + // Standard Error: 75_178 + .saturating_add(Weight::from_parts(6_336_124, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -513,13 +513,13 @@ impl pallet_staking::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 512]`. fn payout_stakers_alive_staked(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `58426 + n * (394 ±0)` - // Estimated: `53225 + n * (3774 ±2)` - // Minimum execution time: 220_161_000 picoseconds. - Weight::from_parts(166_272_107, 0) - .saturating_add(Weight::from_parts(0, 53225)) - // Standard Error: 41_373 - .saturating_add(Weight::from_parts(65_023_181, 0).saturating_mul(n.into())) + // Measured: `58416 + n * (388 ±0)` + // Estimated: `53216 + n * (3774 ±2)` + // Minimum execution time: 256_006_000 picoseconds. + Weight::from_parts(92_225_460, 0) + .saturating_add(Weight::from_parts(0, 53216)) + // Standard Error: 66_605 + .saturating_add(Weight::from_parts(68_908_799, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(14)) .saturating_add(T::DbWeight::get().reads((6_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes(4)) @@ -541,13 +541,13 @@ impl pallet_staking::WeightInfo for WeightInfo { /// The range of component `l` is `[1, 32]`. fn rebond(l: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `2005 + l * (7 ±0)` + // Measured: `2003 + l * (8 ±0)` // Estimated: `8877` - // Minimum execution time: 116_436_000 picoseconds. - Weight::from_parts(119_750_306, 0) + // Minimum execution time: 119_952_000 picoseconds. + Weight::from_parts(124_445_772, 0) .saturating_add(Weight::from_parts(0, 8877)) - // Standard Error: 4_767 - .saturating_add(Weight::from_parts(161_502, 0).saturating_mul(l.into())) + // Standard Error: 14_944 + .saturating_add(Weight::from_parts(178_351, 0).saturating_mul(l.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(7)) } @@ -580,13 +580,13 @@ impl pallet_staking::WeightInfo for WeightInfo { /// The range of component `s` is `[1, 100]`. fn reap_stash(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `2210 + s * (4 ±0)` + // Measured: `2208 + s * (4 ±0)` // Estimated: `6248 + s * (4 ±0)` - // Minimum execution time: 130_559_000 picoseconds. - Weight::from_parts(134_934_408, 0) + // Minimum execution time: 132_128_000 picoseconds. + Weight::from_parts(136_859_524, 0) .saturating_add(Weight::from_parts(0, 6248)) - // Standard Error: 4_153 - .saturating_add(Weight::from_parts(1_825_221, 0).saturating_mul(s.into())) + // Standard Error: 8_380 + .saturating_add(Weight::from_parts(1_946_505, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().writes(11)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) @@ -630,15 +630,15 @@ impl pallet_staking::WeightInfo for WeightInfo { /// The range of component `n` is `[0, 100]`. fn new_era(v: u32, n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `0 + n * (720 ±0) + v * (3598 ±0)` + // Measured: `0 + n * (716 ±0) + v * (3594 ±0)` // Estimated: `512390 + n * (3566 ±0) + v * (3566 ±0)` - // Minimum execution time: 811_761_000 picoseconds. - Weight::from_parts(815_364_000, 0) + // Minimum execution time: 812_097_000 picoseconds. + Weight::from_parts(829_473_000, 0) .saturating_add(Weight::from_parts(0, 512390)) - // Standard Error: 2_806_770 - .saturating_add(Weight::from_parts(91_686_985, 0).saturating_mul(v.into())) - // Standard Error: 279_679 - .saturating_add(Weight::from_parts(24_937_366, 0).saturating_mul(n.into())) + // Standard Error: 2_629_772 + .saturating_add(Weight::from_parts(87_449_821, 0).saturating_mul(v.into())) + // Standard Error: 262_042 + .saturating_add(Weight::from_parts(26_794_720, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(206)) .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into()))) @@ -667,15 +667,15 @@ impl pallet_staking::WeightInfo for WeightInfo { /// The range of component `n` is `[500, 1000]`. fn get_npos_voters(v: u32, n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `3164 + n * (911 ±0) + v * (395 ±0)` + // Measured: `3164 + n * (907 ±0) + v * (391 ±0)` // Estimated: `512390 + n * (3566 ±0) + v * (3566 ±0)` - // Minimum execution time: 43_644_856_000 picoseconds. - Weight::from_parts(44_106_500_000, 0) + // Minimum execution time: 47_524_913_000 picoseconds. + Weight::from_parts(48_123_018_000, 0) .saturating_add(Weight::from_parts(0, 512390)) - // Standard Error: 560_459 - .saturating_add(Weight::from_parts(11_532_986, 0).saturating_mul(v.into())) - // Standard Error: 560_459 - .saturating_add(Weight::from_parts(5_288_695, 0).saturating_mul(n.into())) + // Standard Error: 546_343 + .saturating_add(Weight::from_parts(4_624_427, 0).saturating_mul(v.into())) + // Standard Error: 546_343 + .saturating_add(Weight::from_parts(7_054_631, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(201)) .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(n.into()))) @@ -692,11 +692,11 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `899 + v * (50 ±0)` // Estimated: `3510 + v * (2520 ±0)` - // Minimum execution time: 3_230_591_000 picoseconds. - Weight::from_parts(177_908_942, 0) + // Minimum execution time: 3_282_261_000 picoseconds. + Weight::from_parts(3_348_063_000, 0) .saturating_add(Weight::from_parts(0, 3510)) - // Standard Error: 20_378 - .saturating_add(Weight::from_parts(6_480_564, 0).saturating_mul(v.into())) + // Standard Error: 39_674 + .saturating_add(Weight::from_parts(2_457_515, 0).saturating_mul(v.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into()))) .saturating_add(Weight::from_parts(0, 2520).saturating_mul(v.into())) @@ -717,8 +717,8 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_659_000 picoseconds. - Weight::from_parts(8_035_000, 0) + // Minimum execution time: 7_323_000 picoseconds. + Weight::from_parts(8_191_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(6)) } @@ -738,8 +738,8 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_686_000 picoseconds. - Weight::from_parts(7_027_000, 0) + // Minimum execution time: 6_580_000 picoseconds. + Weight::from_parts(6_993_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(6)) } @@ -767,10 +767,10 @@ impl pallet_staking::WeightInfo for WeightInfo { /// Proof: `BagsList::CounterForListNodes` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn chill_other() -> Weight { // Proof Size summary in bytes: - // Measured: `1933` + // Measured: `1931` // Estimated: `6248` - // Minimum execution time: 94_523_000 picoseconds. - Weight::from_parts(96_919_000, 0) + // Minimum execution time: 95_999_000 picoseconds. + Weight::from_parts(98_457_000, 0) .saturating_add(Weight::from_parts(0, 6248)) .saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().writes(6)) @@ -783,8 +783,8 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `610` // Estimated: `3510` - // Minimum execution time: 17_191_000 picoseconds. - Weight::from_parts(18_025_000, 0) + // Minimum execution time: 17_920_000 picoseconds. + Weight::from_parts(18_896_000, 0) .saturating_add(Weight::from_parts(0, 3510)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -795,8 +795,8 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_978_000 picoseconds. - Weight::from_parts(5_114_000, 0) + // Minimum execution time: 4_824_000 picoseconds. + Weight::from_parts(5_035_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -814,8 +814,8 @@ impl pallet_staking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1022` // Estimated: `4764` - // Minimum execution time: 59_952_000 picoseconds. - Weight::from_parts(61_188_000, 0) + // Minimum execution time: 60_470_000 picoseconds. + Weight::from_parts(62_099_000, 0) .saturating_add(Weight::from_parts(0, 4764)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) diff --git a/runtime/src/weights/pallet_staking_extension.rs b/runtime/src/weights/pallet_staking_extension.rs index 6c30edcc0..279508ea4 100644 --- a/runtime/src/weights/pallet_staking_extension.rs +++ b/runtime/src/weights/pallet_staking_extension.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_staking_extension` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -56,11 +56,11 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// Proof: `StakingExtension::ThresholdServers` (`max_values`: None, `max_size`: None, mode: `Measured`) fn change_endpoint() -> Weight { // Proof Size summary in bytes: - // Measured: `1280` - // Estimated: `4745` - // Minimum execution time: 37_870_000 picoseconds. - Weight::from_parts(39_030_000, 0) - .saturating_add(Weight::from_parts(0, 4745)) + // Measured: `1276` + // Estimated: `4741` + // Minimum execution time: 39_814_000 picoseconds. + Weight::from_parts(41_408_000, 0) + .saturating_add(Weight::from_parts(0, 4741)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -74,11 +74,11 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// Proof: `StakingExtension::ThresholdServers` (`max_values`: None, `max_size`: None, mode: `Measured`) fn change_threshold_accounts() -> Weight { // Proof Size summary in bytes: - // Measured: `1368` - // Estimated: `4833` - // Minimum execution time: 44_094_000 picoseconds. - Weight::from_parts(45_055_000, 0) - .saturating_add(Weight::from_parts(0, 4833)) + // Measured: `1364` + // Estimated: `4829` + // Minimum execution time: 45_234_000 picoseconds. + Weight::from_parts(46_253_000, 0) + .saturating_add(Weight::from_parts(0, 4829)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -96,10 +96,10 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) fn withdraw_unbonded() -> Weight { // Proof Size summary in bytes: - // Measured: `1167` + // Measured: `1163` // Estimated: `4764` - // Minimum execution time: 65_531_000 picoseconds. - Weight::from_parts(66_859_000, 0) + // Minimum execution time: 66_668_000 picoseconds. + Weight::from_parts(68_966_000, 0) .saturating_add(Weight::from_parts(0, 4764)) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(3)) @@ -120,7 +120,7 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// Proof: `Staking::MaxValidatorsCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// Storage: `Staking::Nominators` (r:1 w:0) /// Proof: `Staking::Nominators` (`max_values`: None, `max_size`: Some(558), added: 3033, mode: `MaxEncodedLen`) - /// Storage: `BagsList::ListNodes` (r:1 w:1) + /// Storage: `BagsList::ListNodes` (r:2 w:2) /// Proof: `BagsList::ListNodes` (`max_values`: None, `max_size`: Some(154), added: 2629, mode: `MaxEncodedLen`) /// Storage: `BagsList::ListBags` (r:1 w:1) /// Proof: `BagsList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`) @@ -132,13 +132,13 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// Proof: `StakingExtension::ThresholdServers` (`max_values`: None, `max_size`: None, mode: `Measured`) fn validate() -> Weight { // Proof Size summary in bytes: - // Measured: `1656` - // Estimated: `5121` - // Minimum execution time: 95_811_000 picoseconds. - Weight::from_parts(97_747_000, 0) - .saturating_add(Weight::from_parts(0, 5121)) - .saturating_add(T::DbWeight::get().reads(12)) - .saturating_add(T::DbWeight::get().writes(7)) + // Measured: `1785` + // Estimated: `6248` + // Minimum execution time: 106_974_000 picoseconds. + Weight::from_parts(110_066_000, 0) + .saturating_add(Weight::from_parts(0, 6248)) + .saturating_add(T::DbWeight::get().reads(13)) + .saturating_add(T::DbWeight::get().writes(8)) } /// Storage: `StakingExtension::ThresholdToStash` (r:1 w:0) /// Proof: `StakingExtension::ThresholdToStash` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -148,8 +148,8 @@ impl pallet_staking_extension::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `353` // Estimated: `3818` - // Minimum execution time: 16_378_000 picoseconds. - Weight::from_parts(16_812_000, 0) + // Minimum execution time: 16_432_000 picoseconds. + Weight::from_parts(17_070_000, 0) .saturating_add(Weight::from_parts(0, 3818)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -164,13 +164,13 @@ impl pallet_staking_extension::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `252 + c * (32 ±0)` // Estimated: `6187 + c * (32 ±0)` - // Minimum execution time: 1_267_841_000 picoseconds. - Weight::from_parts(1_311_811_000, 0) + // Minimum execution time: 1_310_197_000 picoseconds. + Weight::from_parts(1_315_789_000, 0) .saturating_add(Weight::from_parts(0, 6187)) - // Standard Error: 46_429 - .saturating_add(Weight::from_parts(1_470_611, 0).saturating_mul(c.into())) - // Standard Error: 46_429 - .saturating_add(Weight::from_parts(1_550_953, 0).saturating_mul(n.into())) + // Standard Error: 45_371 + .saturating_add(Weight::from_parts(1_466_688, 0).saturating_mul(c.into())) + // Standard Error: 45_371 + .saturating_add(Weight::from_parts(1_584_397, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) diff --git a/runtime/src/weights/pallet_sudo.rs b/runtime/src/weights/pallet_sudo.rs index 6e58a64a7..b0424a601 100644 --- a/runtime/src/weights/pallet_sudo.rs +++ b/runtime/src/weights/pallet_sudo.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_sudo` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -54,8 +54,8 @@ impl pallet_sudo::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `136` // Estimated: `1517` - // Minimum execution time: 13_242_000 picoseconds. - Weight::from_parts(13_527_000, 0) + // Minimum execution time: 13_278_000 picoseconds. + Weight::from_parts(13_914_000, 0) .saturating_add(Weight::from_parts(0, 1517)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -66,8 +66,8 @@ impl pallet_sudo::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `136` // Estimated: `1517` - // Minimum execution time: 14_441_000 picoseconds. - Weight::from_parts(14_994_000, 0) + // Minimum execution time: 14_319_000 picoseconds. + Weight::from_parts(14_662_000, 0) .saturating_add(Weight::from_parts(0, 1517)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -77,8 +77,8 @@ impl pallet_sudo::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `136` // Estimated: `1517` - // Minimum execution time: 14_213_000 picoseconds. - Weight::from_parts(14_541_000, 0) + // Minimum execution time: 14_027_000 picoseconds. + Weight::from_parts(14_742_000, 0) .saturating_add(Weight::from_parts(0, 1517)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -88,8 +88,8 @@ impl pallet_sudo::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `136` // Estimated: `1517` - // Minimum execution time: 11_553_000 picoseconds. - Weight::from_parts(11_955_000, 0) + // Minimum execution time: 11_793_000 picoseconds. + Weight::from_parts(12_657_000, 0) .saturating_add(Weight::from_parts(0, 1517)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/src/weights/pallet_timestamp.rs b/runtime/src/weights/pallet_timestamp.rs index ecc38abf1..10b0b024d 100644 --- a/runtime/src/weights/pallet_timestamp.rs +++ b/runtime/src/weights/pallet_timestamp.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_timestamp` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -56,8 +56,8 @@ impl pallet_timestamp::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `245` // Estimated: `1493` - // Minimum execution time: 11_017_000 picoseconds. - Weight::from_parts(11_236_000, 0) + // Minimum execution time: 10_665_000 picoseconds. + Weight::from_parts(11_436_000, 0) .saturating_add(Weight::from_parts(0, 1493)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -66,8 +66,8 @@ impl pallet_timestamp::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `94` // Estimated: `0` - // Minimum execution time: 4_633_000 picoseconds. - Weight::from_parts(4_715_000, 0) + // Minimum execution time: 4_695_000 picoseconds. + Weight::from_parts(4_898_000, 0) .saturating_add(Weight::from_parts(0, 0)) } } \ No newline at end of file diff --git a/runtime/src/weights/pallet_tips.rs b/runtime/src/weights/pallet_tips.rs index 748815033..3a17807ea 100644 --- a/runtime/src/weights/pallet_tips.rs +++ b/runtime/src/weights/pallet_tips.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_tips` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -57,11 +57,11 @@ impl pallet_tips::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4` // Estimated: `3469` - // Minimum execution time: 37_040_000 picoseconds. - Weight::from_parts(38_679_176, 0) + // Minimum execution time: 37_648_000 picoseconds. + Weight::from_parts(39_220_315, 0) .saturating_add(Weight::from_parts(0, 3469)) - // Standard Error: 8 - .saturating_add(Weight::from_parts(1_651, 0).saturating_mul(r.into())) + // Standard Error: 4 + .saturating_add(Weight::from_parts(1_607, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -73,8 +73,8 @@ impl pallet_tips::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `221` // Estimated: `3686` - // Minimum execution time: 35_227_000 picoseconds. - Weight::from_parts(36_210_000, 0) + // Minimum execution time: 36_415_000 picoseconds. + Weight::from_parts(36_731_000, 0) .saturating_add(Weight::from_parts(0, 3686)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -89,15 +89,15 @@ impl pallet_tips::WeightInfo for WeightInfo { /// The range of component `t` is `[1, 13]`. fn tip_new(r: u32, t: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `815 + t * (64 ±0)` - // Estimated: `4280 + t * (64 ±0)` - // Minimum execution time: 23_434_000 picoseconds. - Weight::from_parts(22_104_670, 0) - .saturating_add(Weight::from_parts(0, 4280)) - // Standard Error: 6 - .saturating_add(Weight::from_parts(1_543, 0).saturating_mul(r.into())) - // Standard Error: 7_798 - .saturating_add(Weight::from_parts(254_129, 0).saturating_mul(t.into())) + // Measured: `239 + t * (64 ±0)` + // Estimated: `3704 + t * (64 ±0)` + // Minimum execution time: 23_813_000 picoseconds. + Weight::from_parts(23_289_465, 0) + .saturating_add(Weight::from_parts(0, 3704)) + // Standard Error: 4 + .saturating_add(Weight::from_parts(1_492, 0).saturating_mul(r.into())) + // Standard Error: 5_963 + .saturating_add(Weight::from_parts(171_007, 0).saturating_mul(t.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(t.into())) @@ -109,13 +109,13 @@ impl pallet_tips::WeightInfo for WeightInfo { /// The range of component `t` is `[1, 13]`. fn tip(t: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1036 + t * (112 ±0)` - // Estimated: `4501 + t * (112 ±0)` - // Minimum execution time: 18_733_000 picoseconds. - Weight::from_parts(18_962_067, 0) - .saturating_add(Weight::from_parts(0, 4501)) - // Standard Error: 3_794 - .saturating_add(Weight::from_parts(293_845, 0).saturating_mul(t.into())) + // Measured: `460 + t * (112 ±0)` + // Estimated: `3925 + t * (112 ±0)` + // Minimum execution time: 19_024_000 picoseconds. + Weight::from_parts(19_846_472, 0) + .saturating_add(Weight::from_parts(0, 3925)) + // Standard Error: 2_561 + .saturating_add(Weight::from_parts(139_068, 0).saturating_mul(t.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 112).saturating_mul(t.into())) @@ -131,13 +131,13 @@ impl pallet_tips::WeightInfo for WeightInfo { /// The range of component `t` is `[1, 13]`. fn close_tip(t: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1088 + t * (112 ±0)` - // Estimated: `4546 + t * (111 ±0)` - // Minimum execution time: 73_882_000 picoseconds. - Weight::from_parts(76_646_613, 0) - .saturating_add(Weight::from_parts(0, 4546)) - // Standard Error: 9_661 - .saturating_add(Weight::from_parts(234_354, 0).saturating_mul(t.into())) + // Measured: `512 + t * (112 ±0)` + // Estimated: `3970 + t * (111 ±0)` + // Minimum execution time: 76_181_000 picoseconds. + Weight::from_parts(78_904_838, 0) + .saturating_add(Weight::from_parts(0, 3970)) + // Standard Error: 10_210 + .saturating_add(Weight::from_parts(117_806, 0).saturating_mul(t.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 111).saturating_mul(t.into())) @@ -151,11 +151,11 @@ impl pallet_tips::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `269` // Estimated: `3734` - // Minimum execution time: 15_943_000 picoseconds. - Weight::from_parts(16_717_361, 0) + // Minimum execution time: 15_934_000 picoseconds. + Weight::from_parts(16_960_896, 0) .saturating_add(Weight::from_parts(0, 3734)) - // Standard Error: 2_399 - .saturating_add(Weight::from_parts(28_287, 0).saturating_mul(t.into())) + // Standard Error: 2_477 + .saturating_add(Weight::from_parts(21_059, 0).saturating_mul(t.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/src/weights/pallet_transaction_pause.rs b/runtime/src/weights/pallet_transaction_pause.rs index a1f9aa8ad..ce3c0752d 100644 --- a/runtime/src/weights/pallet_transaction_pause.rs +++ b/runtime/src/weights/pallet_transaction_pause.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_transaction_pause` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -54,8 +54,8 @@ impl pallet_transaction_pause::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `109` // Estimated: `3574` - // Minimum execution time: 14_570_000 picoseconds. - Weight::from_parts(14_931_000, 0) + // Minimum execution time: 14_550_000 picoseconds. + Weight::from_parts(15_243_000, 0) .saturating_add(Weight::from_parts(0, 3574)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -66,8 +66,8 @@ impl pallet_transaction_pause::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `160` // Estimated: `3625` - // Minimum execution time: 15_245_000 picoseconds. - Weight::from_parts(15_804_000, 0) + // Minimum execution time: 15_899_000 picoseconds. + Weight::from_parts(16_361_000, 0) .saturating_add(Weight::from_parts(0, 3625)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/src/weights/pallet_transaction_storage.rs b/runtime/src/weights/pallet_transaction_storage.rs index 7b3622f61..042b761cc 100644 --- a/runtime/src/weights/pallet_transaction_storage.rs +++ b/runtime/src/weights/pallet_transaction_storage.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_transaction_storage` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -61,11 +61,11 @@ impl pallet_transaction_storage::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `105` // Estimated: `38351` - // Minimum execution time: 84_906_000 picoseconds. - Weight::from_parts(86_199_000, 0) + // Minimum execution time: 86_335_000 picoseconds. + Weight::from_parts(87_464_000, 0) .saturating_add(Weight::from_parts(0, 38351)) - // Standard Error: 6 - .saturating_add(Weight::from_parts(7_480, 0).saturating_mul(l.into())) + // Standard Error: 7 + .saturating_add(Weight::from_parts(7_519, 0).saturating_mul(l.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -83,8 +83,8 @@ impl pallet_transaction_storage::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `293` // Estimated: `40351` - // Minimum execution time: 111_963_000 picoseconds. - Weight::from_parts(115_464_000, 0) + // Minimum execution time: 111_358_000 picoseconds. + Weight::from_parts(114_958_000, 0) .saturating_add(Weight::from_parts(0, 40351)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(2)) @@ -103,8 +103,8 @@ impl pallet_transaction_storage::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `37074` // Estimated: `40351` - // Minimum execution time: 85_832_000 picoseconds. - Weight::from_parts(92_292_000, 0) + // Minimum execution time: 82_640_000 picoseconds. + Weight::from_parts(88_829_000, 0) .saturating_add(Weight::from_parts(0, 40351)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/src/weights/pallet_treasury.rs b/runtime/src/weights/pallet_treasury.rs index 049081fc0..2183443fe 100644 --- a/runtime/src/weights/pallet_treasury.rs +++ b/runtime/src/weights/pallet_treasury.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_treasury` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-06-26, STEPS: `5`, REPEAT: `2`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `Jesses-MacBook-Pro.local`, CPU: `` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -27,11 +27,14 @@ // pallet // --chain // dev +// --wasm-execution=compiled // --pallet=pallet_treasury // --extrinsic=* -// --steps=5 -// --repeat=2 +// --steps=50 +// --repeat=20 // --header=.maintain/AGPL-3.0-header.txt +// --template +// .maintain/frame-weight-template.hbs // --output=./runtime/src/weights/ #![cfg_attr(rustfmt, rustfmt_skip)] @@ -55,8 +58,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `1887` - // Minimum execution time: 9_000_000 picoseconds. - Weight::from_parts(10_000_000, 0) + // Minimum execution time: 15_807_000 picoseconds. + Weight::from_parts(16_451_000, 0) .saturating_add(Weight::from_parts(0, 1887)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) @@ -69,8 +72,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `143` // Estimated: `1489` - // Minimum execution time: 19_000_000 picoseconds. - Weight::from_parts(20_000_000, 0) + // Minimum execution time: 32_682_000 picoseconds. + Weight::from_parts(33_695_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -83,8 +86,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `301` // Estimated: `3593` - // Minimum execution time: 30_000_000 picoseconds. - Weight::from_parts(30_000_000, 0) + // Minimum execution time: 47_504_000 picoseconds. + Weight::from_parts(48_860_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -96,13 +99,13 @@ impl pallet_treasury::WeightInfo for WeightInfo { /// The range of component `p` is `[0, 99]`. fn approve_proposal(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `350 + p * (11 ±0)` + // Measured: `470 + p * (8 ±0)` // Estimated: `3573` - // Minimum execution time: 6_000_000 picoseconds. - Weight::from_parts(8_606_490, 0) + // Minimum execution time: 11_476_000 picoseconds. + Weight::from_parts(14_964_483, 0) .saturating_add(Weight::from_parts(0, 3573)) - // Standard Error: 12_612 - .saturating_add(Weight::from_parts(14_095, 0).saturating_mul(p.into())) + // Standard Error: 1_418 + .saturating_add(Weight::from_parts(93_684, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -112,8 +115,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `127` // Estimated: `1887` - // Minimum execution time: 6_000_000 picoseconds. - Weight::from_parts(6_000_000, 0) + // Minimum execution time: 8_419_000 picoseconds. + Weight::from_parts(8_782_000, 0) .saturating_add(Weight::from_parts(0, 1887)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -131,13 +134,13 @@ impl pallet_treasury::WeightInfo for WeightInfo { /// The range of component `p` is `[0, 99]`. fn on_initialize_proposals(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `451 + p * (252 ±0)` + // Measured: `465 + p * (252 ±0)` // Estimated: `1887 + p * (5206 ±0)` - // Minimum execution time: 27_000_000 picoseconds. - Weight::from_parts(34_834_753, 0) + // Minimum execution time: 42_774_000 picoseconds. + Weight::from_parts(53_574_922, 0) .saturating_add(Weight::from_parts(0, 1887)) - // Standard Error: 145_116 - .saturating_add(Weight::from_parts(28_930_187, 0).saturating_mul(p.into())) + // Standard Error: 15_590 + .saturating_add(Weight::from_parts(44_765_951, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -152,8 +155,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `1489` - // Minimum execution time: 8_000_000 picoseconds. - Weight::from_parts(9_000_000, 0) + // Minimum execution time: 13_674_000 picoseconds. + Weight::from_parts(14_162_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -166,8 +169,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `199` // Estimated: `3593` - // Minimum execution time: 43_000_000 picoseconds. - Weight::from_parts(45_000_000, 0) + // Minimum execution time: 67_733_000 picoseconds. + Weight::from_parts(69_046_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -178,8 +181,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `160` // Estimated: `3534` - // Minimum execution time: 9_000_000 picoseconds. - Weight::from_parts(10_000_000, 0) + // Minimum execution time: 15_602_000 picoseconds. + Weight::from_parts(16_224_000, 0) .saturating_add(Weight::from_parts(0, 3534)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -190,10 +193,10 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `160` // Estimated: `3534` - // Minimum execution time: 8_000_000 picoseconds. - Weight::from_parts(9_000_000, 0) + // Minimum execution time: 14_411_000 picoseconds. + Weight::from_parts(14_986_000, 0) .saturating_add(Weight::from_parts(0, 3534)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } -} +} \ No newline at end of file diff --git a/runtime/src/weights/pallet_utility.rs b/runtime/src/weights/pallet_utility.rs index 9c8f4a066..9b8855a3a 100644 --- a/runtime/src/weights/pallet_utility.rs +++ b/runtime/src/weights/pallet_utility.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_utility` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -27,11 +27,14 @@ // pallet // --chain // dev +// --wasm-execution=compiled // --pallet=pallet_utility // --extrinsic=* // --steps=50 // --repeat=20 // --header=.maintain/AGPL-3.0-header.txt +// --template +// .maintain/frame-weight-template.hbs // --output=./runtime/src/weights/ #![cfg_attr(rustfmt, rustfmt_skip)] @@ -50,18 +53,18 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_523_000 picoseconds. - Weight::from_parts(16_693_508, 0) + // Minimum execution time: 7_134_000 picoseconds. + Weight::from_parts(14_433_095, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_662 - .saturating_add(Weight::from_parts(4_208_637, 0).saturating_mul(c.into())) + // Standard Error: 1_909 + .saturating_add(Weight::from_parts(4_106_239, 0).saturating_mul(c.into())) } fn as_derivative() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_066_000 picoseconds. - Weight::from_parts(7_406_000, 0) + // Minimum execution time: 7_149_000 picoseconds. + Weight::from_parts(7_405_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `c` is `[0, 1000]`. @@ -69,18 +72,18 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_113_000 picoseconds. - Weight::from_parts(7_995_551, 0) + // Minimum execution time: 7_114_000 picoseconds. + Weight::from_parts(14_522_924, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_492 - .saturating_add(Weight::from_parts(4_436_594, 0).saturating_mul(c.into())) + // Standard Error: 1_448 + .saturating_add(Weight::from_parts(4_446_801, 0).saturating_mul(c.into())) } fn dispatch_as() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 10_109_000 picoseconds. - Weight::from_parts(10_490_000, 0) + // Minimum execution time: 9_852_000 picoseconds. + Weight::from_parts(10_326_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `c` is `[0, 1000]`. @@ -88,10 +91,10 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_255_000 picoseconds. - Weight::from_parts(13_457_792, 0) + // Minimum execution time: 6_888_000 picoseconds. + Weight::from_parts(14_994_737, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_514 - .saturating_add(Weight::from_parts(4_136_128, 0).saturating_mul(c.into())) + // Standard Error: 1_893 + .saturating_add(Weight::from_parts(4_112_485, 0).saturating_mul(c.into())) } -} +} \ No newline at end of file diff --git a/runtime/src/weights/pallet_vesting.rs b/runtime/src/weights/pallet_vesting.rs index dff069ad7..02bcbdd43 100644 --- a/runtime/src/weights/pallet_vesting.rs +++ b/runtime/src/weights/pallet_vesting.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_vesting` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-05-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `ip-172-31-39-223.us-east-2.compute.internal`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` +//! HOSTNAME: `ip-172-31-30-92`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -27,11 +27,14 @@ // pallet // --chain // dev +// --wasm-execution=compiled // --pallet=pallet_vesting // --extrinsic=* // --steps=50 // --repeat=20 // --header=.maintain/AGPL-3.0-header.txt +// --template +// .maintain/frame-weight-template.hbs // --output=./runtime/src/weights/ #![cfg_attr(rustfmt, rustfmt_skip)] @@ -57,13 +60,13 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `348 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 41_659_000 picoseconds. - Weight::from_parts(40_434_728, 0) + // Minimum execution time: 42_687_000 picoseconds. + Weight::from_parts(41_506_761, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 1_112 - .saturating_add(Weight::from_parts(60_291, 0).saturating_mul(l.into())) - // Standard Error: 1_980 - .saturating_add(Weight::from_parts(81_209, 0).saturating_mul(s.into())) + // Standard Error: 1_228 + .saturating_add(Weight::from_parts(71_383, 0).saturating_mul(l.into())) + // Standard Error: 2_186 + .saturating_add(Weight::from_parts(93_703, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -79,13 +82,13 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `348 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 44_182_000 picoseconds. - Weight::from_parts(43_740_931, 0) + // Minimum execution time: 45_645_000 picoseconds. + Weight::from_parts(45_433_612, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 1_295 - .saturating_add(Weight::from_parts(55_578, 0).saturating_mul(l.into())) - // Standard Error: 2_305 - .saturating_add(Weight::from_parts(59_228, 0).saturating_mul(s.into())) + // Standard Error: 1_602 + .saturating_add(Weight::from_parts(59_733, 0).saturating_mul(l.into())) + // Standard Error: 2_851 + .saturating_add(Weight::from_parts(51_017, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -103,13 +106,13 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `488 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 43_826_000 picoseconds. - Weight::from_parts(42_760_335, 0) + // Minimum execution time: 45_625_000 picoseconds. + Weight::from_parts(45_121_820, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 1_108 - .saturating_add(Weight::from_parts(68_900, 0).saturating_mul(l.into())) - // Standard Error: 1_971 - .saturating_add(Weight::from_parts(87_804, 0).saturating_mul(s.into())) + // Standard Error: 1_718 + .saturating_add(Weight::from_parts(63_906, 0).saturating_mul(l.into())) + // Standard Error: 3_057 + .saturating_add(Weight::from_parts(81_658, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -127,13 +130,13 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `488 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 46_576_000 picoseconds. - Weight::from_parts(46_200_748, 0) + // Minimum execution time: 47_974_000 picoseconds. + Weight::from_parts(47_998_552, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 1_356 - .saturating_add(Weight::from_parts(61_188, 0).saturating_mul(l.into())) - // Standard Error: 2_413 - .saturating_add(Weight::from_parts(65_893, 0).saturating_mul(s.into())) + // Standard Error: 2_238 + .saturating_add(Weight::from_parts(60_769, 0).saturating_mul(l.into())) + // Standard Error: 3_982 + .saturating_add(Weight::from_parts(68_855, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -151,13 +154,13 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `522 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 92_021_000 picoseconds. - Weight::from_parts(91_874_482, 0) + // Minimum execution time: 94_933_000 picoseconds. + Weight::from_parts(96_522_416, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 1_550 - .saturating_add(Weight::from_parts(63_576, 0).saturating_mul(l.into())) - // Standard Error: 2_758 - .saturating_add(Weight::from_parts(90_236, 0).saturating_mul(s.into())) + // Standard Error: 3_183 + .saturating_add(Weight::from_parts(59_847, 0).saturating_mul(l.into())) + // Standard Error: 5_664 + .saturating_add(Weight::from_parts(110_394, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -175,13 +178,13 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `625 + l * (25 ±0) + s * (36 ±0)` // Estimated: `6196` - // Minimum execution time: 92_405_000 picoseconds. - Weight::from_parts(93_263_307, 0) + // Minimum execution time: 96_688_000 picoseconds. + Weight::from_parts(98_115_036, 0) .saturating_add(Weight::from_parts(0, 6196)) - // Standard Error: 2_379 - .saturating_add(Weight::from_parts(68_868, 0).saturating_mul(l.into())) - // Standard Error: 4_233 - .saturating_add(Weight::from_parts(105_631, 0).saturating_mul(s.into())) + // Standard Error: 3_386 + .saturating_add(Weight::from_parts(71_703, 0).saturating_mul(l.into())) + // Standard Error: 6_025 + .saturating_add(Weight::from_parts(92_093, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -199,13 +202,13 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `449 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 43_927_000 picoseconds. - Weight::from_parts(42_676_495, 0) + // Minimum execution time: 46_015_000 picoseconds. + Weight::from_parts(44_799_356, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 1_147 - .saturating_add(Weight::from_parts(73_013, 0).saturating_mul(l.into())) - // Standard Error: 2_120 - .saturating_add(Weight::from_parts(83_071, 0).saturating_mul(s.into())) + // Standard Error: 1_401 + .saturating_add(Weight::from_parts(72_795, 0).saturating_mul(l.into())) + // Standard Error: 2_589 + .saturating_add(Weight::from_parts(84_824, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -223,13 +226,13 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `449 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 46_924_000 picoseconds. - Weight::from_parts(46_352_509, 0) + // Minimum execution time: 48_760_000 picoseconds. + Weight::from_parts(47_658_024, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 1_267 - .saturating_add(Weight::from_parts(70_415, 0).saturating_mul(l.into())) - // Standard Error: 2_340 - .saturating_add(Weight::from_parts(82_676, 0).saturating_mul(s.into())) + // Standard Error: 1_385 + .saturating_add(Weight::from_parts(80_203, 0).saturating_mul(l.into())) + // Standard Error: 2_559 + .saturating_add(Weight::from_parts(95_518, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -247,14 +250,14 @@ impl pallet_vesting::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `522 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 49_494_000 picoseconds. - Weight::from_parts(48_462_615, 0) + // Minimum execution time: 50_930_000 picoseconds. + Weight::from_parts(50_335_194, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 1_244 - .saturating_add(Weight::from_parts(69_673, 0).saturating_mul(l.into())) - // Standard Error: 2_299 - .saturating_add(Weight::from_parts(85_386, 0).saturating_mul(s.into())) + // Standard Error: 2_114 + .saturating_add(Weight::from_parts(68_858, 0).saturating_mul(l.into())) + // Standard Error: 3_904 + .saturating_add(Weight::from_parts(82_542, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } -} +} \ No newline at end of file