Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pallet_xcm::execute weights #6919

Merged
merged 12 commits into from
Dec 18, 2024
Merged

pallet_xcm::execute weights #6919

merged 12 commits into from
Dec 18, 2024

Conversation

bkontur
Copy link
Contributor

@bkontur bkontur commented Dec 17, 2024

Relates to: #6918

@bkontur bkontur added R0-silent Changes should not be mentioned in any release notes T6-XCM This PR/Issue is related to XCM. T12-benchmarks This PR/Issue is related to benchmarking and weights. labels Dec 17, 2024
@bkontur bkontur self-assigned this Dec 17, 2024
@bkontur
Copy link
Contributor Author

bkontur commented Dec 17, 2024

/cmd --help

Copy link

Command help:
usage: /cmd  [--help] [--quiet] [--clean] [--image IMAGE]
             {bench,bench-omni,fmt,update-ui,prdoc} ...

A command runner for polkadot-sdk repo

positional arguments:
  {bench,bench-omni,fmt,update-ui,prdoc}
                        a command to run
    bench               Runs benchmarks (old CLI)
    bench-omni          Runs benchmarks (frame omni bencher)
    fmt                 Formats code (cargo +nightly-VERSION fmt) and configs
                        (taplo format)
    update-ui           Updates UI tests
    prdoc               Generates PR documentation

options:
  --help                help for help if you need some help
  --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'

### Command 'bench'
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,contracts-rococo,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,contracts-rococo,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


