Skip to content

Conversation

michalkucharczyk
Copy link
Contributor

No description provided.

bkchr and others added 30 commits July 11, 2025 14:56
This is a first step into fixing #6020.
The underlying problem for parachains is that when calling `storage_root`, values that
are written, will need to be looked up in the trie. This is required to insert the value
or to remove it. The problem is that this lookup in `storage_root` increases the storage
proof size, but storage reclaim for example can not track these lookups. This means that
with storage reclaim it is possible to include more transactions than what the block should
be allowed to include.
This pull request reads a key from the backend the first time it is written. This results in
taking into account what `storage_root` is doing at the end of a block. However, this may
still skips reading one extra `node` (depending on the trie structure). Skipping only one `node`
is far less problematic than skipping the entire lookup. A future pull request will improve this further
to take the entire operation of `storage_root` into account.

For chains that are not recording a storage proof, they will still do this extra backend read. However,
this read will end up in the cache. At the end of the block the key will be read again as part of
`storage_root`, but served from the cache. So, there is no downside of this.
@michalkucharczyk
Copy link
Contributor Author

/cmd bench --help

@michalkucharczyk michalkucharczyk removed the request for review from koute October 3, 2025 12:08
Copy link
Contributor

github-actions bot commented Oct 3, 2025

Command help:
usage: /cmd bench [-h] [--quiet] [--clean] [--image IMAGE]
                  [--runtime [{dev,westend,rococo,asset-hub-westend,asset-hub-rococo,bridge-hub-rococo,bridge-hub-westend,collectives-westend,coretime-rococo,coretime-westend,glutton-westend,people-rococo,people-westend} ...]]
                  [--pallet [PALLET ...]] [--fail-fast]

options:
  -h, --help            show this help message and exit
  --quiet               Won't print start/end/failed messages in PR
  --clean               Clean up the previous bot's & author's comments in PR
  --image IMAGE         Override docker image '--image
                        docker.io/paritytech/ci-unified:latest'
  --runtime [{dev,westend,rococo,asset-hub-westend,asset-hub-rococo,bridge-hub-rococo,bridge-hub-westend,collectives-westend,coretime-rococo,coretime-westend,glutton-westend,people-rococo,people-westend} ...]
                        Runtime(s) space separated
  --pallet [PALLET ...]
                        Pallet(s) space separated
  --fail-fast           Fail fast on first failed benchmark

**Examples**:
 Runs all benchmarks 
 /cmd bench

 Runs benchmarks for pallet_balances and pallet_multisig for all runtimes which have these pallets. **--quiet** makes it to output nothing to PR but reactions
 /cmd bench --pallet pallet_balances pallet_xcm_benchmarks::generic --quiet
 
 Runs bench for all pallets for westend runtime and fails fast on first failed benchmark
 /cmd bench --runtime westend --fail-fast
 
 Does not output anything and cleans up the previous bot's & author command triggering comments in PR 
 /cmd bench --runtime westend rococo --pallet pallet_balances pallet_multisig --quiet --clean

@michalkucharczyk
Copy link
Contributor Author

/cmd bench --runtime asset-hub-westend

Copy link
Contributor

github-actions bot commented Oct 3, 2025

Command "bench --runtime asset-hub-westend" has started 🚀 See logs here

Copy link
Contributor

github-actions bot commented Oct 3, 2025

Command "bench --runtime asset-hub-westend" has failed ❌! See logs here

@michalkucharczyk
Copy link
Contributor Author

/cmd bench --runtime asset-hub-westend

Copy link
Contributor

github-actions bot commented Oct 3, 2025

Command "bench --runtime asset-hub-westend" has started 🚀 See logs here

Copy link
Contributor

github-actions bot commented Oct 3, 2025

Command "bench --runtime asset-hub-westend" has failed ❌! See logs here

@michalkucharczyk
Copy link
Contributor Author

