From 7dcd3c7e9c3ad79a85a859f880669f94cd869a75 Mon Sep 17 00:00:00 2001 From: Hernando Castano Date: Fri, 4 Oct 2024 15:48:23 -0400 Subject: [PATCH] Release `v0.3.0-rc.1` (#1098) * Bump `spec_version` and `transaction_version` * Bump packages to `v0.3.0-rc.1` * Bump metadata * Update `test-cli` commands in `RELEASE_CHECKLIST` * TaploFmt * Clean up `CHANGELOG` * TaploFmt * Use runtime weights from reference machine --- CHANGELOG.md | 21 +- Cargo.lock | 38 +-- RELEASE_CHECKLIST.md | 4 +- crates/client/Cargo.toml | 6 +- crates/client/entropy_metadata.scale | Bin 208976 -> 209731 bytes crates/kvdb/Cargo.toml | 4 +- crates/protocol/Cargo.toml | 4 +- crates/shared/Cargo.toml | 2 +- crates/test-cli/Cargo.toml | 6 +- crates/testing-utils/Cargo.toml | 38 +-- crates/threshold-signature-server/Cargo.toml | 12 +- node/cli/Cargo.toml | 10 +- pallets/attestation/Cargo.toml | 8 +- pallets/oracle/Cargo.toml | 2 +- pallets/parameters/Cargo.toml | 4 +- pallets/programs/Cargo.toml | 2 +- pallets/propagation/Cargo.toml | 14 +- pallets/registry/Cargo.toml | 10 +- pallets/slashing/Cargo.toml | 2 +- pallets/staking/Cargo.toml | 8 +- pallets/transaction-pause/Cargo.toml | 4 +- runtime/Cargo.toml | 22 +- runtime/src/lib.rs | 4 +- runtime/src/weights/frame_benchmarking.rs | 34 +-- .../frame_election_provider_support.rs | 32 +-- runtime/src/weights/frame_system.rs | 66 ++--- runtime/src/weights/pallet_attestation.rs | 45 ++-- runtime/src/weights/pallet_babe.rs | 16 +- runtime/src/weights/pallet_bags_list.rs | 26 +- runtime/src/weights/pallet_balances.rs | 50 ++-- runtime/src/weights/pallet_bounties.rs | 60 ++--- runtime/src/weights/pallet_collective.rs | 184 ++++++------- runtime/src/weights/pallet_democracy.rs | 172 ++++++------ .../pallet_election_provider_multi_phase.rs | 82 +++--- .../src/weights/pallet_elections_phragmen.rs | 114 ++++---- runtime/src/weights/pallet_grandpa.rs | 20 +- runtime/src/weights/pallet_identity.rs | 182 ++++++------- runtime/src/weights/pallet_im_online.rs | 18 +- runtime/src/weights/pallet_indices.rs | 28 +- runtime/src/weights/pallet_membership.rs | 72 ++--- runtime/src/weights/pallet_multisig.rs | 82 +++--- runtime/src/weights/pallet_offences.rs | 36 +-- runtime/src/weights/pallet_oracle.rs | 17 +- runtime/src/weights/pallet_parameters.rs | 91 ++++--- runtime/src/weights/pallet_preimage.rs | 84 +++--- runtime/src/weights/pallet_programs.rs | 26 +- runtime/src/weights/pallet_propagation.rs | 21 +- runtime/src/weights/pallet_proxy.rs | 112 ++++---- runtime/src/weights/pallet_recovery.rs | 64 ++--- runtime/src/weights/pallet_registry.rs | 73 +++-- runtime/src/weights/pallet_scheduler.rs | 91 ++++--- runtime/src/weights/pallet_session.rs | 28 +- runtime/src/weights/pallet_staking.rs | 250 +++++++++--------- .../src/weights/pallet_staking_extension.rs | 155 +++++------ runtime/src/weights/pallet_sudo.rs | 24 +- runtime/src/weights/pallet_timestamp.rs | 16 +- runtime/src/weights/pallet_tips.rs | 74 +++--- .../src/weights/pallet_transaction_pause.rs | 16 +- .../src/weights/pallet_transaction_storage.rs | 24 +- runtime/src/weights/pallet_treasury.rs | 60 ++--- runtime/src/weights/pallet_utility.rs | 40 +-- runtime/src/weights/pallet_vesting.rs | 134 +++++----- scripts/create-test-keyshares/Cargo.toml | 10 +- 63 files changed, 1497 insertions(+), 1457 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9525c885..5801e511a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,17 @@ 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.2.0...master) +## [Unreleased](https://github.com/entropyxyz/entropy-core/compare/release/v0.3.0-rc.1...master) + +## [0.3.0-rc.1](https://github.com/entropyxyz/entropy-core/compare/release/v0.2.0...release/v0.3.0-rc.1) - 2024-10-04 ### Breaking Changes +- In [#799](https://github.com/entropyxyz/entropy-core/pull/799) the concept of subgroups was + removed in favour of a single pool of signers. +- In [#801](https://github.com/entropyxyz/entropy-core/pull/801) permissioned access mode was + removed. +- In [#879](https://github.com/entropyxyz/entropy-core/pull/879) the network migrated from t-of-N + cryptography to `t-of-N` cryptography. - In [#938](https://github.com/entropyxyz/entropy-core/pull/938), the chainspec got a couple of new fields, `pallet_staking_extension::initial_signers`, `pallet_parameters::total_signers`, and `pallet_parameters::threshold`, which are used to set up the initial threshold signing @@ -22,7 +30,8 @@ At the moment this project **does not** adhere to to go through the `staking_extention` pallet. This makes sure no funds can be unbonded from a validator if they are currently in the signing comittee. This was applied to `unbond`, `chill`, and `withdraw_unbonded` -- In [#1045](https://github.com/entropyxyz/entropy-core/pull/1045), `ProgramsInfo` now takes `version_number` to maintain backwards compatibility if programs runtime is updated +- In [#1045](https://github.com/entropyxyz/entropy-core/pull/1045), `ProgramsInfo` now takes + `version_number` to maintain backwards compatibility if programs runtime is updated - In [#1050](https://github.com/entropyxyz/entropy-core/pull/1050), the flow for signing has changed. A user now sends their request to any validator that is not a signer. This will act as a relayer. As such, `UserSignatureRequest` no longer requires the `validators_info` field since the the @@ -46,16 +55,18 @@ At the moment this project **does not** adhere to - Add parent key threshold dynamically ([#974](https://github.com/entropyxyz/entropy-core/pull/974)) - Signing flow with derived accounts ([#990](https://github.com/entropyxyz/entropy-core/pull/990)) - TSS attestation endpoint ([#1001](https://github.com/entropyxyz/entropy-core/pull/1001)) -- Add `network-jumpstart` command to `entropy-test-cli` ([#1004](https://github.com/entropyxyz/entropy-core/pull/1004)) - Attestation pallet ([#1003](https://github.com/entropyxyz/entropy-core/pull/1003)) +- Add `network-jumpstart` command to `entropy-test-cli` ([#1004](https://github.com/entropyxyz/entropy-core/pull/1004)) - Update test CLI for new registration and signing flows ([#1008](https://github.com/entropyxyz/entropy-core/pull/1008)) - Add remove program function to entropy-client ([#1023](https://github.com/entropyxyz/entropy-core/pull/1023)) - Select validators for jumpstart DKG [#1053](https://github.com/entropyxyz/entropy-core/pull/1053)) - Add a programs version ([#1045](https://github.com/entropyxyz/entropy-core/pull/1045)) - Handle Provisioning Certification Keys (PCKs) ([#1051](https://github.com/entropyxyz/entropy-core/pull/1051)) -- Block tss chain when signer ([#1078](https://github.com/entropyxyz/entropy-core/pull/1078)) +- Block tss chain when signer ([#1078](https://github.com/entropyxyz/entropy-core/pull/1078)) ### Changed +- Migrate to threshold signing ([#800](https://github.com/entropyxyz/entropy-core/pull/800)) +- Use t of n signing in `entropy-tss` ([#879](https://github.com/entropyxyz/entropy-core/pull/879)) - Fix TSS `AccountId` keys in chainspec ([#993](https://github.com/entropyxyz/entropy-core/pull/993)) - No unbonding when signer or next signer ([#1031](https://github.com/entropyxyz/entropy-core/pull/1031)) - Add relay tx endpoint ([#1050](https://github.com/entropyxyz/entropy-core/pull/1050)) @@ -63,6 +74,8 @@ At the moment this project **does not** adhere to - Add fourth node to `devnet-local` configuration ([#1086](https://github.com/entropyxyz/entropy-core/pull/1086)) ### Removed +- Remove subgroups ([#799](https://github.com/entropyxyz/entropy-core/pull/799)) +- Remove permission from chain ([#801](https://github.com/entropyxyz/entropy-core/pull/801)) - Remove `prune_registration` extrinsic ([#1022](https://github.com/entropyxyz/entropy-core/pull/1022)) - Remove `confirm_registered` extrinsic ([#1025](https://github.com/entropyxyz/entropy-core/pull/1025)) - Remove old registration flow ([#1030](https://github.com/entropyxyz/entropy-core/pull/1030)) diff --git a/Cargo.lock b/Cargo.lock index 837e5c602..693a61159 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2407,7 +2407,7 @@ dependencies = [ [[package]] name = "entropy" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "clap", "entropy-runtime", @@ -2483,7 +2483,7 @@ dependencies = [ [[package]] name = "entropy-client" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "anyhow", "base64 0.22.1", @@ -2514,7 +2514,7 @@ dependencies = [ [[package]] name = "entropy-create-test-keyshares" -version = "0.2.0-rc.1" +version = "0.3.0-rc.1" dependencies = [ "entropy-kvdb", "entropy-shared", @@ -2527,7 +2527,7 @@ dependencies = [ [[package]] name = "entropy-kvdb" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "bincode 1.3.3", "chacha20poly1305 0.9.1", @@ -2572,7 +2572,7 @@ dependencies = [ [[package]] name = "entropy-protocol" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "anyhow", "async-trait", @@ -2614,7 +2614,7 @@ dependencies = [ [[package]] name = "entropy-runtime" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "entropy-shared", "frame-benchmarking", @@ -2699,7 +2699,7 @@ dependencies = [ [[package]] name = "entropy-shared" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "blake2 0.10.6", "hex-literal", @@ -2718,7 +2718,7 @@ dependencies = [ [[package]] name = "entropy-test-cli" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "anyhow", "bincode 1.3.3", @@ -2736,7 +2736,7 @@ dependencies = [ [[package]] name = "entropy-testing-utils" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "axum", "entropy-kvdb", @@ -2762,7 +2762,7 @@ dependencies = [ [[package]] name = "entropy-tss" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "anyhow", "axum", @@ -6686,7 +6686,7 @@ dependencies = [ [[package]] name = "pallet-attestation" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "entropy-shared", "frame-benchmarking", @@ -7129,7 +7129,7 @@ dependencies = [ [[package]] name = "pallet-oracle" -version = "0.2.0-rc.1" +version = "0.3.0-rc.1" dependencies = [ "frame-benchmarking", "frame-support 29.0.2", @@ -7144,7 +7144,7 @@ dependencies = [ [[package]] name = "pallet-parameters" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "entropy-shared", "frame-benchmarking", @@ -7180,7 +7180,7 @@ dependencies = [ [[package]] name = "pallet-programs" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "frame-benchmarking", "frame-support 29.0.2", @@ -7198,7 +7198,7 @@ dependencies = [ [[package]] name = "pallet-propagation" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "entropy-shared", "frame-benchmarking", @@ -7265,7 +7265,7 @@ dependencies = [ [[package]] name = "pallet-registry" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "bip32", "entropy-shared", @@ -7358,7 +7358,7 @@ dependencies = [ [[package]] name = "pallet-slashing" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7408,7 +7408,7 @@ dependencies = [ [[package]] name = "pallet-staking-extension" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "entropy-shared", "frame-benchmarking", @@ -7511,7 +7511,7 @@ dependencies = [ [[package]] name = "pallet-transaction-pause" -version = "0.2.0" +version = "0.3.0-rc.1" dependencies = [ "frame-benchmarking", "frame-support 29.0.2", diff --git a/RELEASE_CHECKLIST.md b/RELEASE_CHECKLIST.md index c4cadb260..2b20465c3 100644 --- a/RELEASE_CHECKLIST.md +++ b/RELEASE_CHECKLIST.md @@ -44,9 +44,11 @@ tagged as the final release. - Change the `image` fields in `docker-compose-common.yaml` to a local build, e.g `entropyxyz/entropy:local-vX.Y.Z-rc.1` - Build the images and spin up the network using `docker compose up` + - Jumpstart the network using: + - `cargo run -p entropy-test-cli -- jumpstart-network` - Register an account using: - `cargo run -p entropy-test-cli -- register \ - public -m //One ./crates/testing-utils/template_barebones.wasm` + ./crates/testing-utils/template_barebones.wasm -m //One` - 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 7fd096d7e..19d990c6d 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name ="entropy-client" -version ="0.2.0" +version ="0.3.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.2.0", path="../shared", default-features=false } +entropy-shared={ version="0.3.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.64" @@ -25,7 +25,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.2.0", path="../protocol", optional=true, default-features=false } +entropy-protocol={ version="0.3.0-rc.1", path="../protocol", optional=true, default-features=false } reqwest ={ version="0.12.8", features=["json", "stream"], optional=true } base64 ={ version="0.22.0", optional=true } synedrion ={ version="0.2.0-beta.0", optional=true } diff --git a/crates/client/entropy_metadata.scale b/crates/client/entropy_metadata.scale index d6d04ba7e8d3ffb04850718250248c8224e0d25a..cd780ce0117483ce2dd57c472637273545df0af0 100644 GIT binary patch delta 5435 zcmZ`-4_H-Iw%===1NR*MC$ zUVrymzrEHu`B~Vp{|XDP)cuZ;eQm*GZ-lXXuD?;%@6Pr6b)VnicX{0N%5~@J!fL%* zFO`LWjG~z{bDd64wcDRxDiryzxmwZErJ5tKq?J2-+Dct_YgHD7R=q}B!H^4-AgU)P#+n|faZiFm; zvIy62gqwNkrHzmV-PY0*br1@3D69^SC6yO>JOvJS&5#kO?R33e&}5|Y4vbj`UtUok!N1H!(GO& zi^{#auiR5nI^^PE+egxzdKi<`!-nIjV8K83nCO#4uQlrno+kRJt{$$3v&Nx%Z~~m8 z5*K7n9SD|}@?J3*3~|eK=d7aHLJXKRVG#q8;ALjW&*v>R7lPx&1&fYKPQWO*NDpj+ zcsltY%z;Z3xd~i6@KSpW*kDGHqoSf_)?7!0!|l|WE!b%NCWxbZHpA^0WTS(d;T}|N z6!H)hfSvyJ5M0O161Kn?dg>v#_o}6Fpi*NaWR4HF1@w)yUC}q(W?CEZR}sk*hJEQm?6_6_Ese#m~p=AFYSwm?Cp+BG;yrQeiB{lkqqd%X$BK%xq>;@{Pu3m?uMl zWkkSvg%tlJ{1%qcn@_?Mu!8P=3QD1vjz0xAQO`3FOMUxbEM+|n(cmy{e;O_!=ycmN zuoYYZE?;{f3MwgfH~c-h$_77M;;5`K9dmDjL%QMObZX+WmPlQ42&s z4ef7%iCAlE+Fmr;_P+GhX?uSNGr5ID?N%rPp6wM~ZSxM}qvDca$upPCD z1N8iJPz~L6 zT|=CDhH>JxxW#KsB$MSL=(d3pvB=}r8BrpZdMb5UbTdarlx|bCIO;h7tJNM;W|vKz z3ak|$grx9Zn@}LmSG{VLYh5pGIS6Sqw+*IJ|3OZZKI8mBcs>ZuQp;hO$C-ETFyy41 zvq9pmUKc|cW7$~$<=n0X2&>M#Nr-b-EC?B}>|(73O%_qKrwuZg&j)QVW8`o?;=GOO zk|55w@prI5h6@1}hmL?^zc|e5i>3u?khnx$M>q;Vp?gyx)(A5o8Zk&AhYK=tRAngB z*s#mUz-z_+3uunst4LSBIeNTOf90=M$;=_@cE zQpnc9h?_<^9S{fUw7dgm!(?jifQ7txwgc|YOlLj}XK9L3&={R(DxRx|e2b`ni3)~@3Wtc64I?U~ z2mb&YLYA3Cg^F0AG?|ZemqHPld}!NF zK%UGQ{oY%Q3sqGAHl#z9@te0H8L(QRwr^lA)EFbW;ah}S3OWe`P;Y#F(mb@y0e-Pt zhtz8rrruUXY3ivD{&B(SlK-F{_^5FnQ_CW%De;PK(tqOcb ztNURzJ>Cl%wp#kx>Fr*~w6`fRV{VaG*9#nLW-XkgEoY2sqsWgTHnyE53iA(-DuRC| zuE&WElksR;@iC&_`wc9H+ej8D0G_ z7yGW*F)^uk$k}KA4|~p<_CzK3Dtz?kOry*{98d)ROr!Y4VBkpcJo9vdX8ik82(!Tj zBlHW%mGMGgmE3=0B`?w)gM0u{U%^v+!#@8N*DIIkOPj`0K`UNJhH;96aCXkNXHqe%DarCNZ6wx)Vzh0Cd})@!EBTI5+WZ{aYG zvOF2CWtsi|^IYTgtabSq)wycYoVwTVTIF(D1*;{1p8OWxjLBp-$%$ENwwj~ns`+Yx zTBwSwC%)%M+wmP&O4-)*^miOEIXs;Oxz@s6-@~|&JQc$7ybdAqj4j_oTLk1=@0O}K zi7)v&6=zC?s+o4tP48+pI<4YVzUf0lFqv=qi6JjYG#_o@cQtbQ&3o>C0W}a1hqjYd~1%{d{Lt^1eHDUv-6F;k&I) z&Vwr6t1MnEi#p~i*Z{9Assfv<=<6^{rNf~(4yx&+P)wC-RG`Rkv~w9)ZN42t)5Fl< z(t+ny3_y->OoMvb5{?ry>s491oYIQC5F98k=UZMDo0+}!hg(&_KaPC|P7@9E=Wx6; zs#b-Je0Mp=f!jad;b(s~2J~=^z?(9fuQFh#I^2StCf}<~*h%k>!1rJmJv$O_ffoAn zNK8xJdzG_xUF)n}^sh)vp!pGaf=iB!2#ludBJt()wyOx+uO(~`IIcZF6Eg}YaEo!v zD4aykM&Vd`Y!p^vr^+a6w?g3cC=4bo3db`R-4=yYC%$o&fUau=bOi)-UB%$#S$CqQQocuE!gW2aB+3l_bG9*w&}?hc0C)VP7cJ|zZ|xGcFP1~WL%*O)^lwZ!00 zAln?~kY^bLg^$gv(4A(DI zxjT;eou{5Syuqw7FrG)d(gdoVZi~kRuBl7oxtv@3AOTbJMzDmMkjod^`4P_~$k4FNa{tXhr2NpXT>EoU3_Y7&IH@YM;4VcR0(h zYIG;83G}ZT_rT7}{cHLpjl1Og^@<8}bh)`fuC!E10nM?}Q|-67{ztNQf4N6vi7vOc z(G8-aF?Y)DI>~tDapVg=#W>!KuPGeon|_5U^v!PE z2$PMpXE*@NcJGHHc6xs|rf^j5`xW!HUZny(@hr2>rm#I6OF5LW2k(I#*|5Uc-ii-MP;7*? zVI*=2CBJ}Wif&S^*OpM-c1)xLFW_oU2>XlJ!1dss7qI}Ujq@+!N5J6Rb%brMF*E}m zz^V81m)KqP#)+5keuT}&?B8QFattn#%T&zINcJG80>LM-V2~ zaGX@EIE)2nunE~uXZqM(m9(HAZ)X2I*w5Fi%lLgiy4hXE#LqB9N~lq$h=?NB8Xs8y ziuEr*4$7!C7XJk&$c$d=zQ7#z;E^wI6~Jan8epJnBtRw0#2YKarPnx?DRrcj z8j+%=sivQ*f*=S5V_VTk>GqJJwAJ$G)BcgtR~sj*GlkrORd_+pR1@b|pX!!!sxQ~Q zW@(hAM$E9*iq;LSWUCPw*2)6it@~WQ95o}bqrl_!Gt~KOa@C9p)(&oxoqE2yX_EDH zm+mSn_ZO&}O88Tiw@fecI^4cUhjnKReTXPjH!Y*FkGnx&5jI>skcBw7K;Am+Hav0A}lFrF|GGkMvjdH6hAE$v-X$-xUDvjoQ{#>fG z9omRD-DC#bzqsIH!OY>1FR>LZEcSHwWH${rS{M1Qv Zrbzd}CF3_!Bn`N&c;^PGUg}lF{{l?9Zsh;~ delta 4705 zcmZ`-3sh9+wf^@$hnaJD=MAO`gRLE35Wc9_g0tyhw0Z_;W22VzifpR%H9H_X?7*d=7UX@5D)Es(&Lp7 z1T*OmmGE&&Znitmwc70}aJtq$wN7&_ajtb~B_dE1{L_bQZL{az#~|vif*1&+sQ22-%5R}y^868XKyC#TnB6TN;$@BS~tppPoILlj-u29H2L4ciV* zUij#c^^OT<<~j-s%je8>6gph_8jHQ-r_O&K9>)O_9e5sA;9V09eF3sSt=|D7AcX8Y z7_Z$gz{s=O*K>1cCeAYgVhS5{m=8>QVny5 zh59Iar7wil&(muXQD$#TYK;C|H8=t=&P*fwVIF&W!ppE9;`J-9!beD7yaWsMtFOXQ zRFjQ6Qp_TScGp2Uq#8>s&8UZ!Qkpr~oBn;YclZ;kezYEj%aBfs--To!QW-S-4VIWm z9dAHAWKqFRD1aO~y%T0YPW>*(#ym5H0z~R-cR>%rGRoQw)v(+rfs{rF2M5JA!dIYC z&>o28W&9q<1t(SPfhkZ#&3icZiuFr-pjN^%GqnUl1Z~|1KZSA@KPxT~{K!=dLaxFv zCJ{sxO?ex3(#3r+JFZ*u(^U_mt2XGmB~e48-+_`5wLb82V7jRD?UF2_!ME9EZZ?Zu zbnIOQ{LDL$0gV*a1a4jo9LDXv=e(vtqWAh3Eq$_R;vMp9Gkx9!e36nqR)qN7;kq&!!N zR$Qi)db9$*+vCh%uX*C=>0|IPr_HaA!9t8uyv6o7l8?izX>oiBSE49Ij8q0|7x$oc z1}Qrzo{EpdJWNn1eKo^<_Bd=sHPI&~S+SA(I83vqDE=T#9b|n9z4?2n4NoN0b zk0V{NiF89?vNhu#Pv#(=4BGKAY*8}}o(x4~=|fLKCI;sCc)2L%(dtj&9ZtrePhmVS zh9JYixLonRxhY!rehTwsPRxsc;M~^e`7@9Jn%;5-h687&&yFI6zMsx^Ogal)2*niG z3B6FJf87ZY2<3j&D(7Ff$W#Lk~SCw4%kH-x*(dqy9`_9Mg?xrhU@&=@HyBy zK|^oABahqssP0u@=G@#8P0Mm@n6q$_eJR)Oy^3uA@l25yf<;~mHb$t4FZ4aISrPm* zDzQzp`mb7X1x9githxdVxbL050?GX5Q^Ikw(=<#ld4M&E>s~jb< z32LI6tfr`GYPy=CiUfLMfTQu+|L};C=--bS;5bM&_H%fU@_l}50LBKUst}w};t(QL zKR*Di7FsyK?*C07PU41pCJ<*y8C=r(BQS=>1mRTfxlaY*aPGMqgYY5lx%-1~6y#B7 z5Qg(xPY@P_u}ZR-&hF1+-7rTL%joG~Ojx>H9bB`PsSi}tWlYaC%fWO{YNcg`9)+7v zrJMm8(<+PB%c7E{3f8wo7Mh<}qg5d|ioOfRv0NlZ^FF3Xg~#$->s{_muG|ubtJINi zG%`c7(;)tw`#UeAX~huC<{HvG1mmHM&JV!}ynH_dZMJfjEsO_NsDgi-hYp<1oqh69 zd@{UPg``Z^I;})=dFDGjjNNv>5{HK3jHK%Ow69SIt6yWtyw9PNH&0u|DcKdzgrye9f7&+fA_B+xnk2DvHE79uHoO#3atdk9d*e&G4PK(-clCY&d}uZ5S;l z4mz5RX=d;Drr~th#vzeGH*C0w12icLr?9hEMX|MIRAVevbR-Isxys#&!X)f5dv_}l zG&LHdc}Ae@Xq5l3heY&y%I@Tu{a#>DpV9}+@gAOf+FZ(ERL2# zRM<`Zvmo62n;?b0j%DjZDJ+hykE3~Un2aM;@2cQPy(SJv1>wI7Y8{WnH8e8;Z>)qd z`h;q{j?_|vmC!`VFEN(Q^dB$b&)CCLUdDOs+|rlvm(Z^N?PVMWa7s7V;#uGh@TXUC zF#|o$i(7aA+vmll(4*h=Vi_oXCRqf3V9%tp4H!+Y)nS1&V7f%@aX3RyuEz@Cl6ip8 z%q3ITU&rGLdumf7j%1Y^8d=;(-L{97gm`Ls3m>A_8*!`uY!p!SUcMobe%OnnxjK#B zhbtgie|8^QQA#y$Gwv9vAAJWo9@41d09TxJI&^?pGH7B8W0OglEtm>f`g1M#3kh=c zAKu4MWOs*th--PoDE|;&VqYmb)+i3MEaY?cCFIu8N|SX|>8Ot5!Kr_t<3(e{_~g*V}}KJpVZnK|mlcktyGD5nEgNL}V`{a^=v z8~{DE@jO@5UTQecg8S*q^Z1PskJmoKSvX+Uqc7lQ085mR#qCQt&+$-&3&o zq+)&UmpESLgjjzQ(-^*{o45veMzh?)490EgE!Mx9DsJHkhVS7%4$4~nXdgO;`(l0nv!zC#OcyO5_OLw4Kj}MR*BD<^DEX|h~w+{oQ8_=gykhB-@ zjzSNINXt0K^o9^=iZKD49wHs!37~wal*;(MKU8Xj5IxT#9q0HZYnU|3VpXG51Hj?{ z2tdK%yC6(@Jn&xAwmS>xjWFrf){*KgAva<%-jU@tBfSt*?!e zHp)`1TBqNLlNKY#aZk3)On?B7}YLlyrAs#AIa diff --git a/crates/kvdb/Cargo.toml b/crates/kvdb/Cargo.toml index ad7341df4..7d48bf962 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.2.0" +version ="0.3.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.2.0", path="../protocol" } +entropy-protocol={ version="0.3.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 07fc3ef45..bcd49318c 100644 --- a/crates/protocol/Cargo.toml +++ b/crates/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='entropy-protocol' -version ='0.2.0' +version ='0.3.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.83" -entropy-shared ={ version="0.2.0", path="../shared", default-features=false } +entropy-shared ={ version="0.3.0-rc.1", path="../shared", default-features=false } synedrion ={ version="0.2.0-beta.0" } 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 9583d256d..7a7cdc923 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.2.0" +version ="0.3.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 be65c76cb..5e7a32b9f 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.2.0' +version ='0.3.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.2.0", path="../client" } +entropy-client={ version="0.3.0-rc.1", path="../client" } clap ={ version="4.5.19", features=["derive"] } colored ="2.0.4" subxt ="0.35.3" @@ -20,4 +20,4 @@ hex ="0.4.3" bincode ="1.3.3" x25519-dalek ="2.0.1" sp-runtime ={ version="32.0.0", default-features=false } -entropy-shared={ version="0.2.0", path="../shared" } +entropy-shared={ version="0.3.0-rc.1", path="../shared" } diff --git a/crates/testing-utils/Cargo.toml b/crates/testing-utils/Cargo.toml index 71efcf7e8..d352893d4 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.2.0' +version ='0.3.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -9,24 +9,26 @@ repository ='https://github.com/entropyxyz/entropy-core' edition ='2021' [dependencies] -subxt ="0.35.3" -sp-keyring ="34.0.0" -project-root ="0.2.2" -sp-core ={ version="31.0.0", default-features=false } +subxt="0.35.3" +sp-keyring="34.0.0" +project-root="0.2.2" +sp-core={ version="31.0.0", default-features=false } parity-scale-codec="3.6.12" -lazy_static ="1.5.0" -hex-literal ="0.4.1" -tokio ={ version="1.40", features=["macros", "fs", "rt-multi-thread", "io-util", "process"] } -axum ={ version="0.7.7" } -entropy-shared ={ version="0.2.0", path="../shared" } -entropy-kvdb ={ version="0.2.0", path="../kvdb", default-features=false } -entropy-tss ={ version="0.2.0", path="../threshold-signature-server", features=["test_helpers"] } -entropy-protocol ={ version="0.2.0", path="../protocol" } -synedrion ={ version="0.2.0-beta.0" } -hex ="0.4.3" -rand_core ="0.6.4" -rand ="0.8.5" -tdx-quote ={ version="0.0.1", features=["mock"] } +lazy_static="1.5.0" +hex-literal="0.4.1" +tokio={ version="1.40", features=["macros", "fs", "rt-multi-thread", "io-util", "process"] } +axum={ version="0.7.7" } +entropy-shared={ version="0.3.0-rc.1", path="../shared" } +entropy-kvdb={ version="0.3.0-rc.1", path="../kvdb", default-features=false } +entropy-tss={ version="0.3.0-rc.1", path="../threshold-signature-server", features=[ + "test_helpers", +] } +entropy-protocol={ version="0.3.0-rc.1", path="../protocol" } +synedrion={ version="0.2.0-beta.0" } +hex="0.4.3" +rand_core="0.6.4" +rand="0.8.5" +tdx-quote={ version="0.0.1", features=["mock"] } # Logging tracing ="0.1.37" diff --git a/crates/threshold-signature-server/Cargo.toml b/crates/threshold-signature-server/Cargo.toml index d59556cb7..de9502d21 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.2.0" +version ="0.3.0-rc.1" authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' description='Entropy threshold signature scheme (TSS) server' @@ -40,10 +40,12 @@ parity-scale-codec="3.6.12" sp-core ={ version="31.0.0", default-features=false } # Entropy -entropy-shared ={ version="0.2.0", path="../shared" } -entropy-kvdb ={ version="0.2.0", path="../kvdb", default-features=false } -entropy-protocol={ version="0.2.0", path="../protocol", features=["server"] } -entropy-client ={ version="0.2.0", path="../client", default-features=false, features=["native"] } +entropy-shared={ version="0.3.0-rc.1", path="../shared" } +entropy-kvdb={ version="0.3.0-rc.1", path="../kvdb", default-features=false } +entropy-protocol={ version="0.3.0-rc.1", path="../protocol", features=["server"] } +entropy-client={ version="0.3.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 7a7510111..2420fe0fb 100644 --- a/node/cli/Cargo.toml +++ b/node/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='entropy' -version ='0.2.0' +version ='0.3.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.2.0", path="../../runtime" } -entropy-shared={ version="0.2.0", path="../../crates/shared", default-features=false, features=[ +entropy-runtime={ version="0.3.0-rc.1", path="../../runtime" } +entropy-shared={ version="0.3.0-rc.1", path="../../crates/shared", default-features=false, features=[ "wasm-no-std", ] } -pallet-registry={ version="0.2.0", path="../../pallets/registry" } -pallet-staking-extension={ version="0.2.0", path="../../pallets/staking" } +pallet-registry={ version="0.3.0-rc.1", path="../../pallets/registry" } +pallet-staking-extension={ version="0.3.0-rc.1", path="../../pallets/staking" } project-root="0.2.2" [build-dependencies] diff --git a/pallets/attestation/Cargo.toml b/pallets/attestation/Cargo.toml index 731aa43da..a5e282d9d 100644 --- a/pallets/attestation/Cargo.toml +++ b/pallets/attestation/Cargo.toml @@ -1,6 +1,6 @@ [package] name ="pallet-attestation" -version ="0.2.0" +version ="0.3.0-rc.1" authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -23,11 +23,11 @@ sp-std ={ version="14.0.0", default-features=false } pallet-session ={ version="29.0.0", default-features=false, optional=true } rand_chacha ={ version="0.3", default-features=false } -pallet-parameters={ version="0.2.0", path="../parameters", default-features=false } -entropy-shared={ version="0.2.0", path="../../crates/shared", features=[ +pallet-parameters={ version="0.3.0-rc.1", path="../parameters", default-features=false } +entropy-shared={ version="0.3.0-rc.1", path="../../crates/shared", features=[ "wasm-no-std", ], default-features=false } -pallet-staking-extension={ version="0.2.0", path="../staking", default-features=false } +pallet-staking-extension={ version="0.3.0-rc.1", path="../staking", default-features=false } tdx-quote="0.0.1" [dev-dependencies] diff --git a/pallets/oracle/Cargo.toml b/pallets/oracle/Cargo.toml index 1067fb6fa..81f3612dd 100644 --- a/pallets/oracle/Cargo.toml +++ b/pallets/oracle/Cargo.toml @@ -1,6 +1,6 @@ [package] name ="pallet-oracle" -version ='0.2.0-rc.1' +version ='0.3.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' diff --git a/pallets/parameters/Cargo.toml b/pallets/parameters/Cargo.toml index f033f5523..ad3932b32 100644 --- a/pallets/parameters/Cargo.toml +++ b/pallets/parameters/Cargo.toml @@ -1,6 +1,6 @@ [package] name ="pallet-parameters" -version ='0.2.0' +version ='0.3.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -19,7 +19,7 @@ sp-runtime ={ version="32.0.0", default-features=false } sp-std ={ version="14.0.0", default-features=false } pallet-session ={ version="29.0.0", default-features=false } -entropy-shared={ version="0.2.0", path="../../crates/shared", features=[ +entropy-shared={ version="0.3.0-rc.1", path="../../crates/shared", features=[ "wasm-no-std", ], default-features=false } diff --git a/pallets/programs/Cargo.toml b/pallets/programs/Cargo.toml index 1667938c8..d4d3c3002 100644 --- a/pallets/programs/Cargo.toml +++ b/pallets/programs/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='pallet-programs' -version ='0.2.0' +version ='0.3.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 082e106f0..b21818add 100644 --- a/pallets/propagation/Cargo.toml +++ b/pallets/propagation/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='pallet-propagation' -version ='0.2.0' +version ='0.3.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -26,13 +26,13 @@ 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.2.0", path="../../crates/shared", default-features=false, features=[ +entropy-shared={ version="0.3.0-rc.1", path="../../crates/shared", default-features=false, features=[ "wasm-no-std", ] } -pallet-registry={ version="0.2.0", path="../registry", default-features=false } -pallet-programs={ version="0.2.0", path="../programs", default-features=false } -pallet-staking-extension={ version="0.2.0", path="../staking", default-features=false } -pallet-attestation={ version="0.2.0", path="../attestation", default-features=false } +pallet-registry={ version="0.3.0-rc.1", path="../registry", default-features=false } +pallet-programs={ version="0.3.0-rc.1", path="../programs", default-features=false } +pallet-staking-extension={ version="0.3.0-rc.1", path="../staking", default-features=false } +pallet-attestation={ version="0.3.0-rc.1", path="../attestation", default-features=false } [dev-dependencies] parking_lot="0.12.3" @@ -47,7 +47,7 @@ pallet-staking-reward-curve ={ version="11.0.0" } pallet-timestamp ={ version="28.0.0", default-features=false } sp-keystore ={ version="0.35.0" } sp-npos-elections ={ version="27.0.0", default-features=false } -pallet-parameters ={ version="0.2.0", path="../parameters", default-features=false } +pallet-parameters ={ version="0.3.0-rc.1", path="../parameters", default-features=false } [features] default=['std'] diff --git a/pallets/registry/Cargo.toml b/pallets/registry/Cargo.toml index 4d2d5192c..a8bbc0922 100644 --- a/pallets/registry/Cargo.toml +++ b/pallets/registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='pallet-registry' -version ='0.2.0' +version ='0.3.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -29,12 +29,12 @@ 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.2.0", path="../../crates/shared", features=[ +entropy-shared={ version="0.3.0-rc.1", path="../../crates/shared", features=[ "wasm-no-std", ], default-features=false } -pallet-programs={ version="0.2.0", path="../programs", default-features=false } -pallet-staking-extension={ version="0.2.0", path="../staking", default-features=false } -pallet-parameters={ version="0.2.0", path="../parameters", default-features=false } +pallet-programs={ version="0.3.0-rc.1", path="../programs", default-features=false } +pallet-staking-extension={ version="0.3.0-rc.1", path="../staking", default-features=false } +pallet-parameters={ version="0.3.0-rc.1", path="../parameters", 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 3272c9996..7e3c90df8 100644 --- a/pallets/slashing/Cargo.toml +++ b/pallets/slashing/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='pallet-slashing' -version ='0.2.0' +version ='0.3.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 48e9cfeae..970f0b5dc 100644 --- a/pallets/staking/Cargo.toml +++ b/pallets/staking/Cargo.toml @@ -1,6 +1,6 @@ [package] name ='pallet-staking-extension' -version ='0.2.0' +version ='0.3.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -29,8 +29,8 @@ sp-staking ={ version="27.0.0", default-features=false } sp-std ={ version="14.0.0", default-features=false } sp-consensus-babe ={ version="0.33.0", default-features=false } -pallet-parameters={ version="0.2.0", path="../parameters", default-features=false } -entropy-shared={ version="0.2.0", path="../../crates/shared", features=[ +pallet-parameters={ version="0.3.0-rc.1", path="../parameters", default-features=false } +entropy-shared={ version="0.3.0-rc.1", path="../../crates/shared", features=[ "wasm-no-std", ], default-features=false } @@ -51,7 +51,7 @@ sp-npos-elections ={ version="27.0.0", default-features=false } rand_core ="0.6.4" tdx-quote ={ git="https://github.com/entropyxyz/tdx-quote", rev="cb167f2", features=["mock"] } -pallet-attestation={ version="0.2.0", path="../attestation" } +pallet-attestation={ version="0.3.0-rc.1", path="../attestation" } [features] default=['std'] diff --git a/pallets/transaction-pause/Cargo.toml b/pallets/transaction-pause/Cargo.toml index d77296401..c9a349a98 100644 --- a/pallets/transaction-pause/Cargo.toml +++ b/pallets/transaction-pause/Cargo.toml @@ -1,6 +1,6 @@ [package] name ="pallet-transaction-pause" -version ='0.2.0' +version ='0.3.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.2.0", default-features=false, path="../programs" } +pallet-programs={ version="0.3.0-rc.1", default-features=false, path="../programs" } [features] default=["std"] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index db503f21b..fd90c6247 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.2.0' +version ='0.3.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -95,17 +95,17 @@ pallet-utility ={ version="29.0.0", default-featur pallet-vesting ={ version="29.0.0", default-features=false } # Entropy Pallets -pallet-programs ={ version='0.2.0', path='../pallets/programs', default-features=false } -pallet-propagation ={ version='0.2.0', path='../pallets/propagation', default-features=false } -pallet-registry ={ version='0.2.0', path='../pallets/registry', default-features=false } -pallet-slashing ={ version='0.2.0', path='../pallets/slashing', default-features=false } -pallet-staking-extension={ version='0.2.0', path='../pallets/staking', default-features=false } -pallet-transaction-pause={ version='0.2.0', path='../pallets/transaction-pause', default-features=false } -pallet-parameters ={ version='0.2.0', path='../pallets/parameters', default-features=false } -pallet-attestation ={ version='0.2.0', path='../pallets/attestation', default-features=false } -pallet-oracle ={ version='0.2.0-rc.1', path='../pallets/oracle', default-features=false } +pallet-programs ={ version='0.3.0-rc.1', path='../pallets/programs', default-features=false } +pallet-propagation ={ version='0.3.0-rc.1', path='../pallets/propagation', default-features=false } +pallet-registry ={ version='0.3.0-rc.1', path='../pallets/registry', default-features=false } +pallet-slashing ={ version='0.3.0-rc.1', path='../pallets/slashing', default-features=false } +pallet-staking-extension={ version='0.3.0-rc.1', path='../pallets/staking', default-features=false } +pallet-transaction-pause={ version='0.3.0-rc.1', path='../pallets/transaction-pause', default-features=false } +pallet-parameters ={ version='0.3.0-rc.1', path='../pallets/parameters', default-features=false } +pallet-attestation ={ version='0.3.0-rc.1', path='../pallets/attestation', default-features=false } +pallet-oracle ={ version='0.3.0-rc.1', path='../pallets/oracle', default-features=false } -entropy-shared={ version="0.2.0", path="../crates/shared", default-features=false, features=[ +entropy-shared={ version="0.3.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 8ab947f87..19f4c6e8a 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -208,7 +208,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_02_00, + spec_version: 00_03_00, // We only bump this if the runtime behaviour remains unchanged, but the implementations details // have changed. @@ -222,7 +222,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // call index, parameter changes, etc.). // // The `spec_version` also needs to be bumped in this case. - transaction_version: 7, + transaction_version: 8, // Version of the state implementation to use. // diff --git a/runtime/src/weights/frame_benchmarking.rs b/runtime/src/weights/frame_benchmarking.rs index da8fddcf6..2d0b1efcd 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=frame_benchmarking // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -53,8 +53,8 @@ impl frame_benchmarking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 268_000 picoseconds. - Weight::from_parts(318_877, 0) + // Minimum execution time: 269_000 picoseconds. + Weight::from_parts(332_170, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `i` is `[0, 1000000]`. @@ -63,7 +63,7 @@ impl frame_benchmarking::WeightInfo for WeightInfo { // Measured: `0` // Estimated: `0` // Minimum execution time: 265_000 picoseconds. - Weight::from_parts(332_234, 0) + Weight::from_parts(331_536, 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: 260_000 picoseconds. - Weight::from_parts(322_797, 0) + // Minimum execution time: 271_000 picoseconds. + Weight::from_parts(328_054, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `i` is `[0, 1000000]`. @@ -80,16 +80,16 @@ impl frame_benchmarking::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 262_000 picoseconds. - Weight::from_parts(326_451, 0) + // Minimum execution time: 264_000 picoseconds. + Weight::from_parts(323_131, 0) .saturating_add(Weight::from_parts(0, 0)) } fn hashing() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 31_208_685_000 picoseconds. - Weight::from_parts(31_247_824_000, 0) + // Minimum execution time: 31_587_613_000 picoseconds. + Weight::from_parts(31_619_519_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: 395_000 picoseconds. - Weight::from_parts(5_731_496, 0) + // Minimum execution time: 368_000 picoseconds. + Weight::from_parts(6_298_999, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 5_752 - .saturating_add(Weight::from_parts(41_548_189, 0).saturating_mul(i.into())) + // Standard Error: 12_790 + .saturating_add(Weight::from_parts(40_151_679, 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 da2102e08..69b91a054 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=frame_election_provider_support // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -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_649_340_000 picoseconds. - Weight::from_parts(9_769_807_000, 0) + // Minimum execution time: 9_385_214_000 picoseconds. + Weight::from_parts(9_452_665_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // 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())) + // Standard Error: 366_744 + .saturating_add(Weight::from_parts(8_209_981, 0).saturating_mul(v.into())) + // Standard Error: 38_946_141 + .saturating_add(Weight::from_parts(1_966_202_380, 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_199_091_000 picoseconds. - Weight::from_parts(6_238_219_000, 0) + // Minimum execution time: 6_118_136_000 picoseconds. + Weight::from_parts(6_172_703_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // 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())) + // Standard Error: 316_403 + .saturating_add(Weight::from_parts(6_767_657, 0).saturating_mul(v.into())) + // Standard Error: 33_600_300 + .saturating_add(Weight::from_parts(1_823_421_990, 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 eb09dfba2..e3b30c7f4 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=frame_system // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -53,8 +53,8 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_330_000 picoseconds. - Weight::from_parts(7_244_508, 0) + // Minimum execution time: 3_247_000 picoseconds. + Weight::from_parts(10_479_076, 0) .saturating_add(Weight::from_parts(0, 0)) // Standard Error: 0 .saturating_add(Weight::from_parts(366, 0).saturating_mul(b.into())) @@ -64,11 +64,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 8_286_000 picoseconds. - Weight::from_parts(16_575_808, 0) + // Minimum execution time: 7_992_000 picoseconds. + Weight::from_parts(13_807_060, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1 - .saturating_add(Weight::from_parts(1_361, 0).saturating_mul(b.into())) + // Standard Error: 3 + .saturating_add(Weight::from_parts(1_356, 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_585_000 picoseconds. - Weight::from_parts(5_954_000, 0) + // Minimum execution time: 5_530_000 picoseconds. + Weight::from_parts(5_901_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: 121_858_799_000 picoseconds. - Weight::from_parts(122_426_575_000, 0) + // Minimum execution time: 120_878_561_000 picoseconds. + Weight::from_parts(121_437_071_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_326_000 picoseconds. - Weight::from_parts(3_493_000, 0) + // Minimum execution time: 3_166_000 picoseconds. + Weight::from_parts(3_300_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 942 - .saturating_add(Weight::from_parts(1_032_110, 0).saturating_mul(i.into())) + // Standard Error: 1_482 + .saturating_add(Weight::from_parts(1_008_105, 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_480_000 picoseconds. - Weight::from_parts(3_630_000, 0) + // Minimum execution time: 3_264_000 picoseconds. + Weight::from_parts(3_366_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 970 - .saturating_add(Weight::from_parts(751_486, 0).saturating_mul(i.into())) + // Standard Error: 1_892 + .saturating_add(Weight::from_parts(723_910, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -131,13 +131,13 @@ impl frame_system::WeightInfo for WeightInfo { /// The range of component `p` is `[0, 1000]`. fn kill_prefix(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `102 + p * (69 ±0)` - // Estimated: `87 + p * (70 ±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_228 - .saturating_add(Weight::from_parts(1_405_367, 0).saturating_mul(p.into())) + // Measured: `144 + p * (69 ±0)` + // Estimated: `147 + p * (70 ±0)` + // Minimum execution time: 6_269_000 picoseconds. + Weight::from_parts(6_332_000, 0) + .saturating_add(Weight::from_parts(0, 147)) + // Standard Error: 3_115 + .saturating_add(Weight::from_parts(1_377_255, 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: 15_976_000 picoseconds. - Weight::from_parts(17_480_000, 0) + // Minimum execution time: 16_797_000 picoseconds. + Weight::from_parts(18_004_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: 127_448_656_000 picoseconds. - Weight::from_parts(128_981_726_000, 0) + // Minimum execution time: 126_842_527_000 picoseconds. + Weight::from_parts(127_509_930_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_attestation.rs b/runtime/src/weights/pallet_attestation.rs index 5075be428..294f9deca 100644 --- a/runtime/src/weights/pallet_attestation.rs +++ b/runtime/src/weights/pallet_attestation.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_attestation` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-09-27, STEPS: `5`, REPEAT: `2`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `hcastano`, CPU: `` +//! HOSTNAME: `ip-172-31-28-93`, 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_attestation // --extrinsic=* -// --steps=5 -// --repeat=2 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt +// --template +// .maintain/frame-weight-template.hbs // --output=./runtime/src/weights/ #![cfg_attr(rustfmt, rustfmt_skip)] @@ -55,11 +58,11 @@ impl pallet_attestation::WeightInfo for WeightInfo { /// Proof: `StakingExtension::CounterForValidationQueue` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn attest() -> Weight { // Proof Size summary in bytes: - // Measured: `833` - // Estimated: `6773` - // Minimum execution time: 1_684_000_000 picoseconds. - Weight::from_parts(1_714_000_000, 0) - .saturating_add(Weight::from_parts(0, 6773)) + // Measured: `867` + // Estimated: `6807` + // Minimum execution time: 4_202_199_000 picoseconds. + Weight::from_parts(4_248_856_000, 0) + .saturating_add(Weight::from_parts(0, 6807)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -67,22 +70,26 @@ impl pallet_attestation::WeightInfo for WeightInfo { /// Proof: `StakingExtension::ValidationQueue` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Attestation::AttestationRequests` (r:1 w:1) /// Proof: `Attestation::AttestationRequests` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `Babe::NextRandomness` (r:1 w:0) + /// Proof: `Babe::NextRandomness` (`max_values`: Some(1), `max_size`: Some(32), added: 527, mode: `MaxEncodedLen`) + /// Storage: `Babe::EpochStart` (r:1 w:0) + /// Proof: `Babe::EpochStart` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`) /// Storage: `Attestation::PendingAttestations` (r:0 w:250) /// Proof: `Attestation::PendingAttestations` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `s` is `[1, 250]`. fn on_initialize(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `476 + s * (174 ±0)` - // Estimated: `3938 + s * (2650 ±0)` - // Minimum execution time: 23_000_000 picoseconds. - Weight::from_parts(5_800_748, 0) - .saturating_add(Weight::from_parts(0, 3938)) - // Standard Error: 68_033 - .saturating_add(Weight::from_parts(6_715_648, 0).saturating_mul(s.into())) - .saturating_add(T::DbWeight::get().reads(2)) + // Measured: `715 + s * (208 ±0)` + // Estimated: `4181 + s * (2684 ±0)` + // Minimum execution time: 33_792_000 picoseconds. + Weight::from_parts(15_857_412, 0) + .saturating_add(Weight::from_parts(0, 4181)) + // Standard Error: 15_260 + .saturating_add(Weight::from_parts(10_380_520, 0).saturating_mul(s.into())) + .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) - .saturating_add(Weight::from_parts(0, 2650).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(0, 2684).saturating_mul(s.into())) } -} +} \ No newline at end of file diff --git a/runtime/src/weights/pallet_babe.rs b/runtime/src/weights/pallet_babe.rs index cbb2a0f53..78b7e61cf 100644 --- a/runtime/src/weights/pallet_babe.rs +++ b/runtime/src/weights/pallet_babe.rs @@ -16,9 +16,9 @@ //! 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: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_babe // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -49,14 +49,12 @@ use core::marker::PhantomData; 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 { + 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) + // Minimum execution time: 91_936_000 picoseconds. + Weight::from_parts(92_786_241, 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 b2f4e2a66..a8865beac 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_bags_list // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -58,10 +58,10 @@ impl pallet_bags_list::WeightInfo for WeightInfo { /// Proof: `BagsList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`) fn rebag_non_terminal() -> Weight { // Proof Size summary in bytes: - // Measured: `1702` + // Measured: `1838` // Estimated: `11506` - // Minimum execution time: 76_975_000 picoseconds. - Weight::from_parts(78_145_000, 0) + // Minimum execution time: 76_310_000 picoseconds. + Weight::from_parts(78_168_000, 0) .saturating_add(Weight::from_parts(0, 11506)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(5)) @@ -76,10 +76,10 @@ impl pallet_bags_list::WeightInfo for WeightInfo { /// Proof: `BagsList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`) fn rebag_terminal() -> Weight { // Proof Size summary in bytes: - // Measured: `1599` + // Measured: `1732` // Estimated: `8877` - // Minimum execution time: 74_542_000 picoseconds. - Weight::from_parts(76_779_000, 0) + // Minimum execution time: 74_816_000 picoseconds. + Weight::from_parts(76_501_000, 0) .saturating_add(Weight::from_parts(0, 8877)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(5)) @@ -96,10 +96,10 @@ impl pallet_bags_list::WeightInfo for WeightInfo { /// Proof: `BagsList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`) fn put_in_front_of() -> Weight { // Proof Size summary in bytes: - // Measured: `1908` + // Measured: `2044` // Estimated: `11506` - // Minimum execution time: 89_622_000 picoseconds. - Weight::from_parts(92_264_000, 0) + // Minimum execution time: 89_403_000 picoseconds. + Weight::from_parts(92_394_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 95fd79995..fb2431d4f 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_balances // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -54,8 +54,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 68_269_000 picoseconds. - Weight::from_parts(70_005_000, 0) + // Minimum execution time: 65_096_000 picoseconds. + Weight::from_parts(66_081_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: 54_590_000 picoseconds. - Weight::from_parts(55_507_000, 0) + // Minimum execution time: 52_045_000 picoseconds. + Weight::from_parts(53_157_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_667_000 picoseconds. - Weight::from_parts(20_229_000, 0) + // Minimum execution time: 19_173_000 picoseconds. + Weight::from_parts(20_039_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: 27_385_000 picoseconds. - Weight::from_parts(28_084_000, 0) + // Minimum execution time: 26_263_000 picoseconds. + Weight::from_parts(27_560_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: 70_474_000 picoseconds. - Weight::from_parts(71_447_000, 0) + // Minimum execution time: 66_145_000 picoseconds. + Weight::from_parts(68_442_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: 67_350_000 picoseconds. - Weight::from_parts(68_819_000, 0) + // Minimum execution time: 64_301_000 picoseconds. + Weight::from_parts(65_397_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -126,24 +126,24 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `207` // Estimated: `3593` - // Minimum execution time: 24_233_000 picoseconds. - Weight::from_parts(25_051_000, 0) + // Minimum execution time: 22_997_000 picoseconds. + Weight::from_parts(24_161_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } - /// Storage: `System::Account` (r:999 w:999) + /// Storage: `System::Account` (r:1000 w:1000) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) /// The range of component `u` is `[1, 1000]`. fn upgrade_accounts(u: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0 + u * (135 ±0)` // Estimated: `990 + u * (2603 ±0)` - // Minimum execution time: 24_195_000 picoseconds. - Weight::from_parts(24_686_000, 0) + // Minimum execution time: 23_571_000 picoseconds. + Weight::from_parts(23_636_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 19_093 - .saturating_add(Weight::from_parts(19_433_890, 0).saturating_mul(u.into())) + // Standard Error: 26_889 + .saturating_add(Weight::from_parts(18_359_738, 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: 8_942_000 picoseconds. - Weight::from_parts(9_458_000, 0) + // Minimum execution time: 8_989_000 picoseconds. + Weight::from_parts(9_336_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 8e72b7d79..24207b447 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_bounties // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -61,11 +61,11 @@ impl pallet_bounties::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `177` // Estimated: `3593` - // Minimum execution time: 34_270_000 picoseconds. - Weight::from_parts(35_942_614, 0) + // Minimum execution time: 33_902_000 picoseconds. + Weight::from_parts(35_563_457, 0) .saturating_add(Weight::from_parts(0, 3593)) - // Standard Error: 7 - .saturating_add(Weight::from_parts(700, 0).saturating_mul(d.into())) + // Standard Error: 18 + .saturating_add(Weight::from_parts(649, 0).saturating_mul(d.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -77,8 +77,8 @@ impl pallet_bounties::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `269` // Estimated: `3642` - // Minimum execution time: 16_389_000 picoseconds. - Weight::from_parts(17_304_000, 0) + // Minimum execution time: 16_771_000 picoseconds. + Weight::from_parts(17_587_000, 0) .saturating_add(Weight::from_parts(0, 3642)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -89,8 +89,8 @@ impl pallet_bounties::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `289` // Estimated: `3642` - // Minimum execution time: 15_553_000 picoseconds. - Weight::from_parts(16_541_000, 0) + // Minimum execution time: 15_473_000 picoseconds. + Weight::from_parts(16_260_000, 0) .saturating_add(Weight::from_parts(0, 3642)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -103,8 +103,8 @@ impl pallet_bounties::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `499` // Estimated: `3642` - // Minimum execution time: 49_565_000 picoseconds. - Weight::from_parts(51_242_000, 0) + // Minimum execution time: 49_560_000 picoseconds. + Weight::from_parts(51_000_000, 0) .saturating_add(Weight::from_parts(0, 3642)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -117,8 +117,8 @@ impl pallet_bounties::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `495` // Estimated: `3642` - // Minimum execution time: 35_579_000 picoseconds. - Weight::from_parts(36_649_000, 0) + // Minimum execution time: 35_174_000 picoseconds. + Weight::from_parts(35_943_000, 0) .saturating_add(Weight::from_parts(0, 3642)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -130,7 +130,7 @@ impl pallet_bounties::WeightInfo for WeightInfo { // Measured: `325` // Estimated: `3642` // Minimum execution time: 16_409_000 picoseconds. - Weight::from_parts(17_255_000, 0) + Weight::from_parts(16_938_000, 0) .saturating_add(Weight::from_parts(0, 3642)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -145,8 +145,8 @@ impl pallet_bounties::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `723` // Estimated: `8799` - // Minimum execution time: 142_697_000 picoseconds. - Weight::from_parts(145_227_000, 0) + // Minimum execution time: 137_666_000 picoseconds. + Weight::from_parts(141_598_000, 0) .saturating_add(Weight::from_parts(0, 8799)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(5)) @@ -161,8 +161,8 @@ impl pallet_bounties::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `369` // Estimated: `3642` - // Minimum execution time: 49_228_000 picoseconds. - Weight::from_parts(50_863_000, 0) + // Minimum execution time: 47_922_000 picoseconds. + Weight::from_parts(48_827_000, 0) .saturating_add(Weight::from_parts(0, 3642)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) @@ -177,8 +177,8 @@ impl pallet_bounties::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `639` // Estimated: `6196` - // Minimum execution time: 94_931_000 picoseconds. - Weight::from_parts(97_509_000, 0) + // Minimum execution time: 92_227_000 picoseconds. + Weight::from_parts(94_526_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(4)) @@ -189,8 +189,8 @@ impl pallet_bounties::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `325` // Estimated: `3642` - // Minimum execution time: 16_442_000 picoseconds. - Weight::from_parts(16_932_000, 0) + // Minimum execution time: 16_334_000 picoseconds. + Weight::from_parts(16_781_000, 0) .saturating_add(Weight::from_parts(0, 3642)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -204,13 +204,13 @@ impl pallet_bounties::WeightInfo for WeightInfo { /// The range of component `b` is `[0, 100]`. fn spend_funds(b: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `121 + b * (296 ±0)` + // Measured: `143 + b * (297 ±0)` // Estimated: `1887 + b * (5206 ±0)` - // Minimum execution time: 4_844_000 picoseconds. - Weight::from_parts(4_974_000, 0) + // Minimum execution time: 4_763_000 picoseconds. + Weight::from_parts(9_549_712, 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())) + // Standard Error: 38_343 + .saturating_add(Weight::from_parts(43_485_494, 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)) diff --git a/runtime/src/weights/pallet_collective.rs b/runtime/src/weights/pallet_collective.rs index f9565a50a..f4a1d83e2 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_collective // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -61,21 +61,21 @@ impl pallet_collective::WeightInfo for WeightInfo { /// The range of component `p` is `[0, 100]`. fn set_members(m: u32, _n: u32, p: u32, ) -> Weight { // 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_377_000 picoseconds. - Weight::from_parts(19_795_000, 0) - .saturating_add(Weight::from_parts(0, 15762)) - // 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())) + // Measured: `0 + m * (3233 ±0) + p * (3190 ±0)` + // Estimated: `27094 + m * (1968 ±43) + p * (4274 ±43)` + // Minimum execution time: 18_916_000 picoseconds. + Weight::from_parts(19_030_000, 0) + .saturating_add(Weight::from_parts(0, 27094)) + // Standard Error: 131_974 + .saturating_add(Weight::from_parts(4_791_109, 0).saturating_mul(m.into())) + // Standard Error: 131_974 + .saturating_add(Weight::from_parts(9_194_000, 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)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) - .saturating_add(Weight::from_parts(0, 1967).saturating_mul(m.into())) - .saturating_add(Weight::from_parts(0, 4332).saturating_mul(p.into())) + .saturating_add(Weight::from_parts(0, 1968).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(0, 4274).saturating_mul(p.into())) } /// Storage: `Council::Members` (r:1 w:0) /// Proof: `Council::Members` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) @@ -84,14 +84,14 @@ impl pallet_collective::WeightInfo for WeightInfo { fn execute(b: u32, m: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `103 + m * (32 ±0)` - // Estimated: `1589 + m * (32 ±0)` - // Minimum execution time: 17_856_000 picoseconds. - Weight::from_parts(17_080_027, 0) - .saturating_add(Weight::from_parts(0, 1589)) - // 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())) + // Estimated: `1588 + m * (32 ±0)` + // Minimum execution time: 17_757_000 picoseconds. + Weight::from_parts(17_392_015, 0) + .saturating_add(Weight::from_parts(0, 1588)) + // Standard Error: 97 + .saturating_add(Weight::from_parts(1_446, 0).saturating_mul(b.into())) + // Standard Error: 1_004 + .saturating_add(Weight::from_parts(15_509, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -104,14 +104,14 @@ impl pallet_collective::WeightInfo for WeightInfo { fn propose_execute(b: u32, m: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `103 + m * (32 ±0)` - // Estimated: `3569 + m * (32 ±0)` - // Minimum execution time: 21_587_000 picoseconds. - Weight::from_parts(20_590_965, 0) - .saturating_add(Weight::from_parts(0, 3569)) - // 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())) + // Estimated: `3568 + m * (32 ±0)` + // Minimum execution time: 21_184_000 picoseconds. + Weight::from_parts(20_348_289, 0) + .saturating_add(Weight::from_parts(0, 3568)) + // Standard Error: 171 + .saturating_add(Weight::from_parts(2_008, 0).saturating_mul(b.into())) + // Standard Error: 1_761 + .saturating_add(Weight::from_parts(29_382, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -130,17 +130,17 @@ impl pallet_collective::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 100]`. fn propose_proposed(b: u32, m: u32, p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `368 + m * (32 ±0) + p * (36 ±0)` - // Estimated: `3806 + m * (33 ±0) + p * (37 ±0)` - // Minimum execution time: 29_038_000 picoseconds. - Weight::from_parts(27_908_197, 0) - .saturating_add(Weight::from_parts(0, 3806)) - // 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())) + // Measured: `447 + m * (32 ±0) + p * (36 ±0)` + // Estimated: `3819 + m * (33 ±0) + p * (37 ±0)` + // Minimum execution time: 28_135_000 picoseconds. + Weight::from_parts(27_091_088, 0) + .saturating_add(Weight::from_parts(0, 3819)) + // Standard Error: 297 + .saturating_add(Weight::from_parts(4_490, 0).saturating_mul(b.into())) + // Standard Error: 3_091 + .saturating_add(Weight::from_parts(24_411, 0).saturating_mul(m.into())) + // Standard Error: 3_059 + .saturating_add(Weight::from_parts(250_694, 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())) @@ -153,13 +153,13 @@ impl pallet_collective::WeightInfo for WeightInfo { /// The range of component `m` is `[5, 100]`. fn vote(m: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `969 + m * (64 ±0)` + // Measured: `968 + m * (64 ±0)` // Estimated: `4433 + m * (64 ±0)` - // Minimum execution time: 28_630_000 picoseconds. - Weight::from_parts(29_807_040, 0) + // Minimum execution time: 28_320_000 picoseconds. + Weight::from_parts(28_853_123, 0) .saturating_add(Weight::from_parts(0, 4433)) - // Standard Error: 800 - .saturating_add(Weight::from_parts(57_259, 0).saturating_mul(m.into())) + // Standard Error: 1_949 + .saturating_add(Weight::from_parts(56_847, 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())) @@ -176,15 +176,15 @@ impl pallet_collective::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 100]`. fn close_early_disapproved(m: u32, p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `459 + m * (64 ±0) + p * (37 ±0)` - // Estimated: `3902 + m * (64 ±0) + p * (37 ±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_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())) + // Measured: `494 + m * (64 ±0) + p * (36 ±0)` + // Estimated: `3906 + m * (64 ±0) + p * (37 ±0)` + // Minimum execution time: 32_372_000 picoseconds. + Weight::from_parts(30_338_087, 0) + .saturating_add(Weight::from_parts(0, 3906)) + // Standard Error: 3_344 + .saturating_add(Weight::from_parts(50_260, 0).saturating_mul(m.into())) + // Standard Error: 3_229 + .saturating_add(Weight::from_parts(228_109, 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())) @@ -203,17 +203,17 @@ impl pallet_collective::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 100]`. fn close_early_approved(b: u32, m: u32, p: u32, ) -> Weight { // 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: 46_013_000 picoseconds. - Weight::from_parts(46_383_251, 0) - .saturating_add(Weight::from_parts(0, 4059)) - // 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())) + // Measured: `467 + b * (1 ±0) + m * (64 ±0) + p * (42 ±0)` + // Estimated: `4008 + b * (1 ±0) + m * (63 ±0) + p * (42 ±0)` + // Minimum execution time: 44_837_000 picoseconds. + Weight::from_parts(41_795_367, 0) + .saturating_add(Weight::from_parts(0, 4008)) + // Standard Error: 472 + .saturating_add(Weight::from_parts(3_759, 0).saturating_mul(b.into())) + // Standard Error: 5_031 + .saturating_add(Weight::from_parts(63_863, 0).saturating_mul(m.into())) + // Standard Error: 4_857 + .saturating_add(Weight::from_parts(277_729, 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())) @@ -234,15 +234,15 @@ impl pallet_collective::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 100]`. fn close_disapproved(m: u32, p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `479 + m * (64 ±0) + p * (37 ±0)` - // Estimated: `3922 + m * (64 ±0) + p * (37 ±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_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())) + // Measured: `514 + m * (64 ±0) + p * (36 ±0)` + // Estimated: `3926 + m * (64 ±0) + p * (37 ±0)` + // Minimum execution time: 35_207_000 picoseconds. + Weight::from_parts(32_914_416, 0) + .saturating_add(Weight::from_parts(0, 3926)) + // Standard Error: 2_347 + .saturating_add(Weight::from_parts(57_124, 0).saturating_mul(m.into())) + // Standard Error: 2_267 + .saturating_add(Weight::from_parts(220_907, 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())) @@ -263,17 +263,17 @@ impl pallet_collective::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 100]`. fn close_approved(b: u32, m: u32, p: u32, ) -> Weight { // 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_355_000 picoseconds. - Weight::from_parts(49_352_988, 0) - .saturating_add(Weight::from_parts(0, 4079)) - // 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())) + // Measured: `487 + b * (1 ±0) + m * (64 ±0) + p * (42 ±0)` + // Estimated: `4028 + b * (1 ±0) + m * (63 ±0) + p * (42 ±0)` + // Minimum execution time: 47_673_000 picoseconds. + Weight::from_parts(46_013_032, 0) + .saturating_add(Weight::from_parts(0, 4028)) + // Standard Error: 467 + .saturating_add(Weight::from_parts(3_826, 0).saturating_mul(b.into())) + // Standard Error: 4_975 + .saturating_add(Weight::from_parts(60_768, 0).saturating_mul(m.into())) + // Standard Error: 4_803 + .saturating_add(Weight::from_parts(260_906, 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())) @@ -289,13 +289,13 @@ impl pallet_collective::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 100]`. fn disapprove_proposal(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `260 + p * (32 ±0)` + // Measured: `259 + p * (32 ±0)` // Estimated: `1745 + p * (32 ±0)` - // Minimum execution time: 17_269_000 picoseconds. - Weight::from_parts(19_337_700, 0) + // Minimum execution time: 17_253_000 picoseconds. + Weight::from_parts(18_660_009, 0) .saturating_add(Weight::from_parts(0, 1745)) - // Standard Error: 1_411 - .saturating_add(Weight::from_parts(220_352, 0).saturating_mul(p.into())) + // Standard Error: 4_831 + .saturating_add(Weight::from_parts(225_318, 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 f5441f5b2..91920b6f8 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_democracy // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -60,8 +60,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4734` // Estimated: `18187` - // Minimum execution time: 55_556_000 picoseconds. - Weight::from_parts(56_531_000, 0) + // Minimum execution time: 53_638_000 picoseconds. + Weight::from_parts(54_503_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_386_000 picoseconds. - Weight::from_parts(50_782_000, 0) + // Minimum execution time: 47_847_000 picoseconds. + Weight::from_parts(48_936_000, 0) .saturating_add(Weight::from_parts(0, 6695)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -88,10 +88,10 @@ impl pallet_democracy::WeightInfo for WeightInfo { /// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(193), added: 2668, mode: `MaxEncodedLen`) fn vote_new() -> Weight { // Proof Size summary in bytes: - // Measured: `3437` + // Measured: `3503` // Estimated: `7260` - // Minimum execution time: 72_142_000 picoseconds. - Weight::from_parts(73_110_000, 0) + // Minimum execution time: 70_440_000 picoseconds. + Weight::from_parts(71_851_000, 0) .saturating_add(Weight::from_parts(0, 7260)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -106,10 +106,10 @@ impl pallet_democracy::WeightInfo for WeightInfo { /// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(193), added: 2668, mode: `MaxEncodedLen`) fn vote_existing() -> Weight { // Proof Size summary in bytes: - // Measured: `3459` + // Measured: `3525` // Estimated: `7260` - // Minimum execution time: 75_822_000 picoseconds. - Weight::from_parts(77_570_000, 0) + // Minimum execution time: 73_960_000 picoseconds. + Weight::from_parts(75_264_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_786_000 picoseconds. - Weight::from_parts(32_055_000, 0) + // Minimum execution time: 30_330_000 picoseconds. + Weight::from_parts(31_881_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: 127_244_000 picoseconds. - Weight::from_parts(128_800_000, 0) + // Minimum execution time: 125_548_000 picoseconds. + Weight::from_parts(127_924_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_430_000 picoseconds. - Weight::from_parts(16_106_000, 0) + // Minimum execution time: 15_251_000 picoseconds. + Weight::from_parts(15_823_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_305_000 picoseconds. - Weight::from_parts(4_523_000, 0) + // Minimum execution time: 4_139_000 picoseconds. + Weight::from_parts(4_457_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_439_000 picoseconds. - Weight::from_parts(4_552_000, 0) + // Minimum execution time: 4_173_000 picoseconds. + Weight::from_parts(4_321_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: 30_522_000 picoseconds. - Weight::from_parts(31_458_000, 0) + // Minimum execution time: 30_007_000 picoseconds. + Weight::from_parts(31_374_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: 34_812_000 picoseconds. - Weight::from_parts(35_806_000, 0) + // Minimum execution time: 34_213_000 picoseconds. + Weight::from_parts(35_216_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: 104_811_000 picoseconds. - Weight::from_parts(105_702_000, 0) + // Minimum execution time: 101_560_000 picoseconds. + Weight::from_parts(103_596_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_495_000 picoseconds. - Weight::from_parts(22_189_000, 0) + // Minimum execution time: 21_180_000 picoseconds. + Weight::from_parts(22_217_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -265,13 +265,13 @@ impl pallet_democracy::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 99]`. fn on_initialize_base(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `177 + r * (86 ±0)` + // Measured: `175 + r * (86 ±0)` // Estimated: `1489 + r * (2676 ±0)` - // Minimum execution time: 6_811_000 picoseconds. - Weight::from_parts(8_400_956, 0) + // Minimum execution time: 6_815_000 picoseconds. + Weight::from_parts(7_298_059, 0) .saturating_add(Weight::from_parts(0, 1489)) - // Standard Error: 8_598 - .saturating_add(Weight::from_parts(4_035_858, 0).saturating_mul(r.into())) + // Standard Error: 17_377 + .saturating_add(Weight::from_parts(3_933_753, 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)) @@ -292,13 +292,13 @@ impl pallet_democracy::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 99]`. fn on_initialize_base_with_launch_period(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `177 + r * (86 ±0)` + // Measured: `175 + r * (86 ±0)` // Estimated: `18187 + r * (2676 ±0)` - // Minimum execution time: 10_757_000 picoseconds. - Weight::from_parts(10_986_599, 0) + // Minimum execution time: 10_418_000 picoseconds. + Weight::from_parts(12_825_435, 0) .saturating_add(Weight::from_parts(0, 18187)) - // Standard Error: 9_565 - .saturating_add(Weight::from_parts(4_054_468, 0).saturating_mul(r.into())) + // Standard Error: 15_064 + .saturating_add(Weight::from_parts(3_894_477, 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)) @@ -315,13 +315,13 @@ impl pallet_democracy::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 99]`. fn delegate(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `796 + r * (108 ±0)` + // Measured: `860 + r * (108 ±0)` // Estimated: `19800 + r * (2676 ±0)` - // Minimum execution time: 50_756_000 picoseconds. - Weight::from_parts(56_869_978, 0) + // Minimum execution time: 50_504_000 picoseconds. + Weight::from_parts(56_961_120, 0) .saturating_add(Weight::from_parts(0, 19800)) - // Standard Error: 11_225 - .saturating_add(Weight::from_parts(5_290_789, 0).saturating_mul(r.into())) + // Standard Error: 22_923 + .saturating_add(Weight::from_parts(5_199_061, 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)) @@ -335,13 +335,13 @@ impl pallet_democracy::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 99]`. fn undelegate(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `426 + r * (108 ±0)` + // Measured: `424 + r * (108 ±0)` // Estimated: `13530 + r * (2676 ±0)` - // Minimum execution time: 22_789_000 picoseconds. - Weight::from_parts(24_235_519, 0) + // Minimum execution time: 22_695_000 picoseconds. + Weight::from_parts(21_661_846, 0) .saturating_add(Weight::from_parts(0, 13530)) - // Standard Error: 10_504 - .saturating_add(Weight::from_parts(5_256_582, 0).saturating_mul(r.into())) + // Standard Error: 18_790 + .saturating_add(Weight::from_parts(5_160_464, 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_352_000 picoseconds. - Weight::from_parts(4_567_000, 0) + // Minimum execution time: 4_209_000 picoseconds. + Weight::from_parts(4_476_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -370,13 +370,13 @@ impl pallet_democracy::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 99]`. fn unlock_remove(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `533` + // Measured: `600` // Estimated: `7260` - // Minimum execution time: 32_562_000 picoseconds. - Weight::from_parts(47_203_554, 0) + // Minimum execution time: 32_611_000 picoseconds. + Weight::from_parts(45_373_226, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 3_757 - .saturating_add(Weight::from_parts(114_711, 0).saturating_mul(r.into())) + // Standard Error: 7_590 + .saturating_add(Weight::from_parts(111_589, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -391,13 +391,13 @@ impl pallet_democracy::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 99]`. fn unlock_set(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `534 + r * (22 ±0)` + // Measured: `600 + r * (22 ±0)` // Estimated: `7260` - // Minimum execution time: 41_978_000 picoseconds. - Weight::from_parts(46_745_588, 0) + // Minimum execution time: 42_701_000 picoseconds. + Weight::from_parts(45_794_520, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 2_033 - .saturating_add(Weight::from_parts(140_091, 0).saturating_mul(r.into())) + // Standard Error: 5_600 + .saturating_add(Weight::from_parts(131_940, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -408,13 +408,13 @@ impl pallet_democracy::WeightInfo for WeightInfo { /// The range of component `r` is `[1, 100]`. fn remove_vote(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `661 + r * (26 ±0)` + // Measured: `653 + r * (26 ±0)` // Estimated: `7260` - // Minimum execution time: 19_870_000 picoseconds. - Weight::from_parts(24_534_988, 0) + // Minimum execution time: 19_793_000 picoseconds. + Weight::from_parts(23_469_751, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 2_091 - .saturating_add(Weight::from_parts(138_912, 0).saturating_mul(r.into())) + // Standard Error: 4_624 + .saturating_add(Weight::from_parts(136_168, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -425,13 +425,13 @@ impl pallet_democracy::WeightInfo for WeightInfo { /// The range of component `r` is `[1, 100]`. fn remove_other_vote(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `661 + r * (26 ±0)` + // Measured: `653 + r * (26 ±0)` // Estimated: `7260` - // Minimum execution time: 19_920_000 picoseconds. - Weight::from_parts(24_630_659, 0) + // Minimum execution time: 19_750_000 picoseconds. + Weight::from_parts(24_059_404, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 2_031 - .saturating_add(Weight::from_parts(147_124, 0).saturating_mul(r.into())) + // Standard Error: 6_757 + .saturating_add(Weight::from_parts(136_440, 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_218_000 picoseconds. - Weight::from_parts(24_076_000, 0) + // Minimum execution time: 22_602_000 picoseconds. + Weight::from_parts(23_600_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_034_000 picoseconds. - Weight::from_parts(18_991_000, 0) + // Minimum execution time: 17_817_000 picoseconds. + Weight::from_parts(18_871_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: 54_367_000 picoseconds. - Weight::from_parts(55_642_000, 0) + // Minimum execution time: 53_224_000 picoseconds. + Weight::from_parts(55_166_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: 48_393_000 picoseconds. - Weight::from_parts(49_243_000, 0) + // Minimum execution time: 46_022_000 picoseconds. + Weight::from_parts(46_713_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_898_000 picoseconds. - Weight::from_parts(19_576_000, 0) + // Minimum execution time: 18_459_000 picoseconds. + Weight::from_parts(19_351_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_794_000 picoseconds. - Weight::from_parts(22_731_000, 0) + // Minimum execution time: 21_474_000 picoseconds. + Weight::from_parts(22_371_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 cf25b8813..f07b7f3d7 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_election_provider_multi_phase // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -68,8 +68,8 @@ impl pallet_election_provider_multi_phase::WeightInfo f // Proof Size summary in bytes: // Measured: `913` // Estimated: `3481` - // Minimum execution time: 22_004_000 picoseconds. - Weight::from_parts(22_402_000, 0) + // Minimum execution time: 21_669_000 picoseconds. + Weight::from_parts(22_035_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_304_000 picoseconds. - Weight::from_parts(12_759_000, 0) + // Minimum execution time: 12_142_000 picoseconds. + Weight::from_parts(13_039_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_455_000 picoseconds. - Weight::from_parts(14_240_000, 0) + // Minimum execution time: 12_996_000 picoseconds. + Weight::from_parts(14_156_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_962_000 picoseconds. - Weight::from_parts(36_405_000, 0) + // Minimum execution time: 33_916_000 picoseconds. + Weight::from_parts(35_168_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: 24_347_000 picoseconds. - Weight::from_parts(25_195_000, 0) + // Minimum execution time: 23_434_000 picoseconds. + Weight::from_parts(23_950_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: 291_915_000 picoseconds. - Weight::from_parts(316_197_000, 0) + // Minimum execution time: 338_151_000 picoseconds. + Weight::from_parts(349_324_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 2_454 - .saturating_add(Weight::from_parts(257_800, 0).saturating_mul(v.into())) + // Standard Error: 3_678 + .saturating_add(Weight::from_parts(264_257, 0).saturating_mul(v.into())) .saturating_add(T::DbWeight::get().writes(3)) } /// Storage: `ElectionProviderMultiPhase::SignedSubmissionIndices` (r:1 w:1) @@ -168,15 +168,15 @@ impl pallet_election_provider_multi_phase::WeightInfo f /// The range of component `d` is `[200, 400]`. fn elect_queued(a: u32, d: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `303 + a * (768 ±0) + d * (48 ±0)` - // Estimated: `3855 + a * (768 ±0) + d * (49 ±0)` - // Minimum execution time: 504_977_000 picoseconds. - Weight::from_parts(64_584_711, 0) - .saturating_add(Weight::from_parts(0, 3855)) - // 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())) + // Measured: `295 + a * (768 ±0) + d * (48 ±0)` + // Estimated: `3861 + a * (768 ±0) + d * (49 ±0)` + // Minimum execution time: 500_133_000 picoseconds. + Weight::from_parts(78_539_278, 0) + .saturating_add(Weight::from_parts(0, 3861)) + // Standard Error: 14_851 + .saturating_add(Weight::from_parts(736_197, 0).saturating_mul(a.into())) + // Standard Error: 22_258 + .saturating_add(Weight::from_parts(195_691, 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: 67_156_000 picoseconds. - Weight::from_parts(69_250_000, 0) + // Minimum execution time: 66_685_000 picoseconds. + Weight::from_parts(69_619_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_460_520_000 picoseconds. - Weight::from_parts(6_520_107_000, 0) + // Minimum execution time: 6_569_157_000 picoseconds. + Weight::from_parts(6_596_124_000, 0) .saturating_add(Weight::from_parts(0, 1670)) - // 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())) + // Standard Error: 31_756 + .saturating_add(Weight::from_parts(349_803, 0).saturating_mul(v.into())) + // Standard Error: 94_151 + .saturating_add(Weight::from_parts(4_820_195, 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_829_104_000 picoseconds. - Weight::from_parts(5_956_614_000, 0) + // Minimum execution time: 5_558_340_000 picoseconds. + Weight::from_parts(5_677_209_000, 0) .saturating_add(Weight::from_parts(0, 1645)) - // 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())) + // Standard Error: 31_586 + .saturating_add(Weight::from_parts(310_735, 0).saturating_mul(v.into())) + // Standard Error: 93_646 + .saturating_add(Weight::from_parts(4_061_071, 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 5acb5c266..5727eed2c 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_elections_phragmen // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -63,13 +63,13 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn /// The range of component `v` is `[1, 16]`. fn vote_equal(v: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `470 + v * (80 ±0)` + // Measured: `536 + v * (80 ±0)` // Estimated: `4764 + v * (80 ±0)` - // Minimum execution time: 40_647_000 picoseconds. - Weight::from_parts(41_672_553, 0) + // Minimum execution time: 40_464_000 picoseconds. + Weight::from_parts(41_439_973, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 3_577 - .saturating_add(Weight::from_parts(220_296, 0).saturating_mul(v.into())) + // Standard Error: 14_160 + .saturating_add(Weight::from_parts(166_073, 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())) @@ -89,13 +89,13 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn /// The range of component `v` is `[2, 16]`. fn vote_more(v: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `438 + v * (80 ±0)` + // Measured: `504 + v * (80 ±0)` // Estimated: `4764 + v * (80 ±0)` - // Minimum execution time: 56_152_000 picoseconds. - Weight::from_parts(56_791_622, 0) + // Minimum execution time: 55_168_000 picoseconds. + Weight::from_parts(55_828_527, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 4_786 - .saturating_add(Weight::from_parts(256_189, 0).saturating_mul(v.into())) + // Standard Error: 20_780 + .saturating_add(Weight::from_parts(250_649, 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())) @@ -115,13 +115,13 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn /// The range of component `v` is `[2, 16]`. fn vote_less(v: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `470 + v * (80 ±0)` + // Measured: `536 + v * (80 ±0)` // Estimated: `4764 + v * (80 ±0)` - // Minimum execution time: 55_169_000 picoseconds. - Weight::from_parts(56_887_914, 0) + // Minimum execution time: 54_960_000 picoseconds. + Weight::from_parts(56_088_821, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 5_515 - .saturating_add(Weight::from_parts(266_071, 0).saturating_mul(v.into())) + // Standard Error: 29_779 + .saturating_add(Weight::from_parts(257_281, 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())) @@ -134,10 +134,10 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn /// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(193), added: 2668, mode: `MaxEncodedLen`) fn remove_voter() -> Weight { // Proof Size summary in bytes: - // Measured: `992` + // Measured: `1058` // Estimated: `4764` - // Minimum execution time: 58_949_000 picoseconds. - Weight::from_parts(60_800_000, 0) + // Minimum execution time: 58_203_000 picoseconds. + Weight::from_parts(59_322_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: 42_445_000 picoseconds. - Weight::from_parts(44_853_645, 0) + // Minimum execution time: 42_532_000 picoseconds. + Weight::from_parts(43_544_832, 0) .saturating_add(Weight::from_parts(0, 3088)) - // Standard Error: 2_447 - .saturating_add(Weight::from_parts(147_257, 0).saturating_mul(c.into())) + // Standard Error: 6_879 + .saturating_add(Weight::from_parts(142_376, 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: 37_693_000 picoseconds. - Weight::from_parts(38_570_764, 0) + // Minimum execution time: 37_506_000 picoseconds. + Weight::from_parts(38_546_991, 0) .saturating_add(Weight::from_parts(0, 1803)) - // Standard Error: 2_026 - .saturating_add(Weight::from_parts(124_772, 0).saturating_mul(c.into())) + // Standard Error: 10_231 + .saturating_add(Weight::from_parts(99_294, 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: 53_936_000 picoseconds. - Weight::from_parts(55_493_000, 0) + // Minimum execution time: 54_067_000 picoseconds. + Weight::from_parts(55_745_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: 38_159_000 picoseconds. - Weight::from_parts(39_168_000, 0) + // Minimum execution time: 38_134_000 picoseconds. + Weight::from_parts(38_705_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: 59_089_000 picoseconds. - Weight::from_parts(60_204_000, 0) + // Minimum execution time: 58_905_000 picoseconds. + Weight::from_parts(60_525_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -260,20 +260,20 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn /// The range of component `d` is `[0, 256]`. fn clean_defunct_voters(v: u32, d: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `0 + d * (819 ±0) + v * (56 ±0)` - // Estimated: `24939 + d * (3774 ±1) + v * (24 ±0)` - // Minimum execution time: 13_456_000 picoseconds. - Weight::from_parts(15_132_000, 0) - .saturating_add(Weight::from_parts(0, 24939)) - // 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)) + // Measured: `0 + d * (818 ±0) + v * (56 ±0)` + // Estimated: `45090 + d * (3774 ±0) + v * (12 ±1)` + // Minimum execution time: 13_782_000 picoseconds. + Weight::from_parts(13_941_000, 0) + .saturating_add(Weight::from_parts(0, 45090)) + // Standard Error: 29_876 + .saturating_add(Weight::from_parts(188_026, 0).saturating_mul(v.into())) + // Standard Error: 65_043 + .saturating_add(Weight::from_parts(70_587_849, 0).saturating_mul(d.into())) + .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(d.into()))) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(d.into()))) .saturating_add(Weight::from_parts(0, 3774).saturating_mul(d.into())) - .saturating_add(Weight::from_parts(0, 24).saturating_mul(v.into())) + .saturating_add(Weight::from_parts(0, 12).saturating_mul(v.into())) } /// Storage: `Elections::Candidates` (r:1 w:1) /// Proof: `Elections::Candidates` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) @@ -299,21 +299,21 @@ impl pallet_elections_phragmen::WeightInfo for WeightIn fn election_phragmen(c: u32, v: u32, e: u32, ) -> Weight { // 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_509_920_000 picoseconds. - Weight::from_parts(1_530_865_000, 0) + // Estimated: `178993 + c * (2109 ±13) + e * (12 ±0) + v * (2644 ±12)` + // Minimum execution time: 1_439_511_000 picoseconds. + Weight::from_parts(1_445_401_000, 0) .saturating_add(Weight::from_parts(0, 178993)) - // 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)) + // Standard Error: 1_295_106 + .saturating_add(Weight::from_parts(23_572_160, 0).saturating_mul(v.into())) + // Standard Error: 83_100 + .saturating_add(Weight::from_parts(888_578, 0).saturating_mul(e.into())) + .saturating_add(T::DbWeight::get().reads(24)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(v.into()))) .saturating_add(T::DbWeight::get().writes(6)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(c.into()))) - .saturating_add(Weight::from_parts(0, 2135).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(0, 2109).saturating_mul(c.into())) .saturating_add(Weight::from_parts(0, 12).saturating_mul(e.into())) - .saturating_add(Weight::from_parts(0, 2653).saturating_mul(v.into())) + .saturating_add(Weight::from_parts(0, 2644).saturating_mul(v.into())) } } \ No newline at end of file diff --git a/runtime/src/weights/pallet_grandpa.rs b/runtime/src/weights/pallet_grandpa.rs index bd1f9d6f6..245ff753c 100644 --- a/runtime/src/weights/pallet_grandpa.rs +++ b/runtime/src/weights/pallet_grandpa.rs @@ -16,9 +16,9 @@ //! 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: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_grandpa // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -49,13 +49,15 @@ use core::marker::PhantomData; 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 { + 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) + // Minimum execution time: 106_958_000 picoseconds. + Weight::from_parts(107_904_133, 0) .saturating_add(Weight::from_parts(0, 0)) + // Standard Error: 100_086 + .saturating_add(Weight::from_parts(16_366, 0).saturating_mul(x.into())) } /// Storage: `Grandpa::Stalled` (r:0 w:1) /// Proof: `Grandpa::Stalled` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`) @@ -63,8 +65,8 @@ impl pallet_grandpa::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_153_000 picoseconds. - Weight::from_parts(4_482_000, 0) + // Minimum execution time: 4_083_000 picoseconds. + Weight::from_parts(4_736_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/src/weights/pallet_identity.rs b/runtime/src/weights/pallet_identity.rs index 80778acff..ebbb659d1 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_identity // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -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_748_000 picoseconds. - Weight::from_parts(12_298_508, 0) + // Minimum execution time: 11_589_000 picoseconds. + Weight::from_parts(12_505_372, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_784 - .saturating_add(Weight::from_parts(130_138, 0).saturating_mul(r.into())) + // Standard Error: 4_662 + .saturating_add(Weight::from_parts(128_654, 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: 153_991_000 picoseconds. - Weight::from_parts(159_732_338, 0) + // Minimum execution time: 150_476_000 picoseconds. + Weight::from_parts(152_865_648, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 20_616 - .saturating_add(Weight::from_parts(255_840, 0).saturating_mul(r.into())) + // Standard Error: 58_551 + .saturating_add(Weight::from_parts(200_683, 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: 12_959_000 picoseconds. - Weight::from_parts(31_119_368, 0) + // Minimum execution time: 13_157_000 picoseconds. + Weight::from_parts(30_615_911, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 7_764 - .saturating_add(Weight::from_parts(4_866_578, 0).saturating_mul(s.into())) + // Standard Error: 18_414 + .saturating_add(Weight::from_parts(4_738_376, 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)) @@ -109,13 +109,13 @@ impl pallet_identity::WeightInfo for WeightInfo { /// The range of component `p` is `[0, 100]`. fn set_subs_old(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `194 + p * (32 ±0)` + // Measured: `193 + p * (32 ±0)` // Estimated: `11037` - // Minimum execution time: 12_933_000 picoseconds. - Weight::from_parts(30_261_531, 0) + // Minimum execution time: 13_058_000 picoseconds. + Weight::from_parts(29_451_432, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 5_267 - .saturating_add(Weight::from_parts(2_019_157, 0).saturating_mul(p.into())) + // Standard Error: 13_807 + .saturating_add(Weight::from_parts(1_941_946, 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: 76_085_000 picoseconds. - Weight::from_parts(73_229_569, 0) + // Minimum execution time: 73_448_000 picoseconds. + Weight::from_parts(68_989_477, 0) .saturating_add(Weight::from_parts(0, 11037)) - // 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())) + // Standard Error: 57_544 + .saturating_add(Weight::from_parts(417_282, 0).saturating_mul(r.into())) + // Standard Error: 11_000 + .saturating_add(Weight::from_parts(1_985_774, 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_382_000 picoseconds. - Weight::from_parts(108_829_005, 0) + // Minimum execution time: 104_109_000 picoseconds. + Weight::from_parts(106_509_251, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 10_984 - .saturating_add(Weight::from_parts(250_782, 0).saturating_mul(r.into())) + // Standard Error: 33_471 + .saturating_add(Weight::from_parts(185_138, 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_564_000 picoseconds. - Weight::from_parts(106_705_679, 0) + // Minimum execution time: 102_103_000 picoseconds. + Weight::from_parts(103_629_099, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 17_414 - .saturating_add(Weight::from_parts(294_289, 0).saturating_mul(r.into())) + // Standard Error: 36_928 + .saturating_add(Weight::from_parts(201_363, 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_345_000 picoseconds. - Weight::from_parts(8_804_007, 0) + // Minimum execution time: 8_291_000 picoseconds. + Weight::from_parts(8_615_877, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_643 - .saturating_add(Weight::from_parts(105_845, 0).saturating_mul(r.into())) + // Standard Error: 3_797 + .saturating_add(Weight::from_parts(102_077, 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_299_000 picoseconds. - Weight::from_parts(8_886_459, 0) + // Minimum execution time: 8_410_000 picoseconds. + Weight::from_parts(8_567_159, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_433 - .saturating_add(Weight::from_parts(107_806, 0).saturating_mul(r.into())) + // Standard Error: 3_386 + .saturating_add(Weight::from_parts(121_774, 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_378_000 picoseconds. - Weight::from_parts(8_724_606, 0) + // Minimum execution time: 8_358_000 picoseconds. + Weight::from_parts(8_606_479, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_530 - .saturating_add(Weight::from_parts(110_250, 0).saturating_mul(r.into())) + // Standard Error: 3_476 + .saturating_add(Weight::from_parts(105_948, 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: 133_211_000 picoseconds. - Weight::from_parts(137_054_318, 0) + // Minimum execution time: 131_235_000 picoseconds. + Weight::from_parts(132_782_284, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 12_125 - .saturating_add(Weight::from_parts(140_320, 0).saturating_mul(r.into())) + // Standard Error: 29_364 + .saturating_add(Weight::from_parts(291_649, 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_469_000 picoseconds. - Weight::from_parts(91_780_792, 0) + // Minimum execution time: 92_984_000 picoseconds. + Weight::from_parts(92_823_286, 0) .saturating_add(Weight::from_parts(0, 11037)) - // 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())) + // Standard Error: 68_965 + .saturating_add(Weight::from_parts(213_091, 0).saturating_mul(r.into())) + // Standard Error: 13_184 + .saturating_add(Weight::from_parts(1_991_762, 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()))) @@ -271,13 +271,13 @@ impl pallet_identity::WeightInfo for WeightInfo { /// The range of component `s` is `[0, 99]`. fn add_sub(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `475 + s * (36 ±0)` + // Measured: `466 + s * (36 ±0)` // Estimated: `11037` - // Minimum execution time: 37_479_000 picoseconds. - Weight::from_parts(41_825_607, 0) + // Minimum execution time: 35_864_000 picoseconds. + Weight::from_parts(41_213_786, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 1_488 - .saturating_add(Weight::from_parts(116_649, 0).saturating_mul(s.into())) + // Standard Error: 5_898 + .saturating_add(Weight::from_parts(118_488, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -288,13 +288,13 @@ impl pallet_identity::WeightInfo for WeightInfo { /// The range of component `s` is `[1, 100]`. fn rename_sub(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `591 + s * (3 ±0)` + // Measured: `576 + s * (3 ±0)` // Estimated: `11037` - // Minimum execution time: 17_235_000 picoseconds. - Weight::from_parts(19_333_812, 0) + // Minimum execution time: 16_881_000 picoseconds. + Weight::from_parts(18_592_555, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 618 - .saturating_add(Weight::from_parts(49_816, 0).saturating_mul(s.into())) + // Standard Error: 1_439 + .saturating_add(Weight::from_parts(52_851, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -307,13 +307,13 @@ impl pallet_identity::WeightInfo for WeightInfo { /// The range of component `s` is `[1, 100]`. fn remove_sub(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `638 + s * (35 ±0)` + // Measured: `624 + s * (35 ±0)` // Estimated: `11037` - // Minimum execution time: 40_474_000 picoseconds. - Weight::from_parts(43_534_618, 0) + // Minimum execution time: 40_045_000 picoseconds. + Weight::from_parts(42_759_184, 0) .saturating_add(Weight::from_parts(0, 11037)) - // Standard Error: 1_152 - .saturating_add(Weight::from_parts(102_570, 0).saturating_mul(s.into())) + // Standard Error: 6_731 + .saturating_add(Weight::from_parts(111_939, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -326,13 +326,13 @@ impl pallet_identity::WeightInfo for WeightInfo { /// The range of component `s` is `[0, 99]`. fn quit_sub(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `704 + s * (37 ±0)` + // Measured: `713 + s * (37 ±0)` // Estimated: `6723` - // Minimum execution time: 30_494_000 picoseconds. - Weight::from_parts(32_925_810, 0) + // Minimum execution time: 30_455_000 picoseconds. + Weight::from_parts(32_966_920, 0) .saturating_add(Weight::from_parts(0, 6723)) - // Standard Error: 1_016 - .saturating_add(Weight::from_parts(100_851, 0).saturating_mul(s.into())) + // Standard Error: 5_013 + .saturating_add(Weight::from_parts(98_498, 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: 9_609_000 picoseconds. - Weight::from_parts(10_135_000, 0) + // Minimum execution time: 9_799_000 picoseconds. + Weight::from_parts(10_440_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_273_000 picoseconds. - Weight::from_parts(13_591_000, 0) + // Minimum execution time: 12_893_000 picoseconds. + Weight::from_parts(13_699_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: 79_216_000 picoseconds. - Weight::from_parts(81_077_000, 0) + // Minimum execution time: 79_150_000 picoseconds. + Weight::from_parts(80_540_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: 28_663_000 picoseconds. - Weight::from_parts(29_467_000, 0) + // Minimum execution time: 28_067_000 picoseconds. + Weight::from_parts(29_202_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_432_000 picoseconds. - Weight::from_parts(19_454_000, 0) + // Minimum execution time: 18_422_000 picoseconds. + Weight::from_parts(19_766_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_288_000 picoseconds. - Weight::from_parts(23_189_000, 0) + // Minimum execution time: 22_029_000 picoseconds. + Weight::from_parts(22_897_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_109_000 picoseconds. - Weight::from_parts(16_593_000, 0) + // Minimum execution time: 15_901_000 picoseconds. + Weight::from_parts(16_586_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 71f740b1c..9159c8097 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_im_online // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -61,13 +61,13 @@ impl pallet_im_online::WeightInfo for WeightInfo { /// The range of component `k` is `[1, 1000]`. fn validate_unsigned_and_then_heartbeat(k: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `460 + k * (32 ±0)` + // Measured: `623 + k * (32 ±0)` // Estimated: `321487 + k * (1761 ±0)` - // Minimum execution time: 75_237_000 picoseconds. - Weight::from_parts(93_773_141, 0) + // Minimum execution time: 78_543_000 picoseconds. + Weight::from_parts(91_175_002, 0) .saturating_add(Weight::from_parts(0, 321487)) - // Standard Error: 625 - .saturating_add(Weight::from_parts(38_197, 0).saturating_mul(k.into())) + // Standard Error: 1_296 + .saturating_add(Weight::from_parts(41_418, 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 d8d5b1797..8db36669b 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_indices // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -54,8 +54,8 @@ impl pallet_indices::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3534` - // Minimum execution time: 29_828_000 picoseconds. - Weight::from_parts(30_689_000, 0) + // Minimum execution time: 28_957_000 picoseconds. + Weight::from_parts(30_053_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: 44_989_000 picoseconds. - Weight::from_parts(46_095_000, 0) + // Minimum execution time: 42_904_000 picoseconds. + Weight::from_parts(44_086_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_706_000 picoseconds. - Weight::from_parts(31_993_000, 0) + // Minimum execution time: 29_982_000 picoseconds. + Weight::from_parts(30_929_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: 33_308_000 picoseconds. - Weight::from_parts(34_209_000, 0) + // Minimum execution time: 32_199_000 picoseconds. + Weight::from_parts(33_097_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: 32_936_000 picoseconds. - Weight::from_parts(33_906_000, 0) + // Minimum execution time: 31_439_000 picoseconds. + Weight::from_parts(32_556_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 88f2ac033..a7f9d8992 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_membership // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -59,13 +59,13 @@ impl pallet_membership::WeightInfo for WeightInfo { /// The range of component `m` is `[1, 99]`. fn add_member(m: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `140 + m * (64 ±0)` + // Measured: `139 + m * (64 ±0)` // Estimated: `4687 + m * (64 ±0)` - // Minimum execution time: 15_929_000 picoseconds. - Weight::from_parts(16_900_192, 0) + // Minimum execution time: 15_387_000 picoseconds. + Weight::from_parts(16_754_859, 0) .saturating_add(Weight::from_parts(0, 4687)) - // Standard Error: 561 - .saturating_add(Weight::from_parts(36_783, 0).saturating_mul(m.into())) + // Standard Error: 1_300 + .saturating_add(Weight::from_parts(37_026, 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_191_000 picoseconds. - Weight::from_parts(20_090_794, 0) + // Minimum execution time: 19_171_000 picoseconds. + Weight::from_parts(20_135_030, 0) .saturating_add(Weight::from_parts(0, 4687)) - // Standard Error: 560 - .saturating_add(Weight::from_parts(33_946, 0).saturating_mul(m.into())) + // Standard Error: 2_210 + .saturating_add(Weight::from_parts(33_486, 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_481_000 picoseconds. - Weight::from_parts(20_385_510, 0) + // Minimum execution time: 19_029_000 picoseconds. + Weight::from_parts(19_953_660, 0) .saturating_add(Weight::from_parts(0, 4687)) - // Standard Error: 664 - .saturating_add(Weight::from_parts(45_773, 0).saturating_mul(m.into())) + // Standard Error: 1_328 + .saturating_add(Weight::from_parts(52_805, 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())) @@ -131,13 +131,13 @@ impl pallet_membership::WeightInfo for WeightInfo { /// The range of component `m` is `[1, 100]`. fn reset_member(m: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `244 + m * (64 ±0)` + // Measured: `243 + m * (64 ±0)` // Estimated: `4687 + m * (64 ±0)` - // Minimum execution time: 18_759_000 picoseconds. - Weight::from_parts(20_934_776, 0) + // Minimum execution time: 18_990_000 picoseconds. + Weight::from_parts(20_488_348, 0) .saturating_add(Weight::from_parts(0, 4687)) - // Standard Error: 1_100 - .saturating_add(Weight::from_parts(152_913, 0).saturating_mul(m.into())) + // Standard Error: 2_393 + .saturating_add(Weight::from_parts(143_442, 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())) @@ -155,13 +155,13 @@ impl pallet_membership::WeightInfo for WeightInfo { /// The range of component `m` is `[1, 100]`. fn change_key(m: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `244 + m * (64 ±0)` + // Measured: `243 + m * (64 ±0)` // Estimated: `4687 + m * (64 ±0)` - // Minimum execution time: 20_347_000 picoseconds. - Weight::from_parts(21_384_653, 0) + // Minimum execution time: 19_799_000 picoseconds. + Weight::from_parts(20_898_983, 0) .saturating_add(Weight::from_parts(0, 4687)) - // Standard Error: 744 - .saturating_add(Weight::from_parts(48_146, 0).saturating_mul(m.into())) + // Standard Error: 2_321 + .saturating_add(Weight::from_parts(53_350, 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())) @@ -175,13 +175,13 @@ impl pallet_membership::WeightInfo for WeightInfo { /// The range of component `m` is `[1, 100]`. fn set_prime(m: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `32 + m * (32 ±0)` + // Measured: `31 + m * (32 ±0)` // Estimated: `4687 + m * (32 ±0)` - // Minimum execution time: 8_134_000 picoseconds. - Weight::from_parts(8_608_768, 0) + // Minimum execution time: 7_631_000 picoseconds. + Weight::from_parts(8_453_643, 0) .saturating_add(Weight::from_parts(0, 4687)) - // Standard Error: 285 - .saturating_add(Weight::from_parts(17_653, 0).saturating_mul(m.into())) + // Standard Error: 670 + .saturating_add(Weight::from_parts(17_005, 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,13 +191,15 @@ 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_727_000 picoseconds. - Weight::from_parts(4_170_697, 0) + // Minimum execution time: 3_513_000 picoseconds. + Weight::from_parts(3_938_328, 0) .saturating_add(Weight::from_parts(0, 0)) + // Standard Error: 323 + .saturating_add(Weight::from_parts(47, 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 57507639a..ad08760f2 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_multisig // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -53,11 +53,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 17_598_000 picoseconds. - Weight::from_parts(18_251_472, 0) + // Minimum execution time: 16_975_000 picoseconds. + Weight::from_parts(17_372_186, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 2 - .saturating_add(Weight::from_parts(517, 0).saturating_mul(z.into())) + // Standard Error: 5 + .saturating_add(Weight::from_parts(532, 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`) @@ -65,15 +65,15 @@ impl pallet_multisig::WeightInfo for WeightInfo { /// The range of component `z` is `[0, 10000]`. fn as_multi_create(s: u32, z: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `296 + s * (2 ±0)` + // Measured: `284 + s * (2 ±0)` // Estimated: `6811` - // Minimum execution time: 52_821_000 picoseconds. - Weight::from_parts(41_340_281, 0) + // Minimum execution time: 51_427_000 picoseconds. + Weight::from_parts(39_925_463, 0) .saturating_add(Weight::from_parts(0, 6811)) - // 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())) + // Standard Error: 2_680 + .saturating_add(Weight::from_parts(125_937, 0).saturating_mul(s.into())) + // Standard Error: 26 + .saturating_add(Weight::from_parts(1_507, 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: 33_055_000 picoseconds. - Weight::from_parts(22_914_756, 0) + // Minimum execution time: 33_343_000 picoseconds. + Weight::from_parts(22_976_941, 0) .saturating_add(Weight::from_parts(0, 6811)) - // 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())) + // Standard Error: 3_265 + .saturating_add(Weight::from_parts(115_614, 0).saturating_mul(s.into())) + // Standard Error: 31 + .saturating_add(Weight::from_parts(1_446, 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_455_000 picoseconds. - Weight::from_parts(46_235_027, 0) + // Minimum execution time: 57_111_000 picoseconds. + Weight::from_parts(44_531_478, 0) .saturating_add(Weight::from_parts(0, 6811)) - // 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())) + // Standard Error: 2_671 + .saturating_add(Weight::from_parts(155_407, 0).saturating_mul(s.into())) + // Standard Error: 26 + .saturating_add(Weight::from_parts(1_529, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -120,13 +120,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { /// The range of component `s` is `[2, 100]`. fn approve_as_multi_create(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `296 + s * (2 ±0)` + // Measured: `289 + s * (2 ±0)` // Estimated: `6811` - // Minimum execution time: 37_936_000 picoseconds. - Weight::from_parts(39_779_528, 0) + // Minimum execution time: 36_884_000 picoseconds. + Weight::from_parts(38_734_660, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 1_050 - .saturating_add(Weight::from_parts(133_533, 0).saturating_mul(s.into())) + // Standard Error: 4_072 + .saturating_add(Weight::from_parts(131_204, 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_574_000 picoseconds. - Weight::from_parts(22_128_442, 0) + // Minimum execution time: 20_292_000 picoseconds. + Weight::from_parts(21_392_899, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 1_262 - .saturating_add(Weight::from_parts(118_280, 0).saturating_mul(s.into())) + // Standard Error: 3_000 + .saturating_add(Weight::from_parts(117_399, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -150,13 +150,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { /// The range of component `s` is `[2, 100]`. fn cancel_as_multi(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `487 + s * (1 ±0)` + // Measured: `485 + s * (1 ±0)` // Estimated: `6811` - // Minimum execution time: 39_123_000 picoseconds. - Weight::from_parts(41_869_928, 0) + // Minimum execution time: 38_297_000 picoseconds. + Weight::from_parts(40_513_578, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 3_142 - .saturating_add(Weight::from_parts(122_767, 0).saturating_mul(s.into())) + // Standard Error: 4_001 + .saturating_add(Weight::from_parts(118_593, 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 index f2d2c15a4..a4f36d998 100644 --- a/runtime/src/weights/pallet_offences.rs +++ b/runtime/src/weights/pallet_offences.rs @@ -16,9 +16,9 @@ //! 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: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_offences // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -89,13 +89,13 @@ impl pallet_offences::WeightInfo for WeightInfo { /// 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())) + // Measured: `2065 + n * (59 ±0)` + // Estimated: `8177 + n * (2551 ±0)` + // Minimum execution time: 122_155_000 picoseconds. + Weight::from_parts(128_885_663, 0) + .saturating_add(Weight::from_parts(0, 8177)) + // Standard Error: 99_479 + .saturating_add(Weight::from_parts(15_710_643, 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)) @@ -143,13 +143,13 @@ impl pallet_offences::WeightInfo for WeightInfo { /// 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())) + // Measured: `2065 + n * (59 ±0)` + // Estimated: `8177 + n * (2551 ±0)` + // Minimum execution time: 120_681_000 picoseconds. + Weight::from_parts(129_746_414, 0) + .saturating_add(Weight::from_parts(0, 8177)) + // Standard Error: 104_549 + .saturating_add(Weight::from_parts(15_445_300, 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)) diff --git a/runtime/src/weights/pallet_oracle.rs b/runtime/src/weights/pallet_oracle.rs index 24cd1c8db..6d221448b 100644 --- a/runtime/src/weights/pallet_oracle.rs +++ b/runtime/src/weights/pallet_oracle.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_oracle` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-08-15, STEPS: `5`, REPEAT: `2`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `Jesses-MacBook-Pro.local`, CPU: `` +//! HOSTNAME: `ip-172-31-28-93`, 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_oracle // --extrinsic=* -// --steps=5 -// --repeat=2 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt +// --template +// .maintain/frame-weight-template.hbs // --output=./runtime/src/weights/ #![cfg_attr(rustfmt, rustfmt_skip)] @@ -51,9 +54,9 @@ impl pallet_oracle::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_000_000 picoseconds. - Weight::from_parts(2_000_000, 0) + // Minimum execution time: 3_347_000 picoseconds. + Weight::from_parts(3_513_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_parameters.rs b/runtime/src/weights/pallet_parameters.rs index 24ae04b49..cd5857512 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-08-30, STEPS: `5`, REPEAT: `2`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `turnip`, CPU: `Intel(R) Core(TM) i7-4710MQ CPU @ 2.50GHz` +//! HOSTNAME: `ip-172-31-28-93`, 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_parameters -// --extrinsic=change_accepted_mrtd_values -// --steps=5 -// --repeat=2 +// --extrinsic=* +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt +// --template +// .maintain/frame-weight-template.hbs // --output=./runtime/src/weights/ #![cfg_attr(rustfmt, rustfmt_skip)] @@ -45,51 +48,51 @@ use core::marker::PhantomData; /// Weight functions for `pallet_parameters`. pub struct WeightInfo(PhantomData); impl pallet_parameters::WeightInfo for WeightInfo { - /// Storage: `Parameters::RequestLimit` (r:0 w:1) - /// Proof: `Parameters::RequestLimit` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) - fn change_request_limit() -> Weight { - // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `0` - // Minimum execution time: 5_000_000 picoseconds. - Weight::from_parts(6_000_000, 0) - .saturating_add(Weight::from_parts(0, 0)) - .saturating_add(T::DbWeight::get().writes(1)) - } - - /// Storage: `Parameters::MaxInstructionsPerPrograms` (r:0 w:1) - /// Proof: `Parameters::MaxInstructionsPerPrograms` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) - fn max_instructions_per_programs() -> Weight { - // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `0` - // Minimum execution time: 3_000_000 picoseconds. - Weight::from_parts(4_000_000, 0) - .saturating_add(Weight::from_parts(0, 0)) - .saturating_add(T::DbWeight::get().writes(1)) - } - - /// Storage: `Parameters::SignersInfo` (r:0 w:1) - /// Proof: `Parameters::SignersInfo` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) - fn change_signers_info() -> Weight { - // Proof Size summary in bytes: - // Measured: `0` - // Estimated: `0` - // Minimum execution time: 4_000_000 picoseconds. - Weight::from_parts(4_000_000, 0) - .saturating_add(Weight::from_parts(0, 0)) - .saturating_add(T::DbWeight::get().writes(1)) - } - + /// Storage: `Parameters::RequestLimit` (r:0 w:1) + /// Proof: `Parameters::RequestLimit` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + fn change_request_limit() -> Weight { + // Proof Size summary in bytes: + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 6_962_000 picoseconds. + Weight::from_parts(7_642_000, 0) + .saturating_add(Weight::from_parts(0, 0)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Parameters::MaxInstructionsPerPrograms` (r:0 w:1) + /// Proof: `Parameters::MaxInstructionsPerPrograms` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + fn max_instructions_per_programs() -> Weight { + // Proof Size summary in bytes: + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 6_820_000 picoseconds. + Weight::from_parts(6_890_000, 0) + .saturating_add(Weight::from_parts(0, 0)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Parameters::SignersInfo` (r:1 w:1) + /// Proof: `Parameters::SignersInfo` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `Session::CurrentIndex` (r:1 w:0) + /// Proof: `Session::CurrentIndex` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + fn change_signers_info() -> Weight { + // Proof Size summary in bytes: + // Measured: `243` + // Estimated: `1728` + // Minimum execution time: 13_050_000 picoseconds. + Weight::from_parts(13_867_000, 0) + .saturating_add(Weight::from_parts(0, 1728)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } /// Storage: `Parameters::AcceptedMrtdValues` (r:0 w:1) /// Proof: `Parameters::AcceptedMrtdValues` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn change_accepted_mrtd_values() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 14_134_000 picoseconds. - Weight::from_parts(22_719_000, 0) + // Minimum execution time: 8_691_000 picoseconds. + Weight::from_parts(9_041_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_preimage.rs b/runtime/src/weights/pallet_preimage.rs index a06df620d..6eecc10b7 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_preimage // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -61,11 +61,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `109` // Estimated: `3556` - // Minimum execution time: 67_355_000 picoseconds. - Weight::from_parts(68_388_000, 0) + // Minimum execution time: 65_066_000 picoseconds. + Weight::from_parts(65_383_000, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 1 - .saturating_add(Weight::from_parts(1_785, 0).saturating_mul(s.into())) + // Standard Error: 2 + .saturating_add(Weight::from_parts(1_753, 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: 21_591_000 picoseconds. - Weight::from_parts(21_949_000, 0) + // Minimum execution time: 20_636_000 picoseconds. + Weight::from_parts(20_656_000, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 1 - .saturating_add(Weight::from_parts(1_784, 0).saturating_mul(s.into())) + // Standard Error: 2 + .saturating_add(Weight::from_parts(1_725, 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_842_000 picoseconds. - Weight::from_parts(21_031_000, 0) + // Minimum execution time: 19_958_000 picoseconds. + Weight::from_parts(20_184_000, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 1 - .saturating_add(Weight::from_parts(1_798, 0).saturating_mul(s.into())) + // Standard Error: 2 + .saturating_add(Weight::from_parts(1_733, 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: 90_133_000 picoseconds. - Weight::from_parts(95_993_000, 0) + // Minimum execution time: 73_958_000 picoseconds. + Weight::from_parts(79_084_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: 45_168_000 picoseconds. - Weight::from_parts(49_133_000, 0) + // Minimum execution time: 35_271_000 picoseconds. + Weight::from_parts(38_265_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: 40_213_000 picoseconds. - Weight::from_parts(42_414_000, 0) + // Minimum execution time: 29_523_000 picoseconds. + Weight::from_parts(30_984_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: 28_518_000 picoseconds. - Weight::from_parts(31_227_000, 0) + // Minimum execution time: 19_900_000 picoseconds. + Weight::from_parts(21_427_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: 28_602_000 picoseconds. - Weight::from_parts(31_140_000, 0) + // Minimum execution time: 20_161_000 picoseconds. + Weight::from_parts(21_514_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: 15_336_000 picoseconds. - Weight::from_parts(16_585_000, 0) + // Minimum execution time: 13_866_000 picoseconds. + Weight::from_parts(14_498_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: 42_717_000 picoseconds. - Weight::from_parts(48_165_000, 0) + // Minimum execution time: 32_860_000 picoseconds. + Weight::from_parts(36_064_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_757_000 picoseconds. - Weight::from_parts(16_353_000, 0) + // Minimum execution time: 13_649_000 picoseconds. + Weight::from_parts(13_984_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -235,30 +235,30 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `173` // Estimated: `3556` - // Minimum execution time: 15_762_000 picoseconds. - Weight::from_parts(16_734_000, 0) + // Minimum execution time: 13_483_000 picoseconds. + Weight::from_parts(14_157_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } - /// Storage: `Preimage::StatusFor` (r:1023 w:1023) + /// Storage: `Preimage::StatusFor` (r:1024 w:1024) /// Proof: `Preimage::StatusFor` (`max_values`: None, `max_size`: Some(91), added: 2566, mode: `MaxEncodedLen`) - /// Storage: `System::Account` (r:1023 w:1023) + /// Storage: `System::Account` (r:1024 w:1024) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) - /// Storage: `Balances::Holds` (r:1023 w:1023) + /// Storage: `Balances::Holds` (r:1024 w:1024) /// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `MaxEncodedLen`) - /// Storage: `Preimage::RequestStatusFor` (r:0 w:1023) + /// Storage: `Preimage::RequestStatusFor` (r:0 w:1024) /// Proof: `Preimage::RequestStatusFor` (`max_values`: None, `max_size`: Some(91), added: 2566, mode: `MaxEncodedLen`) /// The range of component `n` is `[1, 1024]`. fn ensure_updated(n: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0 + n * (227 ±0)` // Estimated: `990 + n * (2603 ±0)` - // Minimum execution time: 75_551_000 picoseconds. - Weight::from_parts(76_387_000, 0) + // Minimum execution time: 73_490_000 picoseconds. + Weight::from_parts(73_977_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 63_847 - .saturating_add(Weight::from_parts(72_993_618, 0).saturating_mul(n.into())) + // Standard Error: 106_495 + .saturating_add(Weight::from_parts(69_766_762, 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 f76bf6960..dc006272f 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_programs // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -56,8 +56,8 @@ impl pallet_programs::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `214` // Estimated: `3679` - // Minimum execution time: 39_788_000 picoseconds. - Weight::from_parts(40_682_000, 0) + // Minimum execution time: 39_231_000 picoseconds. + Weight::from_parts(39_935_000, 0) .saturating_add(Weight::from_parts(0, 3679)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -69,13 +69,13 @@ impl pallet_programs::WeightInfo for WeightInfo { /// The range of component `p` is `[0, 250]`. fn remove_program(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `353 + p * (32 ±0)` - // Estimated: `3820 + p * (32 ±0)` - // Minimum execution time: 38_858_000 picoseconds. - Weight::from_parts(40_767_104, 0) - .saturating_add(Weight::from_parts(0, 3820)) - // Standard Error: 524 - .saturating_add(Weight::from_parts(141_471, 0).saturating_mul(p.into())) + // Measured: `354 + p * (32 ±0)` + // Estimated: `3823 + p * (32 ±0)` + // Minimum execution time: 38_105_000 picoseconds. + Weight::from_parts(40_094_638, 0) + .saturating_add(Weight::from_parts(0, 3823)) + // Standard Error: 1_384 + .saturating_add(Weight::from_parts(149_685, 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_propagation.rs b/runtime/src/weights/pallet_propagation.rs index 784e2df21..7d38b529a 100644 --- a/runtime/src/weights/pallet_propagation.rs +++ b/runtime/src/weights/pallet_propagation.rs @@ -16,9 +16,9 @@ //! Autogenerated weights for `pallet_propagation` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 33.0.0 -//! DATE: 2024-08-16, STEPS: `5`, REPEAT: `2`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `Jesses-MacBook-Pro.local`, CPU: `` +//! HOSTNAME: `ip-172-31-28-93`, 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_propagation // --extrinsic=* -// --steps=5 -// --repeat=2 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt +// --template +// .maintain/frame-weight-template.hbs // --output=./runtime/src/weights/ #![cfg_attr(rustfmt, rustfmt_skip)] @@ -47,16 +50,14 @@ pub struct WeightInfo(PhantomData); impl pallet_propagation::WeightInfo for WeightInfo { /// Storage: `StakingExtension::ProactiveRefresh` (r:1 w:1) /// Proof: `StakingExtension::ProactiveRefresh` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) - /// Storage: `Registry::Dkg` (r:0 w:1) - /// Proof: `Registry::Dkg` (`max_values`: None, `max_size`: None, mode: `Measured`) fn on_initialize() -> Weight { // Proof Size summary in bytes: // Measured: `148` // Estimated: `1633` - // Minimum execution time: 4_000_000 picoseconds. - Weight::from_parts(5_000_000, 0) + // Minimum execution time: 4_156_000 picoseconds. + Weight::from_parts(4_484_000, 0) .saturating_add(Weight::from_parts(0, 1633)) .saturating_add(T::DbWeight::get().reads(1)) - .saturating_add(T::DbWeight::get().writes(2)) + .saturating_add(T::DbWeight::get().writes(1)) } -} +} \ No newline at end of file diff --git a/runtime/src/weights/pallet_proxy.rs b/runtime/src/weights/pallet_proxy.rs index 7fe717784..19c1d964f 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_proxy // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -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_804_000 picoseconds. - Weight::from_parts(18_812_945, 0) + // Minimum execution time: 17_597_000 picoseconds. + Weight::from_parts(18_272_719, 0) .saturating_add(Weight::from_parts(0, 4706)) - // Standard Error: 1_519 - .saturating_add(Weight::from_parts(45_223, 0).saturating_mul(p.into())) + // Standard Error: 4_530 + .saturating_add(Weight::from_parts(60_786, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `Proxy::Proxies` (r:1 w:0) @@ -72,15 +72,15 @@ impl pallet_proxy::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 31]`. fn proxy_announced(a: u32, p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `488 + a * (68 ±0) + p * (37 ±0)` + // Measured: `496 + a * (68 ±0) + p * (36 ±0)` // Estimated: `5698` - // Minimum execution time: 46_879_000 picoseconds. - Weight::from_parts(46_657_229, 0) + // Minimum execution time: 44_830_000 picoseconds. + Weight::from_parts(45_727_730, 0) .saturating_add(Weight::from_parts(0, 5698)) - // 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())) + // Standard Error: 7_600 + .saturating_add(Weight::from_parts(183_342, 0).saturating_mul(a.into())) + // Standard Error: 7_879 + .saturating_add(Weight::from_parts(46_195, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -92,15 +92,15 @@ impl pallet_proxy::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 31]`. fn remove_announcement(a: u32, p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `403 + a * (68 ±0)` + // Measured: `411 + a * (68 ±0)` // Estimated: `5698` - // Minimum execution time: 29_941_000 picoseconds. - Weight::from_parts(30_846_128, 0) + // Minimum execution time: 29_561_000 picoseconds. + Weight::from_parts(30_494_766, 0) .saturating_add(Weight::from_parts(0, 5698)) - // 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())) + // Standard Error: 4_315 + .saturating_add(Weight::from_parts(193_773, 0).saturating_mul(a.into())) + // Standard Error: 4_473 + .saturating_add(Weight::from_parts(4_150, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -112,15 +112,15 @@ impl pallet_proxy::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 31]`. fn reject_announcement(a: u32, p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `403 + a * (68 ±0)` + // Measured: `411 + a * (68 ±0)` // Estimated: `5698` - // Minimum execution time: 29_906_000 picoseconds. - Weight::from_parts(30_411_800, 0) + // Minimum execution time: 29_684_000 picoseconds. + Weight::from_parts(30_180_732, 0) .saturating_add(Weight::from_parts(0, 5698)) - // 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())) + // Standard Error: 7_569 + .saturating_add(Weight::from_parts(204_738, 0).saturating_mul(a.into())) + // Standard Error: 7_847 + .saturating_add(Weight::from_parts(7_758, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -134,15 +134,15 @@ impl pallet_proxy::WeightInfo for WeightInfo { /// The range of component `p` is `[1, 31]`. fn announce(a: u32, p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `420 + a * (68 ±0) + p * (37 ±0)` + // Measured: `428 + a * (68 ±0) + p * (36 ±0)` // Estimated: `5698` - // Minimum execution time: 41_444_000 picoseconds. - Weight::from_parts(41_018_177, 0) + // Minimum execution time: 40_379_000 picoseconds. + Weight::from_parts(40_613_527, 0) .saturating_add(Weight::from_parts(0, 5698)) - // 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())) + // Standard Error: 6_395 + .saturating_add(Weight::from_parts(187_655, 0).saturating_mul(a.into())) + // Standard Error: 6_630 + .saturating_add(Weight::from_parts(38_138, 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: 29_509_000 picoseconds. - Weight::from_parts(30_584_510, 0) + // Minimum execution time: 27_970_000 picoseconds. + Weight::from_parts(29_594_671, 0) .saturating_add(Weight::from_parts(0, 4706)) - // Standard Error: 2_121 - .saturating_add(Weight::from_parts(70_491, 0).saturating_mul(p.into())) + // Standard Error: 4_941 + .saturating_add(Weight::from_parts(69_826, 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: 29_492_000 picoseconds. - Weight::from_parts(30_918_123, 0) + // Minimum execution time: 29_219_000 picoseconds. + Weight::from_parts(30_372_540, 0) .saturating_add(Weight::from_parts(0, 4706)) - // Standard Error: 2_801 - .saturating_add(Weight::from_parts(53_812, 0).saturating_mul(p.into())) + // Standard Error: 6_767 + .saturating_add(Weight::from_parts(49_662, 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: 28_378_000 picoseconds. - Weight::from_parts(29_644_396, 0) + // Minimum execution time: 27_731_000 picoseconds. + Weight::from_parts(28_845_092, 0) .saturating_add(Weight::from_parts(0, 4706)) - // Standard Error: 1_745 - .saturating_add(Weight::from_parts(45_667, 0).saturating_mul(p.into())) + // Standard Error: 5_020 + .saturating_add(Weight::from_parts(45_853, 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_557_000 picoseconds. - Weight::from_parts(33_043_411, 0) + // Minimum execution time: 30_315_000 picoseconds. + Weight::from_parts(31_652_199, 0) .saturating_add(Weight::from_parts(0, 4706)) - // Standard Error: 1_686 - .saturating_add(Weight::from_parts(5_127, 0).saturating_mul(p.into())) + // Standard Error: 4_357 + .saturating_add(Weight::from_parts(28_668, 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_338_000 picoseconds. - Weight::from_parts(30_560_802, 0) + // Minimum execution time: 28_298_000 picoseconds. + Weight::from_parts(29_705_935, 0) .saturating_add(Weight::from_parts(0, 4706)) - // Standard Error: 2_024 - .saturating_add(Weight::from_parts(49_103, 0).saturating_mul(p.into())) + // Standard Error: 4_815 + .saturating_add(Weight::from_parts(60_009, 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 1e14935bc..b95b343be 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_recovery // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -54,8 +54,8 @@ impl pallet_recovery::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `182` // Estimated: `3545` - // Minimum execution time: 12_916_000 picoseconds. - Weight::from_parts(13_388_000, 0) + // Minimum execution time: 12_381_000 picoseconds. + Weight::from_parts(13_115_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_314_000 picoseconds. - Weight::from_parts(10_759_000, 0) + // Minimum execution time: 10_123_000 picoseconds. + Weight::from_parts(10_839_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: 31_534_000 picoseconds. - Weight::from_parts(32_909_826, 0) + // Minimum execution time: 30_811_000 picoseconds. + Weight::from_parts(32_212_844, 0) .saturating_add(Weight::from_parts(0, 3816)) - // Standard Error: 6_365 - .saturating_add(Weight::from_parts(59_739, 0).saturating_mul(n.into())) + // Standard Error: 17_973 + .saturating_add(Weight::from_parts(44_937, 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_280_000 picoseconds. - Weight::from_parts(36_473_000, 0) + // Minimum execution time: 34_805_000 picoseconds. + Weight::from_parts(35_915_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: 23_016_000 picoseconds. - Weight::from_parts(24_224_638, 0) + // Minimum execution time: 22_178_000 picoseconds. + Weight::from_parts(23_294_358, 0) .saturating_add(Weight::from_parts(0, 3854)) - // Standard Error: 6_317 - .saturating_add(Weight::from_parts(135_995, 0).saturating_mul(n.into())) + // Standard Error: 14_163 + .saturating_add(Weight::from_parts(165_922, 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: 29_238_000 picoseconds. - Weight::from_parts(30_677_156, 0) + // Minimum execution time: 28_286_000 picoseconds. + Weight::from_parts(29_690_375, 0) .saturating_add(Weight::from_parts(0, 3854)) - // Standard Error: 7_519 - .saturating_add(Weight::from_parts(115_930, 0).saturating_mul(n.into())) + // Standard Error: 17_797 + .saturating_add(Weight::from_parts(162_491, 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: 41_740_000 picoseconds. - Weight::from_parts(43_517_345, 0) + // Minimum execution time: 40_423_000 picoseconds. + Weight::from_parts(41_957_880, 0) .saturating_add(Weight::from_parts(0, 3854)) - // Standard Error: 7_729 - .saturating_add(Weight::from_parts(144_572, 0).saturating_mul(n.into())) + // Standard Error: 18_844 + .saturating_add(Weight::from_parts(168_023, 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: 38_140_000 picoseconds. - Weight::from_parts(40_139_066, 0) + // Minimum execution time: 36_471_000 picoseconds. + Weight::from_parts(37_859_174, 0) .saturating_add(Weight::from_parts(0, 3854)) - // Standard Error: 8_401 - .saturating_add(Weight::from_parts(79_839, 0).saturating_mul(n.into())) + // Standard Error: 19_467 + .saturating_add(Weight::from_parts(250_523, 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: 15_107_000 picoseconds. - Weight::from_parts(15_542_000, 0) + // Minimum execution time: 14_889_000 picoseconds. + Weight::from_parts(15_395_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 8628da44d..3f8bc7f8b 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-09-18, STEPS: `5`, REPEAT: `2`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `turnip`, CPU: `Intel(R) Core(TM) i7-4710MQ CPU @ 2.50GHz` +//! HOSTNAME: `ip-172-31-28-93`, 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=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt +// --template +// .maintain/frame-weight-template.hbs // --output=./runtime/src/weights/ #![cfg_attr(rustfmt, rustfmt_skip)] @@ -61,11 +64,11 @@ impl pallet_registry::WeightInfo for WeightInfo { /// Proof: `Registry::JumpstartDkg` (`max_values`: None, `max_size`: None, mode: `Measured`) fn jump_start_network() -> Weight { // Proof Size summary in bytes: - // Measured: `1069` - // Estimated: `9484` - // Minimum execution time: 74_099_000 picoseconds. - Weight::from_parts(95_220_000, 0) - .saturating_add(Weight::from_parts(0, 9484)) + // Measured: `1236` + // Estimated: `9651` + // Minimum execution time: 45_771_000 picoseconds. + Weight::from_parts(47_233_000, 0) + .saturating_add(Weight::from_parts(0, 9651)) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -80,15 +83,13 @@ impl pallet_registry::WeightInfo for WeightInfo { /// Storage: `StakingExtension::Signers` (r:0 w:1) /// Proof: `StakingExtension::Signers` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// The range of component `c` is `[0, 15]`. - fn confirm_jump_start_done(c: u32, ) -> Weight { + fn confirm_jump_start_done(_c: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `1937` // Estimated: `7877` - // Minimum execution time: 64_195_000 picoseconds. - Weight::from_parts(87_555_019, 0) + // Minimum execution time: 45_208_000 picoseconds. + Weight::from_parts(48_370_077, 0) .saturating_add(Weight::from_parts(0, 7877)) - // Standard Error: 1_609_292 - .saturating_add(Weight::from_parts(498_108, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -101,15 +102,13 @@ impl pallet_registry::WeightInfo for WeightInfo { /// Storage: `Parameters::SignersInfo` (r:1 w:0) /// Proof: `Parameters::SignersInfo` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// The range of component `c` is `[0, 15]`. - fn confirm_jump_start_confirm(c: u32, ) -> Weight { + fn confirm_jump_start_confirm(_c: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1639` - // Estimated: `7579` - // Minimum execution time: 61_266_000 picoseconds. - Weight::from_parts(81_265_779, 0) - .saturating_add(Weight::from_parts(0, 7579)) - // Standard Error: 1_522_011 - .saturating_add(Weight::from_parts(392_225, 0).saturating_mul(c.into())) + // Measured: `1672` + // Estimated: `7612` + // Minimum execution time: 43_113_000 picoseconds. + Weight::from_parts(45_765_659, 0) + .saturating_add(Weight::from_parts(0, 7612)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -128,11 +127,11 @@ impl pallet_registry::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `551` // Estimated: `4016` - // Minimum execution time: 955_079_000 picoseconds. - Weight::from_parts(1_247_622_550, 0) + // Minimum execution time: 816_237_000 picoseconds. + Weight::from_parts(829_687_433, 0) .saturating_add(Weight::from_parts(0, 4016)) - // Standard Error: 92_666_943 - .saturating_add(Weight::from_parts(37_198_550, 0).saturating_mul(p.into())) + // Standard Error: 199_820 + .saturating_add(Weight::from_parts(3_417_880, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -146,13 +145,13 @@ impl pallet_registry::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `539 + o * (33 ±0)` // Estimated: `6479 + o * (33 ±0)` - // Minimum execution time: 77_019_000 picoseconds. - Weight::from_parts(95_738_250, 0) + // Minimum execution time: 46_500_000 picoseconds. + Weight::from_parts(29_196_384, 0) .saturating_add(Weight::from_parts(0, 6479)) - // Standard Error: 8_121_180 - .saturating_add(Weight::from_parts(2_755_195, 0).saturating_mul(n.into())) - // Standard Error: 8_121_180 - .saturating_add(Weight::from_parts(4_188_811, 0).saturating_mul(o.into())) + // Standard Error: 43_469 + .saturating_add(Weight::from_parts(3_338_027, 0).saturating_mul(n.into())) + // Standard Error: 43_469 + .saturating_add(Weight::from_parts(3_123_830, 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())) @@ -166,13 +165,13 @@ impl pallet_registry::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `251 + n * (1 ±0)` // Estimated: `3716 + n * (1 ±0)` - // Minimum execution time: 37_583_000 picoseconds. - Weight::from_parts(42_687_133, 0) + // Minimum execution time: 23_962_000 picoseconds. + Weight::from_parts(25_415_243, 0) .saturating_add(Weight::from_parts(0, 3716)) - // Standard Error: 192_389 - .saturating_add(Weight::from_parts(154_266, 0).saturating_mul(n.into())) + // Standard Error: 10_556 + .saturating_add(Weight::from_parts(128_620, 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())) } -} +} \ No newline at end of file diff --git a/runtime/src/weights/pallet_scheduler.rs b/runtime/src/weights/pallet_scheduler.rs index 3e1dca40c..de669fcc8 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_scheduler // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -54,8 +54,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `30` // Estimated: `1489` - // Minimum execution time: 3_958_000 picoseconds. - Weight::from_parts(4_227_000, 0) + // Minimum execution time: 3_909_000 picoseconds. + Weight::from_parts(4_193_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_302_000 picoseconds. - Weight::from_parts(5_596_780, 0) + // Minimum execution time: 5_215_000 picoseconds. + Weight::from_parts(6_386_564, 0) .saturating_add(Weight::from_parts(0, 110487)) - // Standard Error: 1_056 - .saturating_add(Weight::from_parts(479_878, 0).saturating_mul(s.into())) + // Standard Error: 2_115 + .saturating_add(Weight::from_parts(453_152, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -79,12 +79,12 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_450_000 picoseconds. - Weight::from_parts(4_733_000, 0) + // Minimum execution time: 4_763_000 picoseconds. + Weight::from_parts(5_086_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Preimage::PreimageFor` (r:1 w:1) - /// Proof: `Preimage::PreimageFor` (`max_values`: None, `max_size`: Some(4194344), added: 4196819, mode: `Measured`) + /// Proof: `Preimage::PreimageFor` (`max_values`: None, `max_size`: Some(4194344), added: 4196819, mode: `MaxEncodedLen`) /// Storage: `Preimage::StatusFor` (r:1 w:0) /// Proof: `Preimage::StatusFor` (`max_values`: None, `max_size`: Some(91), added: 2566, mode: `MaxEncodedLen`) /// Storage: `Preimage::RequestStatusFor` (r:1 w:1) @@ -93,15 +93,14 @@ impl pallet_scheduler::WeightInfo for WeightInfo { fn service_task_fetched(s: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `246 + s * (1 ±0)` - // Estimated: `3711 + s * (1 ±0)` - // Minimum execution time: 24_486_000 picoseconds. - Weight::from_parts(24_743_000, 0) - .saturating_add(Weight::from_parts(0, 3711)) - // Standard Error: 2 - .saturating_add(Weight::from_parts(1_276, 0).saturating_mul(s.into())) + // Estimated: `4197809` + // Minimum execution time: 23_984_000 picoseconds. + Weight::from_parts(24_296_000, 0) + .saturating_add(Weight::from_parts(0, 4197809)) + // Standard Error: 4 + .saturating_add(Weight::from_parts(1_201, 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())) } /// Storage: `Scheduler::Lookup` (r:0 w:1) /// Proof: `Scheduler::Lookup` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) @@ -109,8 +108,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_926_000 picoseconds. - Weight::from_parts(7_161_000, 0) + // Minimum execution time: 7_028_000 picoseconds. + Weight::from_parts(7_264_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -118,24 +117,24 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_460_000 picoseconds. - Weight::from_parts(4_670_000, 0) + // Minimum execution time: 4_482_000 picoseconds. + Weight::from_parts(4_882_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_484_000 picoseconds. - Weight::from_parts(3_620_000, 0) + // Minimum execution time: 3_395_000 picoseconds. + Weight::from_parts(3_548_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_402_000 picoseconds. - Weight::from_parts(3_575_000, 0) + // Minimum execution time: 3_489_000 picoseconds. + Weight::from_parts(3_664_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Scheduler::Agenda` (r:1 w:1) @@ -145,11 +144,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `80 + s * (177 ±0)` // Estimated: `110487` - // Minimum execution time: 14_881_000 picoseconds. - Weight::from_parts(14_731_089, 0) + // Minimum execution time: 14_621_000 picoseconds. + Weight::from_parts(14_384_507, 0) .saturating_add(Weight::from_parts(0, 110487)) - // Standard Error: 1_175 - .saturating_add(Weight::from_parts(535_626, 0).saturating_mul(s.into())) + // Standard Error: 2_828 + .saturating_add(Weight::from_parts(515_847, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -162,11 +161,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `80 + s * (177 ±0)` // Estimated: `110487` - // Minimum execution time: 20_153_000 picoseconds. - Weight::from_parts(15_667_545, 0) + // Minimum execution time: 20_199_000 picoseconds. + Weight::from_parts(16_359_633, 0) .saturating_add(Weight::from_parts(0, 110487)) - // Standard Error: 1_685 - .saturating_add(Weight::from_parts(825_434, 0).saturating_mul(s.into())) + // Standard Error: 4_061 + .saturating_add(Weight::from_parts(776_539, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -177,13 +176,13 @@ impl pallet_scheduler::WeightInfo for WeightInfo { /// The range of component `s` is `[0, 511]`. fn schedule_named(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `595 + s * (178 ±0)` + // Measured: `636 + s * (177 ±0)` // Estimated: `110487` - // Minimum execution time: 19_428_000 picoseconds. - Weight::from_parts(22_699_497, 0) + // Minimum execution time: 18_998_000 picoseconds. + Weight::from_parts(23_198_582, 0) .saturating_add(Weight::from_parts(0, 110487)) - // Standard Error: 1_304 - .saturating_add(Weight::from_parts(554_172, 0).saturating_mul(s.into())) + // Standard Error: 2_538 + .saturating_add(Weight::from_parts(509_543, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -194,13 +193,13 @@ impl pallet_scheduler::WeightInfo for WeightInfo { /// The range of component `s` is `[1, 512]`. fn cancel_named(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `708 + s * (177 ±0)` + // Measured: `705 + s * (177 ±0)` // Estimated: `110487` - // Minimum execution time: 22_321_000 picoseconds. - Weight::from_parts(22_631_024, 0) + // Minimum execution time: 22_998_000 picoseconds. + Weight::from_parts(19_418_522, 0) .saturating_add(Weight::from_parts(0, 110487)) - // Standard Error: 1_623 - .saturating_add(Weight::from_parts(813_870, 0).saturating_mul(s.into())) + // Standard Error: 3_827 + .saturating_add(Weight::from_parts(782_935, 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 58459cfaf..130ffc548 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_session // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -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: `1930` - // Estimated: `12820` - // Minimum execution time: 69_926_000 picoseconds. - Weight::from_parts(71_389_000, 0) - .saturating_add(Weight::from_parts(0, 12820)) + // Measured: `2095` + // Estimated: `12985` + // Minimum execution time: 66_287_000 picoseconds. + Weight::from_parts(67_276_000, 0) + .saturating_add(Weight::from_parts(0, 12985)) .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: `1703` - // Estimated: `5168` - // Minimum execution time: 50_807_000 picoseconds. - Weight::from_parts(51_889_000, 0) - .saturating_add(Weight::from_parts(0, 5168)) + // Measured: `1802` + // Estimated: `5267` + // Minimum execution time: 48_739_000 picoseconds. + Weight::from_parts(49_143_000, 0) + .saturating_add(Weight::from_parts(0, 5267)) .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 3bdf822f9..64b627fc6 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_staking // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -60,10 +60,10 @@ impl pallet_staking::WeightInfo for WeightInfo { /// Proof: `Staking::Payee` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) fn bond() -> Weight { // Proof Size summary in bytes: - // Measured: `968` + // Measured: `1211` // Estimated: `4764` - // Minimum execution time: 62_040_000 picoseconds. - Weight::from_parts(63_968_000, 0) + // Minimum execution time: 63_148_000 picoseconds. + Weight::from_parts(65_363_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: `2002` + // Measured: `2167` // Estimated: `8877` - // Minimum execution time: 119_929_000 picoseconds. - Weight::from_parts(123_416_000, 0) + // Minimum execution time: 119_309_000 picoseconds. + Weight::from_parts(121_977_000, 0) .saturating_add(Weight::from_parts(0, 8877)) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(7)) @@ -110,10 +110,10 @@ impl pallet_staking::WeightInfo for WeightInfo { /// Proof: `BagsList::ListBags` (`max_values`: None, `max_size`: Some(82), added: 2557, mode: `MaxEncodedLen`) fn unbond() -> Weight { // Proof Size summary in bytes: - // Measured: `2209` + // Measured: `2374` // Estimated: `8877` - // Minimum execution time: 131_922_000 picoseconds. - Weight::from_parts(134_370_000, 0) + // Minimum execution time: 131_722_000 picoseconds. + Weight::from_parts(133_143_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: `1131` + // Measured: `1329` // Estimated: `4764` - // Minimum execution time: 58_093_000 picoseconds. - Weight::from_parts(60_668_482, 0) + // Minimum execution time: 58_220_000 picoseconds. + Weight::from_parts(60_145_747, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 1_449 - .saturating_add(Weight::from_parts(68_618, 0).saturating_mul(s.into())) + // Standard Error: 2_402 + .saturating_add(Weight::from_parts(63_315, 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: `2208 + s * (4 ±0)` + // Measured: `2373 + s * (4 ±0)` // Estimated: `6248 + s * (4 ±0)` - // Minimum execution time: 122_591_000 picoseconds. - Weight::from_parts(132_912_147, 0) + // Minimum execution time: 122_382_000 picoseconds. + Weight::from_parts(134_457_117, 0) .saturating_add(Weight::from_parts(0, 6248)) - // Standard Error: 6_994 - .saturating_add(Weight::from_parts(1_890_387, 0).saturating_mul(s.into())) + // Standard Error: 15_300 + .saturating_add(Weight::from_parts(1_823_031, 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()))) @@ -208,10 +208,10 @@ 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: `1518` + // Measured: `1849` // Estimated: `6248` - // Minimum execution time: 81_707_000 picoseconds. - Weight::from_parts(84_583_000, 0) + // Minimum execution time: 81_487_000 picoseconds. + Weight::from_parts(82_702_000, 0) .saturating_add(Weight::from_parts(0, 6248)) .saturating_add(T::DbWeight::get().reads(12)) .saturating_add(T::DbWeight::get().writes(6)) @@ -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: `1731 + k * (572 ±0)` + // Measured: `1779 + k * (571 ±0)` // Estimated: `4556 + k * (3033 ±0)` - // Minimum execution time: 48_162_000 picoseconds. - Weight::from_parts(45_298_105, 0) + // Minimum execution time: 47_250_000 picoseconds. + Weight::from_parts(44_180_105, 0) .saturating_add(Weight::from_parts(0, 4556)) - // Standard Error: 9_973 - .saturating_add(Weight::from_parts(8_599_956, 0).saturating_mul(k.into())) + // Standard Error: 18_486 + .saturating_add(Weight::from_parts(8_176_511, 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: `1823 + n * (97 ±0)` + // Measured: `1941 + n * (92 ±0)` // Estimated: `6248 + n * (2520 ±0)` - // Minimum execution time: 90_044_000 picoseconds. - Weight::from_parts(89_883_240, 0) + // Minimum execution time: 90_197_000 picoseconds. + Weight::from_parts(88_779_359, 0) .saturating_add(Weight::from_parts(0, 6248)) - // Standard Error: 14_518 - .saturating_add(Weight::from_parts(4_662_644, 0).saturating_mul(n.into())) + // Standard Error: 41_396 + .saturating_add(Weight::from_parts(4_648_298, 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: `1795` + // Measured: `1894` // Estimated: `6248` - // Minimum execution time: 78_421_000 picoseconds. - Weight::from_parts(81_010_000, 0) + // Minimum execution time: 78_525_000 picoseconds. + Weight::from_parts(79_891_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: `886` + // Measured: `1022` // Estimated: `4556` - // Minimum execution time: 27_002_000 picoseconds. - Weight::from_parts(27_732_000, 0) + // Minimum execution time: 27_451_000 picoseconds. + Weight::from_parts(28_777_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: `987` + // Measured: `1193` // Estimated: `4556` - // Minimum execution time: 31_820_000 picoseconds. - Weight::from_parts(32_863_000, 0) + // Minimum execution time: 33_043_000 picoseconds. + Weight::from_parts(33_986_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: `886` + // Measured: `1018` // Estimated: `8122` - // Minimum execution time: 31_982_000 picoseconds. - Weight::from_parts(33_053_000, 0) + // Minimum execution time: 32_109_000 picoseconds. + Weight::from_parts(33_095_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_912_000 picoseconds. - Weight::from_parts(4_226_000, 0) + // Minimum execution time: 3_963_000 picoseconds. + Weight::from_parts(4_151_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_567_000 picoseconds. - Weight::from_parts(12_186_000, 0) + // Minimum execution time: 11_896_000 picoseconds. + Weight::from_parts(12_680_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_588_000 picoseconds. - Weight::from_parts(12_159_000, 0) + // Minimum execution time: 11_886_000 picoseconds. + Weight::from_parts(12_429_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_764_000 picoseconds. - Weight::from_parts(12_328_000, 0) + // Minimum execution time: 11_952_000 picoseconds. + Weight::from_parts(12_650_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_125_000 picoseconds. - Weight::from_parts(4_796_626, 0) + // Minimum execution time: 4_122_000 picoseconds. + Weight::from_parts(4_743_605, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 31 - .saturating_add(Weight::from_parts(12_173, 0).saturating_mul(v.into())) + // Standard Error: 84 + .saturating_add(Weight::from_parts(12_313, 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 * (225 ±0)` + // Measured: `2031 + i * (225 ±0)` // Estimated: `990 + i * (7132 ±0)` - // Minimum execution time: 7_133_000 picoseconds. - Weight::from_parts(7_398_000, 0) + // Minimum execution time: 7_176_000 picoseconds. + Weight::from_parts(7_384_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 98_251 - .saturating_add(Weight::from_parts(40_105_416, 0).saturating_mul(i.into())) + // Standard Error: 144_112 + .saturating_add(Weight::from_parts(37_650_321, 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: `2208 + s * (4 ±0)` + // Measured: `2373 + s * (4 ±0)` // Estimated: `6248 + s * (4 ±0)` - // Minimum execution time: 119_522_000 picoseconds. - Weight::from_parts(128_012_386, 0) + // Minimum execution time: 117_593_000 picoseconds. + Weight::from_parts(129_561_617, 0) .saturating_add(Weight::from_parts(0, 6248)) - // Standard Error: 7_810 - .saturating_add(Weight::from_parts(1_937_393, 0).saturating_mul(s.into())) + // Standard Error: 13_669 + .saturating_add(Weight::from_parts(1_850_384, 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: 139_032_000 picoseconds. - Weight::from_parts(1_181_662_411, 0) + // Minimum execution time: 137_733_000 picoseconds. + Weight::from_parts(1_157_683_871, 0) .saturating_add(Weight::from_parts(0, 70057)) - // Standard Error: 75_178 - .saturating_add(Weight::from_parts(6_336_124, 0).saturating_mul(s.into())) + // Standard Error: 140_472 + .saturating_add(Weight::from_parts(6_329_132, 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: `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())) + // Measured: `57991 + n * (389 ±0)` + // Estimated: `51769 + n * (3774 ±0)` + // Minimum execution time: 223_580_000 picoseconds. + Weight::from_parts(19_639_158, 0) + .saturating_add(Weight::from_parts(0, 51769)) + // Standard Error: 96_428 + .saturating_add(Weight::from_parts(66_118_110, 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: `2003 + l * (8 ±0)` + // Measured: `2168 + l * (8 ±0)` // Estimated: `8877` - // Minimum execution time: 119_952_000 picoseconds. - Weight::from_parts(124_445_772, 0) + // Minimum execution time: 117_707_000 picoseconds. + Weight::from_parts(122_197_329, 0) .saturating_add(Weight::from_parts(0, 8877)) - // Standard Error: 14_944 - .saturating_add(Weight::from_parts(178_351, 0).saturating_mul(l.into())) + // Standard Error: 43_499 + .saturating_add(Weight::from_parts(191_476, 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: `2208 + s * (4 ±0)` + // Measured: `2373 + s * (4 ±0)` // Estimated: `6248 + s * (4 ±0)` - // Minimum execution time: 132_128_000 picoseconds. - Weight::from_parts(136_859_524, 0) + // Minimum execution time: 130_153_000 picoseconds. + Weight::from_parts(135_468_672, 0) .saturating_add(Weight::from_parts(0, 6248)) - // Standard Error: 8_380 - .saturating_add(Weight::from_parts(1_946_505, 0).saturating_mul(s.into())) + // Standard Error: 14_993 + .saturating_add(Weight::from_parts(1_856_664, 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,19 +630,19 @@ 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 * (716 ±0) + v * (3594 ±0)` + // Measured: `0 + n * (715 ±0) + v * (3593 ±0)` // Estimated: `512390 + n * (3566 ±0) + v * (3566 ±0)` - // Minimum execution time: 812_097_000 picoseconds. - Weight::from_parts(829_473_000, 0) + // Minimum execution time: 805_487_000 picoseconds. + Weight::from_parts(821_290_000, 0) .saturating_add(Weight::from_parts(0, 512390)) - // 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())) + // Standard Error: 5_079_689 + .saturating_add(Weight::from_parts(84_098_660, 0).saturating_mul(v.into())) + // Standard Error: 524_083 + .saturating_add(Weight::from_parts(26_684_214, 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()))) - .saturating_add(T::DbWeight::get().writes(3)) + .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(v.into()))) .saturating_add(Weight::from_parts(0, 3566).saturating_mul(n.into())) .saturating_add(Weight::from_parts(0, 3566).saturating_mul(v.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 * (907 ±0) + v * (391 ±0)` + // Measured: `3309 + n * (907 ±0) + v * (391 ±0)` // Estimated: `512390 + n * (3566 ±0) + v * (3566 ±0)` - // Minimum execution time: 47_524_913_000 picoseconds. - Weight::from_parts(48_123_018_000, 0) + // Minimum execution time: 46_838_985_000 picoseconds. + Weight::from_parts(47_142_030_000, 0) .saturating_add(Weight::from_parts(0, 512390)) - // 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())) + // Standard Error: 993_852 + .saturating_add(Weight::from_parts(7_184_944, 0).saturating_mul(v.into())) + // Standard Error: 993_852 + .saturating_add(Weight::from_parts(4_819_829, 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()))) @@ -690,13 +690,13 @@ impl pallet_staking::WeightInfo for WeightInfo { /// The range of component `v` is `[500, 1000]`. fn get_npos_targets(v: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `899 + v * (50 ±0)` + // Measured: `886 + v * (50 ±0)` // Estimated: `3510 + v * (2520 ±0)` - // Minimum execution time: 3_282_261_000 picoseconds. - Weight::from_parts(3_348_063_000, 0) + // Minimum execution time: 3_306_371_000 picoseconds. + Weight::from_parts(188_715_471, 0) .saturating_add(Weight::from_parts(0, 3510)) - // Standard Error: 39_674 - .saturating_add(Weight::from_parts(2_457_515, 0).saturating_mul(v.into())) + // Standard Error: 17_681 + .saturating_add(Weight::from_parts(6_296_056, 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_323_000 picoseconds. - Weight::from_parts(8_191_000, 0) + // Minimum execution time: 7_596_000 picoseconds. + Weight::from_parts(8_677_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_580_000 picoseconds. - Weight::from_parts(6_993_000, 0) + // Minimum execution time: 6_799_000 picoseconds. + Weight::from_parts(7_210_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: `1931` + // Measured: `2030` // Estimated: `6248` - // Minimum execution time: 95_999_000 picoseconds. - Weight::from_parts(98_457_000, 0) + // Minimum execution time: 98_456_000 picoseconds. + Weight::from_parts(99_388_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_920_000 picoseconds. - Weight::from_parts(18_896_000, 0) + // Minimum execution time: 17_786_000 picoseconds. + Weight::from_parts(19_512_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_824_000 picoseconds. - Weight::from_parts(5_035_000, 0) + // Minimum execution time: 4_980_000 picoseconds. + Weight::from_parts(5_252_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -812,10 +812,10 @@ impl pallet_staking::WeightInfo for WeightInfo { /// Proof: `Balances::Freezes` (`max_values`: None, `max_size`: Some(193), added: 2668, mode: `MaxEncodedLen`) fn restore_ledger() -> Weight { // Proof Size summary in bytes: - // Measured: `1022` + // Measured: `1220` // Estimated: `4764` - // Minimum execution time: 60_470_000 picoseconds. - Weight::from_parts(62_099_000, 0) + // Minimum execution time: 60_068_000 picoseconds. + Weight::from_parts(61_909_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 d71ffdeae..c3f10c44c 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-09-30, STEPS: `5`, REPEAT: `2`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `Jesses-MacBook-Pro.local`, CPU: `` +//! HOSTNAME: `ip-172-31-28-93`, 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_staking_extension // --extrinsic=* -// --steps=5 -// --repeat=2 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt +// --template +// .maintain/frame-weight-template.hbs // --output=./runtime/src/weights/ #![cfg_attr(rustfmt, rustfmt_skip)] @@ -53,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: `1310` - // Estimated: `4775` - // Minimum execution time: 22_000_000 picoseconds. - Weight::from_parts(24_000_000, 0) - .saturating_add(Weight::from_parts(0, 4775)) + // Measured: `1421` + // Estimated: `4886` + // Minimum execution time: 37_448_000 picoseconds. + Weight::from_parts(39_440_000, 0) + .saturating_add(Weight::from_parts(0, 4886)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -74,11 +77,11 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// The range of component `s` is `[0, 15]`. fn change_threshold_accounts(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1455 + s * (32 ±0)` - // Estimated: `4918 + s * (32 ±0)` - // Minimum execution time: 27_000_000 picoseconds. - Weight::from_parts(31_058_011, 0) - .saturating_add(Weight::from_parts(0, 4918)) + // Measured: `1599 + s * (32 ±0)` + // Estimated: `5063 + s * (32 ±0)` + // Minimum execution time: 45_995_000 picoseconds. + Weight::from_parts(48_726_051, 0) + .saturating_add(Weight::from_parts(0, 5063)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(s.into())) @@ -109,15 +112,15 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// The range of component `n` is `[0, 16]`. fn unbond(s: u32, n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1986 + n * (32 ±0) + s * (64 ±0)` + // Measured: `2140 + n * (32 ±0) + s * (64 ±0)` // Estimated: `4764 + n * (32 ±0) + s * (64 ±0)` - // Minimum execution time: 70_000_000 picoseconds. - Weight::from_parts(66_699_022, 0) + // Minimum execution time: 115_452_000 picoseconds. + Weight::from_parts(116_623_730, 0) .saturating_add(Weight::from_parts(0, 4764)) - // Standard Error: 268_057 - .saturating_add(Weight::from_parts(210_260, 0).saturating_mul(s.into())) - // Standard Error: 258_014 - .saturating_add(Weight::from_parts(711_767, 0).saturating_mul(n.into())) + // Standard Error: 33_652 + .saturating_add(Weight::from_parts(194_540, 0).saturating_mul(s.into())) + // Standard Error: 31_703 + .saturating_add(Weight::from_parts(188_097, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(n.into())) @@ -147,13 +150,15 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// The range of component `n` is `[0, 16]`. fn chill(c: u32, n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1864 + c * (64 ±0) + n * (32 ±0)` + // Measured: `1985 + c * (64 ±0) + n * (32 ±0)` // Estimated: `6248 + c * (64 ±0) + n * (32 ±0)` - // Minimum execution time: 55_000_000 picoseconds. - Weight::from_parts(60_245_602, 0) + // Minimum execution time: 95_779_000 picoseconds. + Weight::from_parts(96_617_815, 0) .saturating_add(Weight::from_parts(0, 6248)) - // Standard Error: 151_233 - .saturating_add(Weight::from_parts(59_201, 0).saturating_mul(n.into())) + // Standard Error: 23_179 + .saturating_add(Weight::from_parts(168_714, 0).saturating_mul(c.into())) + // Standard Error: 21_837 + .saturating_add(Weight::from_parts(185_817, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().writes(6)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(c.into())) @@ -181,11 +186,15 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// The range of component `n` is `[0, 16]`. fn withdraw_unbonded(c: u32, n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1534 + c * (64 ±0) + n * (32 ±0)` + // Measured: `1655 + c * (64 ±0) + n * (32 ±0)` // Estimated: `4764 + c * (64 ±0) + n * (32 ±0)` - // Minimum execution time: 46_000_000 picoseconds. - Weight::from_parts(56_933_876, 0) + // Minimum execution time: 77_414_000 picoseconds. + Weight::from_parts(77_758_089, 0) .saturating_add(Weight::from_parts(0, 4764)) + // Standard Error: 24_246 + .saturating_add(Weight::from_parts(184_017, 0).saturating_mul(c.into())) + // Standard Error: 22_842 + .saturating_add(Weight::from_parts(181_804, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(c.into())) @@ -221,10 +230,10 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// Proof: `StakingExtension::ValidationQueue` (`max_values`: None, `max_size`: None, mode: `Measured`) fn validate() -> Weight { // Proof Size summary in bytes: - // Measured: `1943` + // Measured: `2141` // Estimated: `6248` - // Minimum execution time: 61_000_000 picoseconds. - Weight::from_parts(68_000_000, 0) + // Minimum execution time: 112_405_000 picoseconds. + Weight::from_parts(116_028_000, 0) .saturating_add(Weight::from_parts(0, 6248)) .saturating_add(T::DbWeight::get().reads(15)) .saturating_add(T::DbWeight::get().writes(8)) @@ -235,11 +244,11 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// Proof: `StakingExtension::IsValidatorSynced` (`max_values`: None, `max_size`: None, mode: `Measured`) fn declare_synced() -> Weight { // Proof Size summary in bytes: - // Measured: `320` - // Estimated: `3785` - // Minimum execution time: 10_000_000 picoseconds. - Weight::from_parts(10_000_000, 0) - .saturating_add(Weight::from_parts(0, 3785)) + // Measured: `353` + // Estimated: `3818` + // Minimum execution time: 16_110_000 picoseconds. + Weight::from_parts(16_488_000, 0) + .saturating_add(Weight::from_parts(0, 3818)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -250,16 +259,16 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// The range of component `c` is `[0, 15]`. fn confirm_key_reshare_confirmed(c: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `797 + c * (32 ±0)` - // Estimated: `4298 + c * (29 ±1)` - // Minimum execution time: 11_000_000 picoseconds. - Weight::from_parts(11_892_265, 0) - .saturating_add(Weight::from_parts(0, 4298)) - // Standard Error: 236_921 - .saturating_add(Weight::from_parts(181_629, 0).saturating_mul(c.into())) + // Measured: `830 + c * (32 ±0)` + // Estimated: `4320 + c * (30 ±0)` + // Minimum execution time: 18_737_000 picoseconds. + Weight::from_parts(20_163_892, 0) + .saturating_add(Weight::from_parts(0, 4320)) + // Standard Error: 7_914 + .saturating_add(Weight::from_parts(37_314, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) - .saturating_add(Weight::from_parts(0, 29).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(0, 30).saturating_mul(c.into())) } /// Storage: `StakingExtension::ThresholdToStash` (r:1 w:0) /// Proof: `StakingExtension::ThresholdToStash` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -271,11 +280,11 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// Proof: `StakingExtension::RotateKeyshares` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn confirm_key_reshare_completed() -> Weight { // Proof Size summary in bytes: - // Measured: `1309` - // Estimated: `4774` - // Minimum execution time: 13_000_000 picoseconds. - Weight::from_parts(13_000_000, 0) - .saturating_add(Weight::from_parts(0, 4774)) + // Measured: `1342` + // Estimated: `4807` + // Minimum execution time: 21_013_000 picoseconds. + Weight::from_parts(21_965_000, 0) + .saturating_add(Weight::from_parts(0, 4807)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -288,11 +297,11 @@ impl pallet_staking_extension::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `266 + s * (32 ±0)` // Estimated: `1751 + s * (32 ±0)` - // Minimum execution time: 5_000_000 picoseconds. - Weight::from_parts(6_448_443, 0) + // Minimum execution time: 7_529_000 picoseconds. + Weight::from_parts(7_865_217, 0) .saturating_add(Weight::from_parts(0, 1751)) - // Standard Error: 246_978 - .saturating_add(Weight::from_parts(18_482, 0).saturating_mul(s.into())) + // Standard Error: 2_909 + .saturating_add(Weight::from_parts(15_094, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(s.into())) } @@ -312,25 +321,23 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// Proof: `StakingExtension::NextSigners` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// The range of component `c` is `[1, 14]`. /// The range of component `l` is `[0, 15]`. - fn new_session(c: u32, l: u32, ) -> Weight { + fn new_session(c: u32, _l: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `494 + c * (32 ±0)` - // Estimated: `1978 + c * (32 ±0)` - // Minimum execution time: 12_000_000 picoseconds. - Weight::from_parts(12_568_591, 0) - .saturating_add(Weight::from_parts(0, 1978)) - // Standard Error: 87_519 - .saturating_add(Weight::from_parts(2_584, 0).saturating_mul(c.into())) - // Standard Error: 74_987 - .saturating_add(Weight::from_parts(69_217, 0).saturating_mul(l.into())) + // Estimated: `1979 + c * (32 ±0)` + // Minimum execution time: 19_313_000 picoseconds. + Weight::from_parts(20_259_262, 0) + .saturating_add(Weight::from_parts(0, 1979)) + // Standard Error: 7_972 + .saturating_add(Weight::from_parts(49_077, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(c.into())) } - /// Storage: `StakingExtension::ValidationQueue` (r:251 w:250) - /// Proof: `StakingExtension::ValidationQueue` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `StakingExtension::CounterForValidationQueue` (r:1 w:1) /// Proof: `StakingExtension::CounterForValidationQueue` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `StakingExtension::ValidationQueue` (r:251 w:250) + /// Proof: `StakingExtension::ValidationQueue` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `StakingExtension::ThresholdServers` (r:0 w:1) /// Proof: `StakingExtension::ThresholdServers` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `StakingExtension::ThresholdToStash` (r:0 w:250) @@ -338,17 +345,17 @@ impl pallet_staking_extension::WeightInfo for WeightInf /// The range of component `s` is `[1, 250]`. fn on_initialize(s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `337 + s * (154 ±0)` - // Estimated: `3799 + s * (2630 ±0)` - // Minimum execution time: 21_000_000 picoseconds. - Weight::from_parts(21_000_000, 0) - .saturating_add(Weight::from_parts(0, 3799)) - // Standard Error: 66_002 - .saturating_add(Weight::from_parts(9_585_598, 0).saturating_mul(s.into())) + // Measured: `373 + s * (188 ±0)` + // Estimated: `3839 + s * (2664 ±0)` + // Minimum execution time: 25_320_000 picoseconds. + Weight::from_parts(10_261_196, 0) + .saturating_add(Weight::from_parts(0, 3839)) + // Standard Error: 18_602 + .saturating_add(Weight::from_parts(10_970_560, 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(2)) .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(s.into()))) - .saturating_add(Weight::from_parts(0, 2630).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(0, 2664).saturating_mul(s.into())) } -} +} \ No newline at end of file diff --git a/runtime/src/weights/pallet_sudo.rs b/runtime/src/weights/pallet_sudo.rs index b0424a601..153d84c3b 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_sudo // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -54,8 +54,8 @@ impl pallet_sudo::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `136` // Estimated: `1517` - // Minimum execution time: 13_278_000 picoseconds. - Weight::from_parts(13_914_000, 0) + // Minimum execution time: 13_465_000 picoseconds. + Weight::from_parts(14_091_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_319_000 picoseconds. - Weight::from_parts(14_662_000, 0) + // Minimum execution time: 14_558_000 picoseconds. + Weight::from_parts(14_871_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_027_000 picoseconds. - Weight::from_parts(14_742_000, 0) + // Minimum execution time: 14_016_000 picoseconds. + Weight::from_parts(14_882_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_793_000 picoseconds. - Weight::from_parts(12_657_000, 0) + // Minimum execution time: 11_880_000 picoseconds. + Weight::from_parts(12_401_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 10b0b024d..338086671 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_timestamp // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -56,8 +56,8 @@ impl pallet_timestamp::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `245` // Estimated: `1493` - // Minimum execution time: 10_665_000 picoseconds. - Weight::from_parts(11_436_000, 0) + // Minimum execution time: 10_827_000 picoseconds. + Weight::from_parts(11_210_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_695_000 picoseconds. - Weight::from_parts(4_898_000, 0) + // Minimum execution time: 4_708_000 picoseconds. + Weight::from_parts(4_930_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 3a17807ea..41041e51a 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_tips // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -57,11 +57,11 @@ impl pallet_tips::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4` // Estimated: `3469` - // Minimum execution time: 37_648_000 picoseconds. - Weight::from_parts(39_220_315, 0) + // Minimum execution time: 36_144_000 picoseconds. + Weight::from_parts(38_175_945, 0) .saturating_add(Weight::from_parts(0, 3469)) - // Standard Error: 4 - .saturating_add(Weight::from_parts(1_607, 0).saturating_mul(r.into())) + // Standard Error: 13 + .saturating_add(Weight::from_parts(1_579, 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: 36_415_000 picoseconds. - Weight::from_parts(36_731_000, 0) + // Minimum execution time: 34_439_000 picoseconds. + Weight::from_parts(35_789_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: `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())) + // Measured: `303 + t * (64 ±0)` + // Estimated: `3768 + t * (64 ±0)` + // Minimum execution time: 22_600_000 picoseconds. + Weight::from_parts(21_895_778, 0) + .saturating_add(Weight::from_parts(0, 3768)) + // Standard Error: 21 + .saturating_add(Weight::from_parts(1_510, 0).saturating_mul(r.into())) + // Standard Error: 29_066 + .saturating_add(Weight::from_parts(198_962, 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: `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())) + // Measured: `524 + t * (112 ±0)` + // Estimated: `3989 + t * (112 ±0)` + // Minimum execution time: 18_483_000 picoseconds. + Weight::from_parts(18_939_081, 0) + .saturating_add(Weight::from_parts(0, 3989)) + // Standard Error: 7_120 + .saturating_add(Weight::from_parts(159_637, 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: `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())) + // Measured: `563 + t * (112 ±0)` + // Estimated: `4036 + t * (111 ±0)` + // Minimum execution time: 74_598_000 picoseconds. + Weight::from_parts(76_493_709, 0) + .saturating_add(Weight::from_parts(0, 4036)) + // Standard Error: 24_235 + .saturating_add(Weight::from_parts(131_933, 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_934_000 picoseconds. - Weight::from_parts(16_960_896, 0) + // Minimum execution time: 15_594_000 picoseconds. + Weight::from_parts(16_762_459, 0) .saturating_add(Weight::from_parts(0, 3734)) - // Standard Error: 2_477 - .saturating_add(Weight::from_parts(21_059, 0).saturating_mul(t.into())) + // Standard Error: 6_955 + .saturating_add(Weight::from_parts(13_875, 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 ce3c0752d..df4b872dd 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_transaction_pause // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -54,8 +54,8 @@ impl pallet_transaction_pause::WeightInfo for WeightInf // Proof Size summary in bytes: // Measured: `109` // Estimated: `3574` - // Minimum execution time: 14_550_000 picoseconds. - Weight::from_parts(15_243_000, 0) + // Minimum execution time: 14_488_000 picoseconds. + Weight::from_parts(15_094_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_899_000 picoseconds. - Weight::from_parts(16_361_000, 0) + // Minimum execution time: 15_470_000 picoseconds. + Weight::from_parts(15_996_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 042b761cc..e4ba70a90 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_transaction_storage // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -61,11 +61,11 @@ impl pallet_transaction_storage::WeightInfo for WeightI // Proof Size summary in bytes: // Measured: `105` // Estimated: `38351` - // Minimum execution time: 86_335_000 picoseconds. - Weight::from_parts(87_464_000, 0) + // Minimum execution time: 82_486_000 picoseconds. + Weight::from_parts(83_886_000, 0) .saturating_add(Weight::from_parts(0, 38351)) - // Standard Error: 7 - .saturating_add(Weight::from_parts(7_519, 0).saturating_mul(l.into())) + // Standard Error: 18 + .saturating_add(Weight::from_parts(7_287, 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_358_000 picoseconds. - Weight::from_parts(114_958_000, 0) + // Minimum execution time: 105_768_000 picoseconds. + Weight::from_parts(109_556_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: 82_640_000 picoseconds. - Weight::from_parts(88_829_000, 0) + // Minimum execution time: 82_951_000 picoseconds. + Weight::from_parts(84_052_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 2183443fe..dc327bbd3 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: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_treasury // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -58,8 +58,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `1887` - // Minimum execution time: 15_807_000 picoseconds. - Weight::from_parts(16_451_000, 0) + // Minimum execution time: 15_810_000 picoseconds. + Weight::from_parts(16_737_000, 0) .saturating_add(Weight::from_parts(0, 1887)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) @@ -72,8 +72,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `143` // Estimated: `1489` - // Minimum execution time: 32_682_000 picoseconds. - Weight::from_parts(33_695_000, 0) + // Minimum execution time: 31_569_000 picoseconds. + Weight::from_parts(32_868_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -86,8 +86,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `301` // Estimated: `3593` - // Minimum execution time: 47_504_000 picoseconds. - Weight::from_parts(48_860_000, 0) + // Minimum execution time: 45_203_000 picoseconds. + Weight::from_parts(47_055_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -99,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: `470 + p * (8 ±0)` + // Measured: `463 + p * (8 ±0)` // Estimated: `3573` - // Minimum execution time: 11_476_000 picoseconds. - Weight::from_parts(14_964_483, 0) + // Minimum execution time: 10_833_000 picoseconds. + Weight::from_parts(14_353_526, 0) .saturating_add(Weight::from_parts(0, 3573)) - // Standard Error: 1_418 - .saturating_add(Weight::from_parts(93_684, 0).saturating_mul(p.into())) + // Standard Error: 2_918 + .saturating_add(Weight::from_parts(90_132, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -115,8 +115,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `127` // Estimated: `1887` - // Minimum execution time: 8_419_000 picoseconds. - Weight::from_parts(8_782_000, 0) + // Minimum execution time: 8_338_000 picoseconds. + Weight::from_parts(8_774_000, 0) .saturating_add(Weight::from_parts(0, 1887)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -134,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: `465 + p * (252 ±0)` + // Measured: `475 + p * (253 ±0)` // Estimated: `1887 + p * (5206 ±0)` - // Minimum execution time: 42_774_000 picoseconds. - Weight::from_parts(53_574_922, 0) + // Minimum execution time: 40_944_000 picoseconds. + Weight::from_parts(52_948_321, 0) .saturating_add(Weight::from_parts(0, 1887)) - // Standard Error: 15_590 - .saturating_add(Weight::from_parts(44_765_951, 0).saturating_mul(p.into())) + // Standard Error: 30_336 + .saturating_add(Weight::from_parts(42_834_231, 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)) @@ -155,8 +155,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `1489` - // Minimum execution time: 13_674_000 picoseconds. - Weight::from_parts(14_162_000, 0) + // Minimum execution time: 13_303_000 picoseconds. + Weight::from_parts(13_968_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -169,8 +169,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `199` // Estimated: `3593` - // Minimum execution time: 67_733_000 picoseconds. - Weight::from_parts(69_046_000, 0) + // Minimum execution time: 65_504_000 picoseconds. + Weight::from_parts(66_371_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -181,8 +181,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `160` // Estimated: `3534` - // Minimum execution time: 15_602_000 picoseconds. - Weight::from_parts(16_224_000, 0) + // Minimum execution time: 14_880_000 picoseconds. + Weight::from_parts(15_567_000, 0) .saturating_add(Weight::from_parts(0, 3534)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -193,8 +193,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `160` // Estimated: `3534` - // Minimum execution time: 14_411_000 picoseconds. - Weight::from_parts(14_986_000, 0) + // Minimum execution time: 13_825_000 picoseconds. + Weight::from_parts(14_161_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_utility.rs b/runtime/src/weights/pallet_utility.rs index 9b8855a3a..9c888bf03 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_utility // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -53,18 +53,18 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_134_000 picoseconds. - Weight::from_parts(14_433_095, 0) + // Minimum execution time: 7_120_000 picoseconds. + Weight::from_parts(16_837_541, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_909 - .saturating_add(Weight::from_parts(4_106_239, 0).saturating_mul(c.into())) + // Standard Error: 3_236 + .saturating_add(Weight::from_parts(3_893_529, 0).saturating_mul(c.into())) } fn as_derivative() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_149_000 picoseconds. - Weight::from_parts(7_405_000, 0) + // Minimum execution time: 6_771_000 picoseconds. + Weight::from_parts(7_036_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `c` is `[0, 1000]`. @@ -72,18 +72,18 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_114_000 picoseconds. - Weight::from_parts(14_522_924, 0) + // Minimum execution time: 7_011_000 picoseconds. + Weight::from_parts(14_130_727, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_448 - .saturating_add(Weight::from_parts(4_446_801, 0).saturating_mul(c.into())) + // Standard Error: 3_014 + .saturating_add(Weight::from_parts(4_172_486, 0).saturating_mul(c.into())) } fn dispatch_as() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 9_852_000 picoseconds. - Weight::from_parts(10_326_000, 0) + // Minimum execution time: 9_549_000 picoseconds. + Weight::from_parts(10_212_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// The range of component `c` is `[0, 1000]`. @@ -91,10 +91,10 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_888_000 picoseconds. - Weight::from_parts(14_994_737, 0) + // Minimum execution time: 7_065_000 picoseconds. + Weight::from_parts(16_923_287, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 1_893 - .saturating_add(Weight::from_parts(4_112_485, 0).saturating_mul(c.into())) + // Standard Error: 3_137 + .saturating_add(Weight::from_parts(3_886_552, 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 02bcbdd43..9fce03c5a 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-06-26, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-10-03, STEPS: `25`, REPEAT: `10`, 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` +//! HOSTNAME: `ip-172-31-28-93`, CPU: `Intel(R) Xeon(R) Platinum 8375C CPU @ 2.90GHz` //! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: 1024 // Executed Command: @@ -30,8 +30,8 @@ // --wasm-execution=compiled // --pallet=pallet_vesting // --extrinsic=* -// --steps=50 -// --repeat=20 +// --steps=25 +// --repeat=10 // --header=.maintain/AGPL-3.0-header.txt // --template // .maintain/frame-weight-template.hbs @@ -58,15 +58,15 @@ impl pallet_vesting::WeightInfo for WeightInfo { /// The range of component `s` is `[1, 28]`. fn vest_locked(l: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `348 + l * (25 ±0) + s * (36 ±0)` + // Measured: `414 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 42_687_000 picoseconds. - Weight::from_parts(41_506_761, 0) + // Minimum execution time: 41_081_000 picoseconds. + Weight::from_parts(40_119_763, 0) .saturating_add(Weight::from_parts(0, 4764)) - // 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())) + // Standard Error: 5_739 + .saturating_add(Weight::from_parts(64_133, 0).saturating_mul(l.into())) + // Standard Error: 10_302 + .saturating_add(Weight::from_parts(92_102, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -80,15 +80,15 @@ impl pallet_vesting::WeightInfo for WeightInfo { /// The range of component `s` is `[1, 28]`. fn vest_unlocked(l: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `348 + l * (25 ±0) + s * (36 ±0)` + // Measured: `414 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 45_645_000 picoseconds. - Weight::from_parts(45_433_612, 0) + // Minimum execution time: 43_437_000 picoseconds. + Weight::from_parts(44_241_602, 0) .saturating_add(Weight::from_parts(0, 4764)) - // 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())) + // Standard Error: 5_215 + .saturating_add(Weight::from_parts(40_064, 0).saturating_mul(l.into())) + // Standard Error: 9_362 + .saturating_add(Weight::from_parts(61_889, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -104,15 +104,15 @@ impl pallet_vesting::WeightInfo for WeightInfo { /// The range of component `s` is `[1, 28]`. fn vest_other_locked(l: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `488 + l * (25 ±0) + s * (36 ±0)` + // Measured: `554 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 45_625_000 picoseconds. - Weight::from_parts(45_121_820, 0) + // Minimum execution time: 44_021_000 picoseconds. + Weight::from_parts(43_206_527, 0) .saturating_add(Weight::from_parts(0, 4764)) - // 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())) + // Standard Error: 2_905 + .saturating_add(Weight::from_parts(62_679, 0).saturating_mul(l.into())) + // Standard Error: 5_214 + .saturating_add(Weight::from_parts(84_067, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -128,15 +128,15 @@ impl pallet_vesting::WeightInfo for WeightInfo { /// The range of component `s` is `[1, 28]`. fn vest_other_unlocked(l: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `488 + l * (25 ±0) + s * (36 ±0)` + // Measured: `554 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 47_974_000 picoseconds. - Weight::from_parts(47_998_552, 0) + // Minimum execution time: 46_703_000 picoseconds. + Weight::from_parts(46_976_258, 0) .saturating_add(Weight::from_parts(0, 4764)) - // 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())) + // Standard Error: 6_731 + .saturating_add(Weight::from_parts(49_820, 0).saturating_mul(l.into())) + // Standard Error: 12_082 + .saturating_add(Weight::from_parts(48_327, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -152,15 +152,15 @@ impl pallet_vesting::WeightInfo for WeightInfo { /// The range of component `s` is `[0, 27]`. fn vested_transfer(l: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `522 + l * (25 ±0) + s * (36 ±0)` + // Measured: `592 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 94_933_000 picoseconds. - Weight::from_parts(96_522_416, 0) + // Minimum execution time: 89_321_000 picoseconds. + Weight::from_parts(91_256_102, 0) .saturating_add(Weight::from_parts(0, 4764)) - // 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())) + // Standard Error: 12_140 + .saturating_add(Weight::from_parts(78_196, 0).saturating_mul(l.into())) + // Standard Error: 21_792 + .saturating_add(Weight::from_parts(146_766, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -176,15 +176,15 @@ impl pallet_vesting::WeightInfo for WeightInfo { /// The range of component `s` is `[0, 27]`. fn force_vested_transfer(l: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `625 + l * (25 ±0) + s * (36 ±0)` + // Measured: `695 + l * (25 ±0) + s * (36 ±0)` // Estimated: `6196` - // Minimum execution time: 96_688_000 picoseconds. - Weight::from_parts(98_115_036, 0) + // Minimum execution time: 90_807_000 picoseconds. + Weight::from_parts(93_110_952, 0) .saturating_add(Weight::from_parts(0, 6196)) - // 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())) + // Standard Error: 11_419 + .saturating_add(Weight::from_parts(91_443, 0).saturating_mul(l.into())) + // Standard Error: 20_498 + .saturating_add(Weight::from_parts(134_691, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -200,15 +200,15 @@ impl pallet_vesting::WeightInfo for WeightInfo { /// The range of component `s` is `[2, 28]`. fn not_unlocking_merge_schedules(l: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `449 + l * (25 ±0) + s * (36 ±0)` + // Measured: `515 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 46_015_000 picoseconds. - Weight::from_parts(44_799_356, 0) + // Minimum execution time: 44_208_000 picoseconds. + Weight::from_parts(43_329_205, 0) .saturating_add(Weight::from_parts(0, 4764)) - // 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())) + // Standard Error: 6_573 + .saturating_add(Weight::from_parts(68_815, 0).saturating_mul(l.into())) + // Standard Error: 12_263 + .saturating_add(Weight::from_parts(80_032, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -224,15 +224,15 @@ impl pallet_vesting::WeightInfo for WeightInfo { /// The range of component `s` is `[2, 28]`. fn unlocking_merge_schedules(l: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `449 + l * (25 ±0) + s * (36 ±0)` + // Measured: `515 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 48_760_000 picoseconds. - Weight::from_parts(47_658_024, 0) + // Minimum execution time: 47_363_000 picoseconds. + Weight::from_parts(46_168_910, 0) .saturating_add(Weight::from_parts(0, 4764)) - // 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())) + // Standard Error: 3_640 + .saturating_add(Weight::from_parts(69_753, 0).saturating_mul(l.into())) + // Standard Error: 6_790 + .saturating_add(Weight::from_parts(79_128, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -248,15 +248,15 @@ impl pallet_vesting::WeightInfo for WeightInfo { /// The range of component `s` is `[2, 28]`. fn force_remove_vesting_schedule(l: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `522 + l * (25 ±0) + s * (36 ±0)` + // Measured: `592 + l * (25 ±0) + s * (36 ±0)` // Estimated: `4764` - // Minimum execution time: 50_930_000 picoseconds. - Weight::from_parts(50_335_194, 0) + // Minimum execution time: 49_309_000 picoseconds. + Weight::from_parts(48_613_732, 0) .saturating_add(Weight::from_parts(0, 4764)) - // 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())) + // Standard Error: 5_712 + .saturating_add(Weight::from_parts(78_373, 0).saturating_mul(l.into())) + // Standard Error: 10_657 + .saturating_add(Weight::from_parts(87_891, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } diff --git a/scripts/create-test-keyshares/Cargo.toml b/scripts/create-test-keyshares/Cargo.toml index 52ddbe4bf..3000d8c69 100644 --- a/scripts/create-test-keyshares/Cargo.toml +++ b/scripts/create-test-keyshares/Cargo.toml @@ -1,7 +1,7 @@ [package] name ="entropy-create-test-keyshares" description="Makes a set of keyshares for testing entropy-tss" -version ='0.2.0-rc.1' +version ='0.3.0-rc.1' authors =['Entropy Cryptography '] homepage ='https://entropy.xyz/' license ='AGPL-3.0-or-later' @@ -10,14 +10,14 @@ edition ='2021' publish =false [dependencies] -entropy-testing-utils={ version="0.2.0-rc.1", path="../../crates/testing-utils" } +entropy-testing-utils={ version="0.3.0-rc.1", path="../../crates/testing-utils" } tokio ={ version="1.40", features=["macros", "fs", "rt-multi-thread", "io-util", "process"] } -entropy-shared ={ version="0.2.0-rc.1", path="../../crates/shared" } -entropy-kvdb ={ version="0.2.0-rc.1", path="../../crates/kvdb", default-features=false } +entropy-shared ={ version="0.3.0-rc.1", path="../../crates/shared" } +entropy-kvdb ={ version="0.3.0-rc.1", path="../../crates/kvdb", default-features=false } sp-core ="31.0.0" # Unreleased version of Synedrion with support for child key derivations. synedrion={ version="0.2.0-beta.0" } -entropy-tss={ version="0.2.0-rc.1", path="../../crates/threshold-signature-server", features=[ +entropy-tss={ version="0.3.0-rc.1", path="../../crates/threshold-signature-server", features=[ "test_helpers", ] }