### Command 'bench-omni'
usage: /cmd bench-omni [-h] [--quiet] [--clean] [--image IMAGE]
                       [--runtime [{dev,westend,rococo,asset-hub-westend,asset-hub-rococo,bridge-hub-rococo,bridge-hub-westend,collectives-westend,contracts-rococo,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,contracts-rococo,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-omni

 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-omni --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-omni --runtime westend --fail-fast
 
 Does not output anything and cleans up the previous bot's & author command triggering comments in PR 
 /cmd bench-omni --runtime westend rococo --pallet pallet_balances pallet_multisig --quiet --clean


### Command 'fmt'
usage: /cmd fmt [-h] [--quiet] [--clean] [--image IMAGE]

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'


### Command 'update-ui'
usage: /cmd update-ui [-h] [--quiet] [--clean] [--image IMAGE]

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'


### Command 'prdoc'
usage: /cmd prdoc [-h] [--pr PR]
                  [--audience [{runtime_dev,runtime_user,node_dev,node_operator} ...]]
                  [--bump {patch,minor,major,silent,ignore,no_change}]
                  [--force]

options:
  -h, --help            show this help message and exit
  --pr PR               The PR number to generate the PrDoc for.
  --audience [{runtime_dev,runtime_user,node_dev,node_operator} ...]
                        The audience of whom the changes may concern. Example:
                        --audience runtime_dev node_dev
  --bump {patch,minor,major,silent,ignore,no_change}
                        A default bump level for all crates. Example: --bump
                        patch
  --force               Whether to overwrite any existing PrDoc.

@bkontur
Copy link
Contributor Author

bkontur commented Dec 17, 2024

/cmd bench-omni --pallet pallet_xcm

Copy link

Command "bench-omni --pallet pallet_xcm" has started 🚀 See logs here

@bkontur bkontur added the A4-needs-backport Pull request must be backported to all maintained releases. label Dec 17, 2024
Copy link

Command "bench-omni --pallet pallet_xcm" has failed ❌! See logs here

Command output:

✅ Successful benchmarks of runtimes/pallets:
-- westend: ['pallet_xcm']
-- rococo: ['pallet_xcm']
-- asset-hub-westend: ['pallet_xcm']
-- asset-hub-rococo: ['pallet_xcm']
-- bridge-hub-rococo: ['pallet_xcm']
-- bridge-hub-westend: ['pallet_xcm']
-- collectives-westend: ['pallet_xcm']

Copy link

Command "bench-omni --pallet pallet_xcm" has started 🚀 See logs here

Copy link

Command "bench-omni --pallet pallet_xcm" has finished ✅ See logs here

Subweight results:
File Extrinsic Old New Change [%]
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_fellowship_core.rs promote_fast - - ERROR
cumulus/pallets/collator-selection/src/weights.rs leave_intent - - ERROR
cumulus/pallets/collator-selection/src/weights.rs new_session - - ERROR
cumulus/pallets/collator-selection/src/weights.rs register_as_candidate - - ERROR
cumulus/pallets/collator-selection/src/weights.rs set_invulnerables - - ERROR
cumulus/pallets/collator-selection/src/weights.rs take_candidate_slot - - ERROR
cumulus/pallets/collator-selection/src/weights.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_ambassador_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
polkadot/runtime/westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmen - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmms - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs execute 7.79us 41.39us +431.28
polkadot/runtime/rococo/src/weights/pallet_xcm.rs execute 7.34us 38.14us +419.53
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_default_xcm_version 2.00us 3.86us +93.33
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_default_xcm_version 2.05us 3.75us +82.76
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 111.94us 148.59us +32.73
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.25us 147.87us +31.74
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.30us 147.56us +31.40
polkadot/runtime/rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 112.27us 147.21us +31.12
polkadot/runtime/westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.67us 147.27us +30.71
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.96us 145.99us +30.39
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 112.61us 146.58us +30.17
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs claim_assets 159.67us 203.39us +27.38
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs claim_assets 162.71us 206.43us +26.87
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs claim_assets 164.12us 207.67us +26.53
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs claim_assets 161.98us 204.91us +26.50
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs claim_assets 160.41us 202.43us +26.19
polkadot/runtime/westend/src/weights/pallet_xcm.rs claim_assets 160.30us 201.65us +25.79
polkadot/runtime/rococo/src/weights/pallet_xcm.rs claim_assets 160.51us 201.87us +25.77
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs already_notified_target 171.07us 211.08us +23.39
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs already_notified_target 170.16us 208.15us +22.33
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs already_notified_target 171.39us 209.55us +22.27
polkadot/runtime/rococo/src/weights/pallet_xcm.rs already_notified_target 168.90us 206.40us +22.20
polkadot/runtime/westend/src/weights/pallet_xcm.rs already_notified_target 169.66us 206.72us +21.85
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs already_notified_target 169.69us 206.17us +21.50
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs already_notified_target 170.16us 206.38us +21.28
polkadot/runtime/rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 536.85us 650.38us +21.15
polkadot/runtime/rococo/src/weights/pallet_xcm.rs transfer_assets 540.63us 654.39us +21.04
polkadot/runtime/rococo/src/weights/pallet_xcm.rs teleport_assets 540.99us 652.46us +20.61
polkadot/runtime/westend/src/weights/pallet_xcm.rs transfer_assets 664.43us 787.03us +18.45
polkadot/runtime/westend/src/weights/pallet_xcm.rs reserve_transfer_assets 660.65us 780.93us +18.21
polkadot/runtime/westend/src/weights/pallet_xcm.rs teleport_assets 666.20us 783.93us +17.67
polkadot/runtime/westend/src/weights/pallet_xcm.rs send 326.17us 379.13us +16.24
polkadot/runtime/rococo/src/weights/pallet_xcm.rs send 325.92us 374.43us +14.88
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs teleport_assets 595.65us 675.93us +13.48
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs teleport_assets 589.73us 667.53us +13.19
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs transfer_assets 589.73us 666.94us +13.09
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs teleport_assets 595.47us 672.52us +12.94
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs teleport_assets 594.84us 671.50us +12.89
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs transfer_assets 598.62us 673.38us +12.49
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs transfer_assets 592.31us 664.31us +12.16
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs teleport_assets 592.82us 664.61us +12.11
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs send 372.33us 416.19us +11.78
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs transfer_assets 1.15ms 1.28ms +11.66
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs transfer_assets 1.15ms 1.27ms +11.24
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs take_response 151.12us 167.95us +11.14
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.66us 382.66us +11.02
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_supported_version 344.55us 382.32us +10.96
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 344.70us 381.91us +10.79
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.54us 381.36us +10.69
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 344.50us 381.14us +10.64
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 341.67us 377.94us +10.62
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_supported_version 344.46us 380.99us +10.61
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.09us 377.93us +10.47
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_supported_version 341.62us 377.33us +10.46
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 343.55us 379.23us +10.38
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_supported_version 343.85us 379.55us +10.38
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_supported_version 342.17us 377.58us +10.35
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.19us 379.81us +10.35
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_version_notifiers 342.45us 377.40us +10.21
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.67us 377.61us +10.20
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 343.09us 377.93us +10.15
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_supported_version 343.21us 377.74us +10.06
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 343.27us 377.79us +10.06
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 343.16us 377.67us +10.06
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_supported_version 342.96us 377.38us +10.04
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_unsubscribe_version_notify 561.10us 617.34us +10.02
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 343.01us 377.32us +10.00
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 847.97us 929.03us +9.56
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs reserve_transfer_assets 847.89us 927.99us +9.45
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_unsubscribe_version_notify 563.57us 613.66us +8.89
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_subscribe_version_notify 681.80us 736.50us +8.02
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_subscribe_version_notify 681.96us 734.02us +7.63
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs take_response 151.30us 162.51us +7.41
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs take_response 150.87us 161.44us +7.01
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs take_response 150.48us 160.93us +6.95
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs take_response 150.52us 160.77us +6.81
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 711.91us 759.65us +6.70
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 710.87us 757.45us +6.55
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 711.27us 757.84us +6.55
polkadot/runtime/rococo/src/weights/pallet_xcm.rs take_response 147.93us 157.34us +6.36
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 709.60us 753.46us +6.18
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 709.77us 753.60us +6.18
polkadot/runtime/westend/src/weights/pallet_xcm.rs take_response 148.31us 156.57us +5.57
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 666.07us 408.90us -38.61
polkadot/runtime/westend/src/weights/pallet_xcm.rs notify_current_targets 481.54us 295.43us -38.65
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 665.59us 405.65us -39.05
polkadot/runtime/rococo/src/weights/pallet_xcm.rs notify_current_targets 480.97us 292.09us -39.27
polkadot/runtime/westend/src/weights/pallet_xcm.rs execute 18446744.07s 37.97us -100.00
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs execute 18446744.07s 41.34us -100.00
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs execute 18446744.07s 40.42us -100.00
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs execute 18446744.07s 40.69us -100.00
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs execute 18446744.07s 43.05us -100.00
Command output:

✅ Successful benchmarks of runtimes/pallets:
-- westend: ['pallet_xcm']
-- rococo: ['pallet_xcm']
-- asset-hub-westend: ['pallet_xcm']
-- asset-hub-rococo: ['pallet_xcm']
-- bridge-hub-rococo: ['pallet_xcm']
-- bridge-hub-westend: ['pallet_xcm']
-- collectives-westend: ['pallet_xcm']

@bkontur
Copy link
Contributor Author

bkontur commented Dec 17, 2024

/cmd bench --pallet pallet_xcm

Copy link

Command "bench --pallet pallet_xcm" has started 🚀 See logs here

Copy link

Command "bench --pallet pallet_xcm" has failed ❌! See logs here

Command output:

✅ Successful benchmarks of runtimes/pallets:
-- westend: ['pallet_xcm']
-- rococo: ['pallet_xcm']
-- asset-hub-westend: ['pallet_xcm']
-- asset-hub-rococo: ['pallet_xcm']
-- bridge-hub-rococo: ['pallet_xcm']
-- bridge-hub-westend: ['pallet_xcm']
-- collectives-westend: ['pallet_xcm']
-- coretime-rococo: ['pallet_xcm']
-- coretime-westend: ['pallet_xcm']
-- people-rococo: ['pallet_xcm']
-- people-westend: ['pallet_xcm']

@bkontur
Copy link
Contributor Author

bkontur commented Dec 18, 2024

/cmd bench --pallet pallet_xcm --runtime westend

@bkontur
Copy link
Contributor Author

bkontur commented Dec 18, 2024

/cmd bench --pallet pallet_xcm --runtime asset-hub-westend

@bkontur
Copy link
Contributor Author

bkontur commented Dec 18, 2024

/cmd bench --pallet pallet_xcm --runtime coretime-westend

@bkontur
Copy link
Contributor Author

bkontur commented Dec 18, 2024

/cmd bench --pallet pallet_xcm --runtime bridge-hub-westend

@bkontur
Copy link
Contributor Author

bkontur commented Dec 18, 2024

/cmd bench --pallet pallet_xcm --runtime collectives-westend

@bkontur
Copy link
Contributor Author

bkontur commented Dec 18, 2024

/cmd bench --pallet pallet_xcm --runtime people-westend

@bkontur
Copy link
Contributor Author

bkontur commented Dec 18, 2024

/cmd bench --pallet pallet_xcm --runtime glutton-westend

@bkontur
Copy link
Contributor Author

bkontur commented Dec 18, 2024

/cmd bench --pallet pallet_xcm --runtime rococo

@bkontur
Copy link
Contributor Author

bkontur commented Dec 18, 2024

/cmd bench --pallet pallet_xcm --runtime asset-hub-rococo

@bkontur
Copy link
Contributor Author

bkontur commented Dec 18, 2024

/cmd bench --pallet pallet_xcm --runtime bridge-hub-rococo contracts-rococo coretime-rococo people-rococo

Copy link

Command "bench --pallet pallet_xcm --runtime westend" has started 🚀 See logs here

Copy link

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

Copy link

Command "bench --pallet pallet_xcm --runtime rococo" has started 🚀 See logs here

Copy link

Command "bench --pallet pallet_xcm --runtime asset-hub-rococo" has started 🚀 See logs here

Copy link

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

Subweight results:
File Extrinsic Old New Change [%]
cumulus/pallets/collator-selection/src/weights.rs leave_intent - - ERROR
cumulus/pallets/collator-selection/src/weights.rs new_session - - ERROR
cumulus/pallets/collator-selection/src/weights.rs register_as_candidate - - ERROR
cumulus/pallets/collator-selection/src/weights.rs set_invulnerables - - ERROR
cumulus/pallets/collator-selection/src/weights.rs take_candidate_slot - - ERROR
cumulus/pallets/collator-selection/src/weights.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_ambassador_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_fellowship_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
polkadot/runtime/westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmen - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmms - - ERROR
polkadot/runtime/rococo/src/weights/pallet_xcm.rs execute 7.34us 38.14us +419.53
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs execute 7.79us 38.12us +389.33
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs execute 8.84us 37.12us +319.78
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_default_xcm_version 2.00us 3.86us +93.33
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 111.94us 148.59us +32.73
polkadot/runtime/rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 112.27us 147.21us +31.12
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 112.61us 146.58us +30.17
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_default_xcm_version 2.05us 2.63us +28.11
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.25us 143.68us +28.00
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.30us 143.64us +27.90
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.96us 142.78us +27.53
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.20us 141.80us +27.52
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs claim_assets 159.67us 203.39us +27.38
polkadot/runtime/westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.67us 142.91us +26.84
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs claim_assets 164.12us 207.67us +26.53
polkadot/runtime/rococo/src/weights/pallet_xcm.rs claim_assets 160.51us 201.87us +25.77
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs already_notified_target 171.07us 211.08us +23.39
polkadot/runtime/rococo/src/weights/pallet_xcm.rs already_notified_target 168.90us 206.40us +22.20
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs already_notified_target 170.16us 206.38us +21.28
polkadot/runtime/rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 536.85us 650.38us +21.15
polkadot/runtime/rococo/src/weights/pallet_xcm.rs transfer_assets 540.63us 654.39us +21.04
polkadot/runtime/rococo/src/weights/pallet_xcm.rs teleport_assets 540.99us 652.46us +20.61
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs claim_assets 161.98us 194.96us +20.36
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs claim_assets 160.41us 192.75us +20.16
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs claim_assets 162.71us 194.94us +19.81
polkadot/runtime/westend/src/weights/pallet_xcm.rs claim_assets 160.30us 191.91us +19.72
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs already_notified_target 170.16us 203.43us +19.55
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs already_notified_target 168.39us 201.00us +19.37
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs claim_assets 161.03us 191.95us +19.20
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs already_notified_target 171.39us 204.18us +19.13
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs already_notified_target 169.69us 201.79us +18.92
polkadot/runtime/westend/src/weights/pallet_xcm.rs already_notified_target 169.66us 200.87us +18.40
polkadot/runtime/rococo/src/weights/pallet_xcm.rs send 325.92us 374.43us +14.88
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs teleport_assets 589.73us 667.53us +13.19
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs transfer_assets 589.73us 666.94us +13.09
polkadot/runtime/westend/src/weights/pallet_xcm.rs reserve_transfer_assets 660.65us 746.25us +12.96
polkadot/runtime/westend/src/weights/pallet_xcm.rs send 326.17us 368.27us +12.91
polkadot/runtime/westend/src/weights/pallet_xcm.rs transfer_assets 664.43us 750.13us +12.90
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs teleport_assets 594.84us 671.50us +12.89
polkadot/runtime/westend/src/weights/pallet_xcm.rs teleport_assets 666.20us 751.66us +12.83
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs transfer_assets 1.15ms 1.28ms +11.66
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs take_response 151.12us 167.95us +11.14
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.66us 382.66us +11.02
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_supported_version 344.55us 382.32us +10.96
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 344.70us 381.91us +10.79
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 341.67us 377.94us +10.62
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.09us 377.93us +10.47
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_supported_version 341.62us 377.33us +10.46
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 343.09us 377.93us +10.15
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_supported_version 343.21us 377.74us +10.06
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 343.27us 377.79us +10.06
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs send 372.33us 408.42us +9.69
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 847.97us 929.03us +9.56
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 341.30us 373.14us +9.33
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 344.50us 376.53us +9.30
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_supported_version 341.26us 372.93us +9.28
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_supported_version 344.46us 376.27us +9.24
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.54us 376.28us +9.21
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 343.55us 375.05us +9.17
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 341.91us 373.05us +9.11
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_supported_version 343.85us 374.97us +9.05
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs teleport_assets 413.86us 451.29us +9.04
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_supported_version 342.17us 372.86us +8.97
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_unsubscribe_version_notify 563.57us 613.66us +8.89
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.19us 374.77us +8.88
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 343.01us 373.26us +8.82
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_version_notifiers 342.45us 372.42us +8.75
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 343.16us 373.19us +8.75
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.67us 372.55us +8.72
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_supported_version 342.96us 372.65us +8.66
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs teleport_assets 595.65us 643.86us +8.09
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs teleport_assets 592.82us 640.46us +8.04
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs transfer_assets 592.31us 639.36us +7.94
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_unsubscribe_version_notify 561.10us 605.35us +7.89
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs transfer_assets 598.62us 644.52us +7.67
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_subscribe_version_notify 681.96us 734.02us +7.63
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs transfer_assets 1.15ms 1.23ms +7.53
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs teleport_assets 595.47us 638.25us +7.18
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs take_response 150.52us 160.77us +6.81
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 711.91us 759.65us +6.70
polkadot/runtime/rococo/src/weights/pallet_xcm.rs take_response 147.93us 157.34us +6.36
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_subscribe_version_notify 681.80us 724.99us +6.34
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs reserve_transfer_assets 826.26us 878.47us +6.32
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 709.77us 753.60us +6.18
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 711.27us 748.38us +5.22
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 710.87us 747.87us +5.20
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 683.87us 719.01us +5.14
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs reserve_transfer_assets 847.89us 890.48us +5.02
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 665.59us 405.65us -39.05
polkadot/runtime/rococo/src/weights/pallet_xcm.rs notify_current_targets 480.97us 292.09us -39.27
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 666.07us 398.97us -40.10
polkadot/runtime/westend/src/weights/pallet_xcm.rs notify_current_targets 481.54us 287.67us -40.26
polkadot/runtime/westend/src/weights/pallet_xcm.rs execute 18446744.07s 35.01us -100.00
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs execute 18446744.07s 38.57us -100.00
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs execute 18446744.07s 37.68us -100.00
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs execute 18446744.07s 40.69us -100.00
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs execute 18446744.07s 43.05us -100.00
substrate/frame/revive/src/weights.rs seal_input 30.31us Added
Command output:

✅ Successful benchmarks of runtimes/pallets:
-- asset-hub-westend: ['pallet_xcm']

Copy link

Command "bench --pallet pallet_xcm --runtime bridge-hub-rococo contracts-rococo coretime-rococo people-rococo" has started 🚀 See logs here

Copy link

Command "bench --pallet pallet_xcm --runtime rococo" has finished ✅ See logs here

Subweight results:
File Extrinsic Old New Change [%]
cumulus/pallets/collator-selection/src/weights.rs leave_intent - - ERROR
cumulus/pallets/collator-selection/src/weights.rs new_session - - ERROR
cumulus/pallets/collator-selection/src/weights.rs register_as_candidate - - ERROR
cumulus/pallets/collator-selection/src/weights.rs set_invulnerables - - ERROR
cumulus/pallets/collator-selection/src/weights.rs take_candidate_slot - - ERROR
cumulus/pallets/collator-selection/src/weights.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_ambassador_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_fellowship_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
polkadot/runtime/westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmen - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmms - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs execute 7.79us 38.12us +389.33
polkadot/runtime/rococo/src/weights/pallet_xcm.rs execute 7.34us 35.40us +382.18
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs execute 8.84us 37.12us +319.78
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_default_xcm_version 2.00us 2.80us +40.35
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 111.94us 148.59us +32.73
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 112.61us 146.58us +30.17
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_default_xcm_version 2.05us 2.63us +28.11
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.25us 143.68us +28.00
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.30us 143.64us +27.90
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.96us 142.78us +27.53
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.20us 141.80us +27.52
polkadot/runtime/rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 112.27us 143.15us +27.51
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs claim_assets 159.67us 203.39us +27.38
polkadot/runtime/westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.67us 142.91us +26.84
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs claim_assets 164.12us 207.67us +26.53
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs already_notified_target 171.07us 211.08us +23.39
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs already_notified_target 170.16us 206.38us +21.28
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs claim_assets 161.98us 194.96us +20.36
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs claim_assets 160.41us 192.75us +20.16
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs claim_assets 162.71us 194.94us +19.81
polkadot/runtime/westend/src/weights/pallet_xcm.rs claim_assets 160.30us 191.91us +19.72
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs already_notified_target 170.16us 203.43us +19.55
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs already_notified_target 168.39us 201.00us +19.37
polkadot/runtime/rococo/src/weights/pallet_xcm.rs claim_assets 160.51us 191.40us +19.24
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs claim_assets 161.03us 191.95us +19.20
polkadot/runtime/rococo/src/weights/pallet_xcm.rs already_notified_target 168.90us 201.28us +19.17
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs already_notified_target 171.39us 204.18us +19.13
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs already_notified_target 169.69us 201.79us +18.92
polkadot/runtime/westend/src/weights/pallet_xcm.rs already_notified_target 169.66us 200.87us +18.40
polkadot/runtime/rococo/src/weights/pallet_xcm.rs transfer_assets 540.63us 619.64us +14.61
polkadot/runtime/rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 536.85us 613.81us +14.33
polkadot/runtime/rococo/src/weights/pallet_xcm.rs teleport_assets 540.99us 617.91us +14.22
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs teleport_assets 589.73us 667.53us +13.19
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs transfer_assets 589.73us 666.94us +13.09
polkadot/runtime/westend/src/weights/pallet_xcm.rs reserve_transfer_assets 660.65us 746.25us +12.96
polkadot/runtime/westend/src/weights/pallet_xcm.rs send 326.17us 368.27us +12.91
polkadot/runtime/westend/src/weights/pallet_xcm.rs transfer_assets 664.43us 750.13us +12.90
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs teleport_assets 594.84us 671.50us +12.89
polkadot/runtime/westend/src/weights/pallet_xcm.rs teleport_assets 666.20us 751.66us +12.83
polkadot/runtime/rococo/src/weights/pallet_xcm.rs send 325.92us 364.35us +11.79
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs transfer_assets 1.15ms 1.28ms +11.66
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs take_response 151.12us 167.95us +11.14
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.66us 382.66us +11.02
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_supported_version 344.55us 382.32us +10.96
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 344.70us 381.91us +10.79
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 343.09us 377.93us +10.15
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_supported_version 343.21us 377.74us +10.06
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 343.27us 377.79us +10.06
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs send 372.33us 408.42us +9.69
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 847.97us 929.03us +9.56
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 341.30us 373.14us +9.33
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 344.50us 376.53us +9.30
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_supported_version 341.26us 372.93us +9.28
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_supported_version 344.46us 376.27us +9.24
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.54us 376.28us +9.21
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 343.55us 375.05us +9.17
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 341.91us 373.05us +9.11
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_supported_version 343.85us 374.97us +9.05
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_supported_version 341.62us 372.53us +9.05
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs teleport_assets 413.86us 451.29us +9.04
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 341.67us 372.37us +8.98
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.09us 372.79us +8.97
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_supported_version 342.17us 372.86us +8.97
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.19us 374.77us +8.88
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 343.01us 373.26us +8.82
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_version_notifiers 342.45us 372.42us +8.75
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 343.16us 373.19us +8.75
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.67us 372.55us +8.72
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_supported_version 342.96us 372.65us +8.66
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs teleport_assets 595.65us 643.86us +8.09
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs teleport_assets 592.82us 640.46us +8.04
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs transfer_assets 592.31us 639.36us +7.94
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_unsubscribe_version_notify 561.10us 605.35us +7.89
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs transfer_assets 598.62us 644.52us +7.67
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs transfer_assets 1.15ms 1.23ms +7.53
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs teleport_assets 595.47us 638.25us +7.18
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_unsubscribe_version_notify 563.57us 602.04us +6.83
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs take_response 150.52us 160.77us +6.81
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 711.91us 759.65us +6.70
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_subscribe_version_notify 681.80us 724.99us +6.34
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs reserve_transfer_assets 826.26us 878.47us +6.32
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 709.77us 753.60us +6.18
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_subscribe_version_notify 681.96us 723.02us +6.02
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 711.27us 748.38us +5.22
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 710.87us 747.87us +5.20
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 683.87us 719.01us +5.14
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs reserve_transfer_assets 847.89us 890.48us +5.02
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 666.07us 398.97us -40.10
polkadot/runtime/westend/src/weights/pallet_xcm.rs notify_current_targets 481.54us 287.67us -40.26
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 665.59us 395.78us -40.54
polkadot/runtime/rococo/src/weights/pallet_xcm.rs notify_current_targets 480.97us 284.51us -40.85
polkadot/runtime/westend/src/weights/pallet_xcm.rs execute 18446744.07s 35.01us -100.00
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs execute 18446744.07s 38.57us -100.00
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs execute 18446744.07s 37.68us -100.00
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs execute 18446744.07s 40.69us -100.00
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs execute 18446744.07s 43.05us -100.00
substrate/frame/revive/src/weights.rs seal_input 30.31us Added
Command output:

✅ Successful benchmarks of runtimes/pallets:
-- rococo: ['pallet_xcm']

Copy link

Command "bench --pallet pallet_xcm --runtime people-westend" has finished ✅ See logs here

Subweight results:
File Extrinsic Old New Change [%]
cumulus/pallets/collator-selection/src/weights.rs leave_intent - - ERROR
cumulus/pallets/collator-selection/src/weights.rs new_session - - ERROR
cumulus/pallets/collator-selection/src/weights.rs register_as_candidate - - ERROR
cumulus/pallets/collator-selection/src/weights.rs set_invulnerables - - ERROR
cumulus/pallets/collator-selection/src/weights.rs take_candidate_slot - - ERROR
cumulus/pallets/collator-selection/src/weights.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_ambassador_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_fellowship_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
polkadot/runtime/westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmen - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmms - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs execute 7.79us 38.12us +389.33
polkadot/runtime/rococo/src/weights/pallet_xcm.rs execute 7.34us 35.40us +382.18
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs execute 8.84us 37.12us +319.78
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_default_xcm_version 2.00us 2.80us +40.35
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 111.94us 148.59us +32.73
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 112.61us 146.58us +30.17
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.22us 142.58us +28.19
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_default_xcm_version 2.05us 2.63us +28.11
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.25us 143.68us +28.00
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.30us 143.64us +27.90
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.96us 142.78us +27.53
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.20us 141.80us +27.52
polkadot/runtime/rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 112.27us 143.15us +27.51
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs claim_assets 159.67us 203.39us +27.38
polkadot/runtime/westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.67us 142.91us +26.84
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs claim_assets 164.12us 207.67us +26.53
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs already_notified_target 171.07us 211.08us +23.39
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs already_notified_target 170.16us 206.38us +21.28
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs claim_assets 161.98us 194.96us +20.36
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs claim_assets 160.41us 192.75us +20.16
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs claim_assets 162.71us 194.94us +19.81
polkadot/runtime/westend/src/weights/pallet_xcm.rs claim_assets 160.30us 191.91us +19.72
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs claim_assets 160.48us 192.01us +19.65
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs already_notified_target 168.58us 201.62us +19.60
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs already_notified_target 170.16us 203.43us +19.55
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs already_notified_target 168.39us 201.00us +19.37
polkadot/runtime/rococo/src/weights/pallet_xcm.rs claim_assets 160.51us 191.40us +19.24
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs claim_assets 161.03us 191.95us +19.20
polkadot/runtime/rococo/src/weights/pallet_xcm.rs already_notified_target 168.90us 201.28us +19.17
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs already_notified_target 171.39us 204.18us +19.13
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs already_notified_target 169.69us 201.79us +18.92
polkadot/runtime/westend/src/weights/pallet_xcm.rs already_notified_target 169.66us 200.87us +18.40
polkadot/runtime/rococo/src/weights/pallet_xcm.rs transfer_assets 540.63us 619.64us +14.61
polkadot/runtime/rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 536.85us 613.81us +14.33
polkadot/runtime/rococo/src/weights/pallet_xcm.rs teleport_assets 540.99us 617.91us +14.22
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs teleport_assets 589.73us 667.53us +13.19
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs transfer_assets 589.73us 666.94us +13.09
polkadot/runtime/westend/src/weights/pallet_xcm.rs reserve_transfer_assets 660.65us 746.25us +12.96
polkadot/runtime/westend/src/weights/pallet_xcm.rs send 326.17us 368.27us +12.91
polkadot/runtime/westend/src/weights/pallet_xcm.rs transfer_assets 664.43us 750.13us +12.90
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs teleport_assets 594.84us 671.50us +12.89
polkadot/runtime/westend/src/weights/pallet_xcm.rs teleport_assets 666.20us 751.66us +12.83
polkadot/runtime/rococo/src/weights/pallet_xcm.rs send 325.92us 364.35us +11.79
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs transfer_assets 1.15ms 1.28ms +11.66
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs take_response 151.12us 167.95us +11.14
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.66us 382.66us +11.02
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_supported_version 344.55us 382.32us +10.96
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 344.70us 381.91us +10.79
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs send 343.47us 380.11us +10.67
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs teleport_assets 407.29us 450.38us +10.58
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 343.09us 377.93us +10.15
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_supported_version 343.21us 377.74us +10.06
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 343.27us 377.79us +10.06
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs send 372.33us 408.42us +9.69
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 847.97us 929.03us +9.56
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 341.30us 373.14us +9.33
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 344.50us 376.53us +9.30
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_supported_version 341.26us 372.93us +9.28
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_supported_version 344.46us 376.27us +9.24
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.54us 376.28us +9.21
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 343.55us 375.05us +9.17
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 341.91us 373.05us +9.11
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_supported_version 343.85us 374.97us +9.05
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_supported_version 341.62us 372.53us +9.05
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs teleport_assets 413.86us 451.29us +9.04
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.36us 373.18us +9.00
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 341.67us 372.37us +8.98
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 342.12us 372.83us +8.98
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.09us 372.79us +8.97
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_supported_version 342.17us 372.86us +8.97
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.19us 374.77us +8.88
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs migrate_supported_version 342.31us 372.71us +8.88
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 343.01us 373.26us +8.82
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_version_notifiers 342.45us 372.42us +8.75
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 343.16us 373.19us +8.75
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.67us 372.55us +8.72
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_supported_version 342.96us 372.65us +8.66
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs teleport_assets 595.65us 643.86us +8.09
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs teleport_assets 592.82us 640.46us +8.04
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs transfer_assets 592.31us 639.36us +7.94
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_unsubscribe_version_notify 561.10us 605.35us +7.89
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs transfer_assets 598.62us 644.52us +7.67
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs transfer_assets 1.15ms 1.23ms +7.53
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs teleport_assets 595.47us 638.25us +7.18
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_unsubscribe_version_notify 563.57us 602.04us +6.83
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs take_response 150.52us 160.77us +6.81
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 711.91us 759.65us +6.70
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_subscribe_version_notify 681.80us 724.99us +6.34
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs reserve_transfer_assets 826.26us 878.47us +6.32
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 709.77us 753.60us +6.18
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_subscribe_version_notify 681.96us 723.02us +6.02
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 682.17us 718.31us +5.30
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 711.27us 748.38us +5.22
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 710.87us 747.87us +5.20
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 683.87us 719.01us +5.14
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs reserve_transfer_assets 847.89us 890.48us +5.02
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 666.07us 398.97us -40.10
polkadot/runtime/westend/src/weights/pallet_xcm.rs notify_current_targets 481.54us 287.67us -40.26
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 665.59us 395.78us -40.54
polkadot/runtime/rococo/src/weights/pallet_xcm.rs notify_current_targets 480.97us 284.51us -40.85
polkadot/runtime/westend/src/weights/pallet_xcm.rs execute 18446744.07s 35.01us -100.00
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs execute 18446744.07s 37.03us -100.00
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs execute 18446744.07s 38.57us -100.00
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs execute 18446744.07s 37.68us -100.00
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs execute 18446744.07s 40.69us -100.00
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs execute 18446744.07s 43.05us -100.00
substrate/frame/revive/src/weights.rs seal_input 30.31us Added
Command output:

✅ Successful benchmarks of runtimes/pallets:
-- people-westend: ['pallet_xcm']

Copy link

Command "bench --pallet pallet_xcm --runtime glutton-westend" has failed ❌! See logs here

Copy link

Command "bench --pallet pallet_xcm --runtime asset-hub-rococo" has finished ✅ See logs here

Subweight results:
File Extrinsic Old New Change [%]
cumulus/pallets/collator-selection/src/weights.rs leave_intent - - ERROR
cumulus/pallets/collator-selection/src/weights.rs new_session - - ERROR
cumulus/pallets/collator-selection/src/weights.rs register_as_candidate - - ERROR
cumulus/pallets/collator-selection/src/weights.rs set_invulnerables - - ERROR
cumulus/pallets/collator-selection/src/weights.rs take_candidate_slot - - ERROR
cumulus/pallets/collator-selection/src/weights.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_ambassador_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_fellowship_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
polkadot/runtime/westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmen - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmms - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs execute 7.79us 38.12us +389.33
polkadot/runtime/rococo/src/weights/pallet_xcm.rs execute 7.34us 35.40us +382.18
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs execute 8.84us 37.12us +319.78
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_default_xcm_version 2.00us 2.80us +40.35
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 112.61us 146.58us +30.17
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 111.94us 143.62us +28.30
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.22us 142.58us +28.19
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_default_xcm_version 2.05us 2.63us +28.11
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.25us 143.68us +28.00
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.30us 143.64us +27.90
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.96us 142.78us +27.53
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.20us 141.80us +27.52
polkadot/runtime/rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 112.27us 143.15us +27.51
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs claim_assets 159.67us 203.39us +27.38
polkadot/runtime/westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.67us 142.91us +26.84
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs already_notified_target 170.16us 206.38us +21.28
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs claim_assets 161.98us 194.96us +20.36
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs claim_assets 160.41us 192.75us +20.16
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs claim_assets 162.71us 194.94us +19.81
polkadot/runtime/westend/src/weights/pallet_xcm.rs claim_assets 160.30us 191.91us +19.72
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs claim_assets 160.48us 192.01us +19.65
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs already_notified_target 168.58us 201.62us +19.60
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs already_notified_target 170.16us 203.43us +19.55
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs claim_assets 164.12us 196.18us +19.53
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs already_notified_target 168.39us 201.00us +19.37
polkadot/runtime/rococo/src/weights/pallet_xcm.rs claim_assets 160.51us 191.40us +19.24
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs claim_assets 161.03us 191.95us +19.20
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs already_notified_target 171.07us 203.88us +19.18
polkadot/runtime/rococo/src/weights/pallet_xcm.rs already_notified_target 168.90us 201.28us +19.17
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs already_notified_target 171.39us 204.18us +19.13
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs already_notified_target 169.69us 201.79us +18.92
polkadot/runtime/westend/src/weights/pallet_xcm.rs already_notified_target 169.66us 200.87us +18.40
polkadot/runtime/rococo/src/weights/pallet_xcm.rs transfer_assets 540.63us 619.64us +14.61
polkadot/runtime/rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 536.85us 613.81us +14.33
polkadot/runtime/rococo/src/weights/pallet_xcm.rs teleport_assets 540.99us 617.91us +14.22
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs teleport_assets 589.73us 667.53us +13.19
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs transfer_assets 589.73us 666.94us +13.09
polkadot/runtime/westend/src/weights/pallet_xcm.rs reserve_transfer_assets 660.65us 746.25us +12.96
polkadot/runtime/westend/src/weights/pallet_xcm.rs send 326.17us 368.27us +12.91
polkadot/runtime/westend/src/weights/pallet_xcm.rs transfer_assets 664.43us 750.13us +12.90
polkadot/runtime/westend/src/weights/pallet_xcm.rs teleport_assets 666.20us 751.66us +12.83
polkadot/runtime/rococo/src/weights/pallet_xcm.rs send 325.92us 364.35us +11.79
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs send 343.47us 380.11us +10.67
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs teleport_assets 407.29us 450.38us +10.58
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 343.09us 377.93us +10.15
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_supported_version 343.21us 377.74us +10.06
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 343.27us 377.79us +10.06
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs send 372.33us 408.42us +9.69
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 341.30us 373.14us +9.33
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 344.50us 376.53us +9.30
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_supported_version 341.26us 372.93us +9.28
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_supported_version 344.46us 376.27us +9.24
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.54us 376.28us +9.21
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.66us 376.28us +9.17
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 343.55us 375.05us +9.17
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 344.70us 376.15us +9.12
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 341.91us 373.05us +9.11
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_supported_version 344.55us 375.91us +9.10
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_supported_version 343.85us 374.97us +9.05
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_supported_version 341.62us 372.53us +9.05
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs teleport_assets 413.86us 451.29us +9.04
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.36us 373.18us +9.00
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 341.67us 372.37us +8.98
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 342.12us 372.83us +8.98
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.09us 372.79us +8.97
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_supported_version 342.17us 372.86us +8.97
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.19us 374.77us +8.88
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs migrate_supported_version 342.31us 372.71us +8.88
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 343.01us 373.26us +8.82
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_version_notifiers 342.45us 372.42us +8.75
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 343.16us 373.19us +8.75
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.67us 372.55us +8.72
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_supported_version 342.96us 372.65us +8.66
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs teleport_assets 595.65us 643.86us +8.09
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs teleport_assets 592.82us 640.46us +8.04
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs transfer_assets 592.31us 639.36us +7.94
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_unsubscribe_version_notify 561.10us 605.35us +7.89
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs transfer_assets 1.15ms 1.24ms +7.70
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs transfer_assets 598.62us 644.52us +7.67
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs transfer_assets 1.15ms 1.23ms +7.53
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs teleport_assets 594.84us 639.06us +7.43
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs teleport_assets 595.47us 638.25us +7.18
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_unsubscribe_version_notify 563.57us 602.04us +6.83
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs take_response 150.52us 160.77us +6.81
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_subscribe_version_notify 681.80us 724.99us +6.34
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs reserve_transfer_assets 826.26us 878.47us +6.32
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 709.77us 753.60us +6.18
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_subscribe_version_notify 681.96us 723.02us +6.02
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 682.17us 718.31us +5.30
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 847.97us 892.24us +5.22
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 711.27us 748.38us +5.22
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 710.87us 747.87us +5.20
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 683.87us 719.01us +5.14
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 711.91us 747.86us +5.05
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs reserve_transfer_assets 847.89us 890.48us +5.02
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 666.07us 398.97us -40.10
polkadot/runtime/westend/src/weights/pallet_xcm.rs notify_current_targets 481.54us 287.67us -40.26
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 665.59us 395.78us -40.54
polkadot/runtime/rococo/src/weights/pallet_xcm.rs notify_current_targets 480.97us 284.51us -40.85
polkadot/runtime/westend/src/weights/pallet_xcm.rs execute 18446744.07s 35.01us -100.00
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs execute 18446744.07s 37.03us -100.00
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs execute 18446744.07s 38.57us -100.00
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs execute 18446744.07s 37.68us -100.00
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs execute 18446744.07s 40.69us -100.00
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs execute 18446744.07s 39.52us -100.00
substrate/frame/revive/src/weights.rs seal_input 30.31us Added
Command output:

✅ Successful benchmarks of runtimes/pallets:
-- asset-hub-rococo: ['pallet_xcm']

…ime bridge-hub-rococo contracts-rococo coretime-rococo people-rococo'
Copy link

Command "bench --pallet pallet_xcm --runtime bridge-hub-rococo contracts-rococo coretime-rococo people-rococo" has finished ✅ See logs here

Subweight results:
File Extrinsic Old New Change [%]
cumulus/pallets/collator-selection/src/weights.rs leave_intent - - ERROR
cumulus/pallets/collator-selection/src/weights.rs new_session - - ERROR
cumulus/pallets/collator-selection/src/weights.rs register_as_candidate - - ERROR
cumulus/pallets/collator-selection/src/weights.rs set_invulnerables - - ERROR
cumulus/pallets/collator-selection/src/weights.rs take_candidate_slot - - ERROR
cumulus/pallets/collator-selection/src/weights.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_ambassador_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_core_fellowship_fellowship_core.rs promote_fast - - ERROR
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_collator_selection.rs update_bond - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs take_candidate_slot - - ERROR
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_collator_selection.rs update_bond - - ERROR
polkadot/runtime/westend/src/weights/pallet_preimage.rs ensure_updated - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmen - - ERROR
substrate/frame/election-provider-support/src/weights.rs phragmms - - ERROR
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs execute 7.79us 38.12us +389.33
polkadot/runtime/rococo/src/weights/pallet_xcm.rs execute 7.34us 35.40us +382.18
cumulus/parachains/runtimes/coretime/coretime-rococo/src/weights/pallet_xcm.rs execute 8.77us 36.87us +320.23
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs execute 8.84us 37.12us +319.78
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_default_xcm_version 2.00us 2.80us +40.35
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 111.94us 143.62us +28.30
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.22us 142.58us +28.19
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_default_xcm_version 2.05us 2.63us +28.11
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.25us 143.68us +28.00
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.30us 143.64us +27.90
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.96us 142.78us +27.53
cumulus/parachains/runtimes/coretime/coretime-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 111.11us 141.69us +27.52
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs notify_target_migration_fail 111.20us 141.80us +27.52
polkadot/runtime/rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 112.27us 143.15us +27.51
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 111.58us 142.17us +27.42
polkadot/runtime/westend/src/weights/pallet_xcm.rs notify_target_migration_fail 112.67us 142.91us +26.84
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs notify_target_migration_fail 112.61us 142.75us +26.76
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs claim_assets 159.67us 193.03us +20.89
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_xcm.rs claim_assets 159.66us 192.35us +20.48
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs claim_assets 161.98us 194.96us +20.36
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs claim_assets 160.41us 192.75us +20.16
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs claim_assets 162.71us 194.94us +19.81
polkadot/runtime/westend/src/weights/pallet_xcm.rs claim_assets 160.30us 191.91us +19.72
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs claim_assets 160.48us 192.01us +19.65
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs already_notified_target 168.58us 201.62us +19.60
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs already_notified_target 170.16us 203.43us +19.55
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs claim_assets 164.12us 196.18us +19.53
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_xcm.rs already_notified_target 168.82us 201.58us +19.40
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs already_notified_target 168.39us 201.00us +19.37
cumulus/parachains/runtimes/coretime/coretime-rococo/src/weights/pallet_xcm.rs claim_assets 161.14us 192.32us +19.35
polkadot/runtime/rococo/src/weights/pallet_xcm.rs claim_assets 160.51us 191.40us +19.24
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs claim_assets 161.03us 191.95us +19.20
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs already_notified_target 171.07us 203.88us +19.18
polkadot/runtime/rococo/src/weights/pallet_xcm.rs already_notified_target 168.90us 201.28us +19.17
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs already_notified_target 171.39us 204.18us +19.13
cumulus/parachains/runtimes/coretime/coretime-rococo/src/weights/pallet_xcm.rs already_notified_target 167.96us 200.07us +19.12
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs already_notified_target 169.69us 201.79us +18.92
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs already_notified_target 170.16us 201.83us +18.61
polkadot/runtime/westend/src/weights/pallet_xcm.rs already_notified_target 169.66us 200.87us +18.40
polkadot/runtime/rococo/src/weights/pallet_xcm.rs transfer_assets 540.63us 619.64us +14.61
polkadot/runtime/rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 536.85us 613.81us +14.33
polkadot/runtime/rococo/src/weights/pallet_xcm.rs teleport_assets 540.99us 617.91us +14.22
polkadot/runtime/westend/src/weights/pallet_xcm.rs reserve_transfer_assets 660.65us 746.25us +12.96
polkadot/runtime/westend/src/weights/pallet_xcm.rs send 326.17us 368.27us +12.91
polkadot/runtime/westend/src/weights/pallet_xcm.rs transfer_assets 664.43us 750.13us +12.90
polkadot/runtime/westend/src/weights/pallet_xcm.rs teleport_assets 666.20us 751.66us +12.83
polkadot/runtime/rococo/src/weights/pallet_xcm.rs send 325.92us 364.35us +11.79
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_xcm.rs teleport_assets 406.81us 451.06us +10.88
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs send 343.47us 380.11us +10.67
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_xcm.rs send 343.41us 379.91us +10.63
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs teleport_assets 407.29us 450.38us +10.58
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs send 372.33us 408.42us +9.69
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 341.30us 373.14us +9.33
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 344.50us 376.53us +9.30
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_supported_version 341.26us 372.93us +9.28
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_supported_version 344.46us 376.27us +9.24
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.54us 376.28us +9.21
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.66us 376.28us +9.17
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 343.55us 375.05us +9.17
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 344.70us 376.15us +9.12
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 341.91us 373.05us +9.11
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_supported_version 344.55us 375.91us +9.10
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_xcm.rs migrate_supported_version 341.98us 373.01us +9.07
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_supported_version 343.85us 374.97us +9.05
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_supported_version 341.62us 372.53us +9.05
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs teleport_assets 413.86us 451.29us +9.04
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.36us 373.18us +9.00
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 341.67us 372.37us +8.98
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 342.12us 372.83us +8.98
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.09us 372.79us +8.97
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_supported_version 342.17us 372.86us +8.97
cumulus/parachains/runtimes/coretime/coretime-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 341.89us 372.55us +8.97
cumulus/parachains/runtimes/coretime/coretime-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 341.92us 372.45us +8.93
cumulus/parachains/runtimes/coretime/coretime-rococo/src/weights/pallet_xcm.rs migrate_supported_version 341.82us 372.21us +8.89
cumulus/parachains/runtimes/coretime/coretime-rococo/src/weights/pallet_xcm.rs teleport_assets 413.62us 450.36us +8.88
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 344.19us 374.77us +8.88
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs migrate_supported_version 342.31us 372.71us +8.88
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 343.09us 373.46us +8.85
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_version_notifiers 343.01us 373.26us +8.82
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_xcm.rs migrate_version_notifiers 342.42us 372.51us +8.79
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 343.27us 373.39us +8.77
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.82us 372.88us +8.77
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_version_notifiers 342.45us 372.42us +8.75
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 343.16us 373.19us +8.75
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_version_notify_targets 342.67us 372.55us +8.72
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs teleport_assets 589.73us 641.00us +8.69
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs migrate_supported_version 343.21us 372.99us +8.68
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs migrate_supported_version 342.96us 372.65us +8.66
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs transfer_assets 589.73us 639.74us +8.48
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs teleport_assets 595.65us 643.86us +8.09
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs teleport_assets 592.82us 640.46us +8.04
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs transfer_assets 592.31us 639.36us +7.94
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_unsubscribe_version_notify 561.10us 605.35us +7.89
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs transfer_assets 1.15ms 1.24ms +7.70
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs transfer_assets 598.62us 644.52us +7.67
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs transfer_assets 1.15ms 1.23ms +7.53
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs teleport_assets 594.84us 639.06us +7.43
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs teleport_assets 595.47us 638.25us +7.18
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_unsubscribe_version_notify 563.57us 602.04us +6.83
polkadot/runtime/westend/src/weights/pallet_xcm.rs force_subscribe_version_notify 681.80us 724.99us +6.34
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs reserve_transfer_assets 826.26us 878.47us +6.32
polkadot/runtime/rococo/src/weights/pallet_xcm.rs force_subscribe_version_notify 681.96us 723.02us +6.02
cumulus/parachains/runtimes/coretime/coretime-rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 827.02us 871.25us +5.35
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 682.17us 718.31us +5.30
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs reserve_transfer_assets 847.97us 892.24us +5.22
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 682.95us 718.61us +5.22
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 711.27us 748.38us +5.22
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 710.87us 747.87us +5.20
cumulus/parachains/runtimes/coretime/coretime-westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 683.87us 719.01us +5.14
cumulus/parachains/runtimes/coretime/coretime-rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 683.77us 718.50us +5.08
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 711.91us 747.86us +5.05
cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_xcm.rs reserve_transfer_assets 847.89us 890.48us +5.02
polkadot/runtime/westend/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 666.07us 398.97us -40.10
polkadot/runtime/westend/src/weights/pallet_xcm.rs notify_current_targets 481.54us 287.67us -40.26
polkadot/runtime/rococo/src/weights/pallet_xcm.rs migrate_and_notify_old_targets 665.59us 395.78us -40.54
polkadot/runtime/rococo/src/weights/pallet_xcm.rs notify_current_targets 480.97us 284.51us -40.85
polkadot/runtime/westend/src/weights/pallet_xcm.rs execute 18446744.07s 35.01us -100.00
cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_xcm.rs execute 18446744.07s 37.03us -100.00
cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_xcm.rs execute 18446744.07s 37.05us -100.00
cumulus/parachains/runtimes/collectives/collectives-westend/src/weights/pallet_xcm.rs execute 18446744.07s 38.57us -100.00
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-westend/src/weights/pallet_xcm.rs execute 18446744.07s 37.68us -100.00
cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/weights/pallet_xcm.rs execute 18446744.07s 37.56us -100.00
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/weights/pallet_xcm.rs execute 18446744.07s 39.52us -100.00
substrate/frame/revive/src/weights.rs seal_input 30.31us Added
Command output:

✅ Successful benchmarks of runtimes/pallets:
-- bridge-hub-rococo: ['pallet_xcm']
-- coretime-rococo: ['pallet_xcm']
-- people-rococo: ['pallet_xcm']

@bkontur bkontur enabled auto-merge December 18, 2024 11:57
@bkontur bkontur added this pull request to the merge queue Dec 18, 2024
Merged via the queue into master with commit 9da3394 Dec 18, 2024
200 of 202 checks passed
@bkontur bkontur deleted the bko-weights branch December 18, 2024 13:01
@paritytech-cmd-bot-polkadot-sdk

Created backport PR for stable2407:

Please cherry-pick the changes locally and resolve any conflicts.

git fetch origin backport-6919-to-stable2407
git worktree add --checkout .worktree/backport-6919-to-stable2407 backport-6919-to-stable2407
cd .worktree/backport-6919-to-stable2407
git reset --hard HEAD^
git cherry-pick -x 9da3394c382de6f431f1db92b0c7d388e31284cc
git push --force-with-lease

@paritytech-cmd-bot-polkadot-sdk

Created backport PR for stable2409:

Please cherry-pick the changes locally and resolve any conflicts.

git fetch origin backport-6919-to-stable2409
git worktree add --checkout .worktree/backport-6919-to-stable2409 backport-6919-to-stable2409
cd .worktree/backport-6919-to-stable2409
git reset --hard HEAD^
git cherry-pick -x 9da3394c382de6f431f1db92b0c7d388e31284cc
git push --force-with-lease

github-actions bot pushed a commit that referenced this pull request Dec 18, 2024
Relates to: #6918

---------

Co-authored-by: command-bot <>
(cherry picked from commit 9da3394)
@paritytech-cmd-bot-polkadot-sdk

Successfully created backport PR for stable2412:

EgorPopelyaev pushed a commit that referenced this pull request Dec 19, 2024
Backport #6919 into `stable2412` from bkontur.

See the
[documentation](https://github.com/paritytech/polkadot-sdk/blob/master/docs/BACKPORT.md)
on how to use this bot.

<!--
  # To be used by other automation, do not modify:
  original-pr-number: #${pull_number}
-->

Co-authored-by: Branislav Kontur <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A4-needs-backport Pull request must be backported to all maintained releases. R0-silent Changes should not be mentioned in any release notes T6-XCM This PR/Issue is related to XCM. T12-benchmarks This PR/Issue is related to benchmarking and weights.
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

3 participants