6b597bebcf
- Fix pezpallet-welati EnsureOrigin implementations (3 fixes)
- Remove incorrect #[cfg(not(feature = "runtime-benchmarks"))] blocks
- Affects EnsureSerok, EnsureParlementer, EnsureDiwan
- Fix asset-hub-zagros governance origins macros (2 fixes)
- Remove non-benchmark try_successful_origin from decl_unit_ensures!
- Remove non-benchmark try_successful_origin from decl_ensure!
- Rename snowbridge -> pezsnowbridge for consistency
- Update WORKFLOW_PLAN.md with build status and package names
- Correct package names: pezkuwi-teyrchain-bin, pezstaging-node-cli
- Mark completed builds: pezkuwi, pezkuwi-teyrchain-bin,
pezstaging-node-cli, teyrchain-template-node
16 lines
486 B
Bash
Executable File
16 lines
486 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Example command for updating pallet benchmarking
|
|
pushd ../pezcumulus
|
|
cargo run --release --bin pezkuwi-teyrchain \
|
|
--features runtime-benchmarks \
|
|
-- \
|
|
benchmark pallet \
|
|
--chain=bridge-hub-pezkuwichain-dev \
|
|
--pallet=snowbridge_pallet_ethereum_client \
|
|
--extrinsic="*" \
|
|
--execution=wasm --wasm-execution=compiled \
|
|
--steps 50 --repeat 20 \
|
|
--output ./teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/src/weights/snowbridge_pallet_ethereum_client.rs
|
|
popd
|