/cmd bench --runtime asset-hub-westend

Copy link
Contributor

github-actions bot commented Oct 3, 2025

Command "bench --runtime asset-hub-westend" has started 🚀 See logs here

Copy link
Contributor

github-actions bot commented Oct 4, 2025

Command "bench --runtime asset-hub-westend" has finished ✅ See logs here

Subweight results:
File Extrinsic Old New Change [%]
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs process_offence_queue 782.00us 46.45ms +5839.56
substrate/frame/staking-async/src/weights.rs cancel_deferred_slash 2.90ms 131.61ms +4446.04
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs cancel_deferred_slash 3.12ms 138.44ms +4341.57
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs force_apply_min_commission 184.00us 4.91ms +2570.67
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs unbond 1.13ms 18.74ms +1562.55
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs bond_extra 1.24ms 20.06ms +1520.08
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs chill 974.00us 14.83ms +1422.51
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs rebond 1.10ms 16.20ms +1378.16
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs withdraw_unbonded_kill 1.75ms 24.74ms +1316.74
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs reap_stash 1.68ms 22.57ms +1240.18
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs chill_other 1.07ms 14.29ms +1236.54
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs nominate 1.52ms 19.61ms +1191.26
substrate/frame/staking-async/src/weights.rs process_offence_queue 758.00us 8.87ms +1069.79
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs force_unstake 1.72ms 19.98ms +1063.46
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/snowbridge_pallet_system_frontend.rs register_token 91.00us 976.72us +973.32
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs rc_on_session_report 1.56ms 15.90ms +916.62
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_conviction_voting.rs vote_new 812.15us 5.22ms +542.15
polkadot/runtime/westend/src/weights/polkadot_runtime_parachains_paras.rs add_trusted_validation_code 6.63ms 40.87ms +516.39
polkadot/runtime/westend/src/weights/polkadot_runtime_parachains_paras.rs force_set_current_code 8.50ms 43.34ms +409.61
polkadot/runtime/westend/src/weights/polkadot_runtime_parachains_paras.rs force_schedule_code_upgrade 8.66ms 43.28ms +399.85
polkadot/runtime/westend/src/weights/polkadot_runtime_parachains_paras.rs force_set_current_head 1.10ms 4.88ms +345.07
polkadot/runtime/westend/src/weights/polkadot_runtime_parachains_paras.rs force_note_new_head 1.34ms 5.13ms +282.81
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_multisig.rs as_multi_threshold_1 24.27us 89.69us +269.50
polkadot/runtime/westend/src/weights/polkadot_runtime_parachains_paras.rs apply_authorized_force_set_current_code 12.98ms 46.85ms +260.79
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/cumulus_pallet_weight_reclaim.rs storage_weight_reclaim 3.98us 11.99us +201.16
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_session.rs purge_keys 238.91us 398.89us +66.97
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs payout_stakers_alive_staked 286.79ms 429.09ms +49.62
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs rc_on_offence 145.93ms 216.94ms +48.66
cumulus/parachains/runtimes/coretime/coretime-rococo/src/weights/cumulus_pallet_xcmp_queue.rs take_first_concatenated_xcm 3.93us 5.58us +41.94
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_nfts.rs cancel_approval 141.97us 198.96us +40.15
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_proxy.rs create_pure 152.39us 213.43us +40.05
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/cumulus_pallet_xcmp_queue.rs take_first_concatenated_xcm 4.02us 5.61us +39.68
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/cumulus_pallet_xcmp_queue.rs take_first_concatenated_xcm 4.05us 5.61us +38.46
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/frame_system_extensions.rs check_tx_version 443.00ns 601.00ns +35.67
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/cumulus_pallet_xcmp_queue.rs take_first_concatenated_xcm 4.10us 5.56us +35.60
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/cumulus_pallet_xcmp_queue.rs take_first_concatenated_xcm 3.99us 5.37us +34.46
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_nfts.rs approve_transfer 169.76us 227.59us +34.06
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/cumulus_pallet_xcmp_queue.rs take_first_concatenated_xcm 4.06us 5.40us +32.87
cumulus/parachains/runtimes/people/people-westend/src/weights/cumulus_pallet_xcmp_queue.rs take_first_concatenated_xcm 4.08us 5.40us +32.22
cumulus/parachains/runtimes/people/people-rococo/src/weights/cumulus_pallet_xcmp_queue.rs take_first_concatenated_xcm 4.09us 5.37us +31.17
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_multisig.rs as_multi_create 196.45us 256.06us +30.34
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/frame_system_extensions.rs check_non_zero_sender 572.00ns 742.00ns +29.72
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_utility.rs batch 3.14ms 3.96ms +26.21
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/cumulus_pallet_xcmp_queue.rs take_first_concatenated_xcm 4.08us 5.14us +26.19
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs update_payee 214.00us 267.08us +24.80
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs migrate_currency 452.00us 561.22us +24.16
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_utility.rs batch_all 3.36ms 4.17ms +24.10
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_multisig.rs as_multi_approve 180.56us 223.96us +24.04
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_asset_conversion_tx_payment.rs charge_asset_tx_payment_zero 883.00ns 1.09us +23.56
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_utility.rs force_batch 3.13ms 3.85ms +23.02
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_multisig.rs approve_as_multi_create 173.70us 212.78us +22.50
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_fast_unstake.rs on_idle_unstake 47.39ms 57.84ms +22.07
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_utility.rs dispatch_as 7.20us 8.75us +21.52
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs expect_pallet 8.27us 10.02us +21.27
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_utility.rs if_else 8.90us 10.72us +20.45
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_utility.rs dispatch_as_fallible 7.20us 8.67us +20.37
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_nfts.rs create_swap 171.06us 205.43us +20.09
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs set_payee 187.00us 224.55us +20.08
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_multisig.rs as_multi_complete 329.85us 394.73us +19.67
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_nfts.rs pay_tips 23.23us 27.79us +19.63
substrate/frame/staking-async/src/weights.rs update_payee 214.00us 256.00us +19.63
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_multisig.rs poke_deposit 172.08us 205.59us +19.48
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_proxy.rs proxy_announced 323.63us 385.87us +19.23
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_multisig.rs cancel_as_multi 172.54us 205.67us +19.20
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_proxy.rs announce 319.66us 380.95us +19.17
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs restore_ledger 416.00us 492.57us +18.41
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/frame_system_extensions.rs check_spec_version 483.00ns 568.00ns +17.60
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_utility.rs as_derivative 4.82us 5.67us +17.55
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_balances.rs burn_allow_death 32.42us 37.99us +17.17
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_fast_unstake.rs deregister 369.73us 432.88us +17.08
cumulus/pallets/xcmp-queue/src/weights.rs take_first_concatenated_xcm 5.98us 7.00us +17.04
substrate/frame/revive/src/weights.rs instr 1.31ms 1.53ms +16.88
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_nfts.rs cancel_swap 175.45us 205.02us +16.85
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs force_new_era_always 111.00us 129.68us +16.83
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_conviction_voting.rs unlock 510.44us 591.83us +15.95
substrate/frame/staking-async/src/weights.rs force_no_eras 113.00us 131.00us +15.93
substrate/frame/staking-async/src/weights.rs force_new_era 112.00us 129.00us +15.18
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/frame_system_extensions.rs weight_reclaim 2.37us 2.73us +15.05
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_balances.rs force_adjust_total_issuance 6.68us 7.69us +15.02
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs unpaid_execution 783.00ns 900.00ns +14.94
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_multisig.rs approve_as_multi_approve 156.71us 179.55us +14.57
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs force_no_eras 113.00us 129.42us +14.53
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs force_new_era 114.00us 130.53us +14.50
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs clear_transact_status 842.00ns 964.00ns +14.49
substrate/frame/revive/src/weights.rs seal_return_data_size 262.00ns 298.00ns +13.74
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_vesting.rs vest_unlocked 322.39us 364.86us +13.17
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs set_topic 768.00ns 868.00ns +13.02
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_migrations.rs on_init_loop 229.00ns 257.00ns +12.23
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs set_fees_mode 779.00ns 872.00ns +11.94
substrate/frame/staking-async/src/weights.rs set_controller 414.00us 463.00us +11.84
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_vesting.rs vest_locked 322.92us 360.96us +11.78
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/frame_system_extensions.rs check_weight 4.09us 4.57us +11.77
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_empty_xcmp_message_at 530.03us 592.30us +11.75
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs clear_topic 775.00ns 866.00ns +11.74
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs set_controller 419.00us 468.00us +11.69
substrate/frame/revive/src/weights.rs bn128_add 15.20us 16.97us +11.61
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs kick 17.31ms 19.28ms +11.39
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_proxy.rs proxy 41.07us 45.69us +11.27
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs asset_claimer 829.00ns 920.00ns +10.98
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs set_appendix 805.00ns 892.00ns +10.81
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_balances.rs burn_keep_alive 22.32us 24.73us +10.76
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs expect_transact_status 975.00ns 1.08us +10.46
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs validate 928.00us 1.02ms +10.45
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_nfts.rs mint 577.60us 637.72us +10.41
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/frame_system_extensions.rs check_mortality_immortal_transaction 6.44us 7.11us +10.35
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_whitelist.rs remove_whitelisted_call 269.44us 296.54us +10.06
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_vesting.rs vested_transfer 495.18us 544.92us +10.04
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_whitelist.rs dispatch_whitelisted_call_with_preimage 286.04us 314.50us +9.95
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_vesting.rs vest_other_unlocked 451.26us 496.17us +9.95
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_balances.rs force_set_balance_creating 140.33us 154.24us +9.92
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs force_default_xcm_version 2.80us 3.07us +9.75
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs set_error_handler 840.00ns 921.00ns +9.64
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_empty_xcmp_message_at 530.10us 581.03us +9.61
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_asset_conversion_tx_payment.rs charge_asset_tx_payment_native 195.26us 213.59us +9.39
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_vesting.rs vest_other_locked 450.85us 492.82us +9.31
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_whitelist.rs whitelist_call 271.80us 296.72us +9.17
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_vesting.rs force_remove_vesting_schedule 456.86us 498.59us +9.13
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_ambassador_core.rs submit_evidence 244.69us 266.89us +9.07
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_vesting.rs force_vested_transfer 620.56us 676.68us +9.04
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs withdraw_unbonded_update 586.00us 638.75us +9.00
substrate/frame/revive/src/weights.rs seal_call_data_load 289.00ns 315.00ns +9.00
polkadot/runtime/westend/src/weights/polkadot_runtime_parachains_paras.rs remove_upgrade_cooldown 259.57us 282.76us +8.93
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_assets_pool.rs total_issuance 31.03us 33.79us +8.89
cumulus/parachains/runtimes/people/people-rococo/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_empty_xcmp_message_at 526.78us 573.48us +8.87
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_empty_xcmp_message_at 529.12us 576.03us +8.87
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_assets_local.rs total_issuance 31.16us 33.87us +8.68
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/frame_system_extensions.rs check_genesis 3.49us 3.77us +8.26
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs reserve_asset_deposited 1.66us 1.79us +8.16
substrate/frame/revive/src/weights.rs hash_blake2_256 1.52ms 1.64ms +7.91
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs deprecate_controller_batch 324.98ms 350.46ms +7.84
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/frame_system.rs authorize_upgrade 113.03us 121.51us +7.50
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_n_full_pages 19.46ms 20.91ms +7.48
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs update_bond 196.45us 211.02us +7.41
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs expect_error 3.84us 4.13us +7.36
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/cumulus_pallet_xcmp_queue.rs on_idle_good_msg 831.75us 892.68us +7.33
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs bond 684.00us 734.02us +7.31
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_conviction_voting.rs remove_other_vote 245.94us 263.76us +7.24
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_balances.rs transfer_allow_death 176.58us 189.29us +7.20
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs expect_origin 3.81us 4.08us +7.12
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_empty_xcmp_message_at 554.48us 592.60us +6.87
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs clear_error 810.00ns 865.00ns +6.79
cumulus/parachains/runtimes/people/people-westend/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_empty_xcmp_message_at 552.99us 590.30us +6.75
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_empty_xcmp_message_at 553.98us 590.50us +6.59
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm_bridge_hub_router.rs report_bridge_status 135.16us 143.96us +6.52
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/frame_system_extensions.rs check_mortality_mortal_transaction 6.49us 6.91us +6.47
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_balances.rs force_transfer 303.61us 322.50us +6.22
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_ambassador_core.rs approve 391.64us 415.66us +6.13
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_balances.rs transfer_keep_alive 166.06us 175.90us +5.92
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs descend_origin 828.00ns 877.00ns +5.92
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_n_full_pages 19.45ms 20.59ms +5.88
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_proxy.rs kill_pure 149.76us 158.32us +5.72
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_n_full_pages 19.42ms 20.51ms +5.65
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_balances.rs transfer_all 175.79us 185.58us +5.57
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_balances.rs force_set_balance_killing 147.44us 155.52us +5.48
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs set_validator_count 103.00us 108.52us +5.36
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm_bridge_hub_router.rs on_initialize_when_non_congested 187.38us 197.32us +5.31
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs transact 8.38us 8.81us +5.22
substrate/frame/revive/src/weights.rs seal_base_fee 269.00ns 283.00ns +5.20
substrate/frame/revive/src/weights.rs seal_call_data_size 273.00ns 287.00ns +5.13
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_transaction_payment.rs charge_transaction_payment 295.04us 310.06us +5.09
cumulus/parachains/runtimes/people/people-rococo/src/weights/cumulus_pallet_xcmp_queue.rs on_idle_good_msg 828.90us 870.50us +5.02
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_asset_conversion_tx_payment.rs charge_asset_tx_payment_asset 767.40us 805.86us +5.01
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/xcm/pallet_xcm_benchmarks_generic.rs alias_origin 859.00ns 902.00ns +5.01
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_balances.rs upgrade_accounts 140.32ms 147.34ms +5.00
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_n_empty_xcmp_messages 560.87us 532.37us -5.08
cumulus/parachains/runtimes/coretime/coretime-rococo/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_n_empty_xcmp_messages 560.49us 531.58us -5.16
cumulus/parachains/runtimes/people/people-rococo/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_1000_small_xcmp_messages 588.52us 557.99us -5.19
substrate/frame/staking-async/src/weights.rs payout_stakers_alive_staked 280.27ms 265.65ms -5.22
substrate/frame/staking-async/src/weights.rs restore_ledger 414.00us 392.00us -5.31
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_message_queue.rs reap_page 370.46us 349.43us -5.68
substrate/frame/staking-async/src/weights.rs reap_stash 1.65ms 1.55ms -6.06
substrate/frame/revive/src/weights.rs seal_now 276.00ns 259.00ns -6.16
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/cumulus_pallet_xcmp_queue.rs enqueue_n_empty_xcmp_messages 565.44us 530.00us -6.27
substrate/frame/staking-async/src/weights.rs set_payee 183.00us 171.00us -6.56
substrate/frame/staking-async/src/weights.rs migrate_currency 452.00us 421.00us -6.86
cumulus/pallets/xcmp-queue/src/weights.rs enqueue_1000_small_xcmp_messages 481.00us 448.00us -6.86
substrate/frame/staking-async/src/weights.rs bond_extra 1.20ms 1.11ms -7.02
cumulus/pallets/xcmp-queue/src/weights.rs enqueue_n_empty_xcmp_messages 544.86us 503.97us -7.51
substrate/frame/revive/src/weights.rs seal_get_transient_storage 2.44us 2.24us -8.42
substrate/frame/revive/src/weights.rs set_transient_storage_full 2.13us 1.95us -8.48
substrate/frame/staking-async/src/weights.rs rebond 1.10ms 1.01ms -8.69
substrate/frame/revive/src/weights.rs seal_contains_transient_storage 2.12us 1.94us -8.70
substrate/frame/revive/src/weights.rs get_transient_storage_full 1.89us 1.72us -9.31
substrate/frame/revive/src/weights.rs seal_take_transient_storage 2.93us 2.66us -9.33
substrate/frame/revive/src/weights.rs set_transient_storage_empty 1.74us 1.58us -9.58
substrate/frame/revive/src/weights.rs seal_address 352.00ns 318.00ns -9.66
substrate/frame/staking-async/src/weights.rs withdraw_unbonded_kill 1.75ms 1.58ms -9.84
substrate/frame/staking-async/src/weights.rs bond 647.00us 583.00us -9.89
substrate/frame/revive/src/weights.rs seal_balance 13.43us 12.07us -10.16
substrate/frame/revive/src/weights.rs seal_set_transient_storage 2.92us 2.61us -10.44
substrate/frame/revive/src/weights.rs get_transient_storage_empty 1.75us 1.55us -11.36
polkadot/runtime/westend/src/weights/pallet_session.rs set_keys 1.10ms 973.69us -11.60
substrate/frame/revive/src/weights.rs seal_clear_transient_storage 2.75us 2.42us -12.00
polkadot/runtime/westend/src/weights/pallet_session.rs purge_keys 924.31us 805.44us -12.86
substrate/frame/revive/src/weights.rs seal_gas_limit 523.00ns 454.00ns -13.19
polkadot/runtime/westend/src/weights/polkadot_runtime_parachains_disputes_slashing.rs report_dispute_lost_unsigned 1.44ms 1.22ms -15.09
substrate/frame/revive/src/weights.rs rollback_transient_storage 1.38us 1.16us -15.97
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_treasury.rs payout 1.39ms 1.16ms -16.86
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_vesting.rs unlocking_merge_schedules 453.58us 366.44us -19.21
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/snowbridge_pallet_system_frontend.rs add_tip 964.00us 777.49us -19.35
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_vesting.rs not_unlocking_merge_schedules 450.87us 363.07us -19.47
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/cumulus_pallet_parachain_system.rs enqueue_inbound_downward_messages 455.11ms 361.81ms -20.50
substrate/frame/revive/src/weights.rs blake2f 35.80us 28.45us -20.53
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_conviction_voting.rs delegate 89.13ms 70.72ms -20.66
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_conviction_voting.rs undelegate 88.55ms 70.10ms -20.84
polkadot/runtime/westend/src/weights/polkadot_runtime_parachains_paras.rs authorize_force_set_current_code_hash 138.80us 108.40us -21.90
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_conviction_voting.rs vote_existing 1.01ms 757.63us -25.10
substrate/frame/staking-async/src/weights.rs withdraw_unbonded_update 584.00us 435.00us -25.51
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_fast_unstake.rs on_idle_check 75.82ms 56.13ms -25.97
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_asset_rate.rs create 194.00us 140.75us -27.45
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_asset_rate.rs update 196.00us 141.31us -27.90
substrate/frame/staking-async/src/weights.rs rc_on_session_report 1.58ms 1.12ms -29.29
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_treasury.rs spend 472.00us 327.85us -30.54
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_treasury.rs spend_local 541.00us 364.79us -32.57
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_asset_rate.rs remove 215.00us 142.21us -33.86
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_treasury.rs remove_approval 207.00us 132.70us -35.89
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_conviction_voting.rs remove_vote 704.98us 435.75us -38.19
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/frame_system.rs apply_authorized_upgrade 185.71ms 113.34ms -38.97
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/frame_system.rs set_code 180.60ms 109.08ms -39.60
substrate/frame/revive/src/weights.rs seal_terminate 887.29us 491.52us -44.60
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_fast_unstake.rs register_fast_unstake 1.40ms 772.21us -44.86
substrate/frame/revive/src/weights.rs set_code 791.76us 395.47us -50.05
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_treasury.rs void_spend 285.00us 141.37us -50.40
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_treasury.rs check_status 531.00us 198.14us -62.69
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs apply_slash 327.57ms 74.86ms -77.15
substrate/frame/revive/src/weights.rs seal_set_code_hash 661.47us 134.99us -79.59
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/frame_system.rs remark_with_event 49.71ms 8.21ms -83.49
substrate/frame/staking-async/src/weights.rs apply_slash 326.26ms 40.58ms -87.56
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/frame_system.rs remark 43.58ms 2.09ms -95.21
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_treasury.rs on_initialize_proposals 94.62ms 365.66us -99.61
polkadot/runtime/westend/src/weights/pallet_xcm.rs reserve_transfer_assets 18446744.07s 753.23us -100.00
polkadot/runtime/rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 18446744.07s 616.31us -100.00
substrate/frame/staking-async/src/weights.rs prune_era 554.12ms Added
substrate/frame/staking-async/runtimes/parachain/src/weights/pallet_staking_async.rs prune_era 550.69ms Added
substrate/frame/staking-async/ah-client/src/weights.rs process_buffered_offences 385.71us Added
substrate/frame/revive/src/weights.rs seal_weight_to_fee 1.71us Added
substrate/frame/revive/src/weights.rs seal_weight_left 767.00ns Added
substrate/frame/revive/src/weights.rs seal_to_account_id 35.07us Added
substrate/frame/revive/src/weights.rs seal_own_code_hash 308.00ns Added
substrate/frame/revive/src/weights.rs seal_minimum_balance 314.00ns Added
substrate/frame/revive/src/weights.rs seal_hash_blake2_128 409.68us Added
substrate/frame/revive/src/weights.rs seal_caller_is_root 289.00ns Added
substrate/frame/revive/src/weights.rs seal_caller_is_origin 355.00ns Added
substrate/frame/revive/src/weights.rs call_with_code_per_byte 649.22us Added
polkadot/runtime/westend/src/weights/pallet_staking_async_ah_client.rs process_buffered_offences 301.32us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_staking_async.rs prune_era 543.04ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs v1_migration_step 263.40us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs upload_code 1.89ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs unmap_account 276.88us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs sha2_256 358.36us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs set_transient_storage_full 2.18us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs set_transient_storage_empty 1.92us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs set_storage_full 171.12us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs set_storage_empty 135.82us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs set_code 399.51us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_weight_to_fee 2.55us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_weight_left 837.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_value_transferred 357.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_to_account_id 31.45us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_terminate 490.31us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_take_transient_storage 3.23us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_take_storage 138.13us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_sr25519_verify 1.42ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_set_transient_storage 3.15us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_set_storage 137.41us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_set_immutable_data 104.96us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_set_code_hash 137.38us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_return_data_size 348.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_return 62.91us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_ref_time_left 366.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_own_code_hash 418.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_origin 408.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_now 341.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_minimum_balance 338.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_instantiate 1.68ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_hash_keccak_256 964.45us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_hash_blake2_128 418.15us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_get_transient_storage 2.69us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_get_storage 36.56us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_get_immutable_data 34.70us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_gas_price 357.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_gas_limit 736.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_ecdsa_to_eth_address 13.40us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_deposit_event 6.98us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_delegate_call 113.31us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_copy_to_contract 62.94us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_contains_transient_storage 2.45us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_contains_storage 35.70us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_code_size 65.16us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_code_hash 34.21us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_clear_transient_storage 3.09us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_clear_storage 137.15us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_caller_is_root 372.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_caller_is_origin 466.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_caller 483.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_call_precompile 289.31us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_call_data_size 356.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_call_data_load 407.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_call_data_copy 39.68us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_call 458.75us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_block_number 361.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_block_hash 29.08us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_block_author 78.51us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_base_fee 393.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_balance_of 99.61us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_balance 17.71us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs seal_address 429.00ns Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs rollback_transient_storage 1.58us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs ripemd_160 1.00ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs remove_code 406.98us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs on_process_deletion_queue_batch 28.11us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs on_initialize_per_trie_key 129.71ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs noop_host_fn 299.81us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs map_account 314.29us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs instr_empty_loop 7.25ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs instr 1.23ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs instantiate_with_code 4.18ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs instantiate 1.95ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs identity 39.91us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs hash_blake2_256 397.06us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs get_transient_storage_full 1.97us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs get_transient_storage_empty 1.84us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs get_storage_full 68.96us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs get_storage_empty 34.10us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs eth_instantiate_with_code 2.86ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs eth_call 630.69us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs ecdsa_recover 48.45us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs dispatch_as_fallback_account 6.37us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs call_with_code_per_byte 676.60us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs call 477.58us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs bn128_pairing 124.85ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs bn128_mul 990.12us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs bn128_add 16.53us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs blake2f 37.06us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_revive.rs basic_block_compilation 514.82us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_election_provider_multi_block_unsigned.rs validate_unsigned 223.61us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_election_provider_multi_block_unsigned.rs submit_unsigned 1.27ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_election_provider_multi_block_signed.rs unset_page 675.41us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_election_provider_multi_block_signed.rs submit_page 692.42us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_election_provider_multi_block_signed.rs register_not_full 508.63us Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_election_provider_multi_block_signed.rs register_eject 4.90ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_election_provider_multi_block_signed.rs clear_old_round_data 4.55ms Added
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_election_provider_multi_block_signed.rs bail 4.57ms Added
Command output:

✅ Successful benchmarks of runtimes/pallets:
-- asset-hub-westend: ['pallet_whitelist', 'pallet_assets', 'pallet_election_provider_multi_block_unsigned', 'pallet_multisig', 'pallet_vesting', 'pallet_fast_unstake', 'frame_system_extensions', 'pallet_timestamp', 'pallet_session', 'pallet_transaction_payment', 'pallet_xcm_benchmarks::generic', 'pallet_message_queue', 'pallet_balances', 'pallet_uniques', 'pallet_asset_conversion_tx_payment', 'frame_system', 'pallet_xcm_benchmarks::fungible', 'pallet_nft_fractionalization', 'pallet_conviction_voting', 'pallet_migrations', 'pallet_asset_conversion_ops', 'pallet_bags_list', 'pallet_staking_async', 'pallet_proxy', 'pallet_treasury', 'pallet_asset_conversion', 'pallet_nfts', 'cumulus_pallet_xcmp_queue', 'pallet_revive', 'cumulus_pallet_weight_reclaim', 'pallet_utility', 'pallet_election_provider_multi_block_signed', 'pallet_asset_rate', 'cumulus_pallet_parachain_system', 'pallet_xcm', 'pallet_asset_rewards', 'pallet_collator_selection', 'pallet_xcm_bridge_hub_router', 'snowbridge_pallet_system_frontend']

@paritytech-workflow-stopper
Copy link

All GitHub workflows were cancelled due to failure one of the required jobs.
Failed workflow url: https://github.com/paritytech/polkadot-sdk/actions/runs/18240728104
Failed job name: test-linux-stable

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants