diff --git a/cumulus/scripts/benchmarks-ci.sh b/cumulus/scripts/benchmarks-ci.sh index 91d24bb5dc..4fda1dde36 100755 --- a/cumulus/scripts/benchmarks-ci.sh +++ b/cumulus/scripts/benchmarks-ci.sh @@ -23,7 +23,7 @@ pallets=( for p in ${pallets[@]} do - ./artifacts/polkadot-collator benchmark \ + ./artifacts/polkadot-collator benchmark pallet \ --chain=$benhcmarkChainName \ --execution=wasm \ --wasm-execution=compiled \ diff --git a/cumulus/scripts/benchmarks.sh b/cumulus/scripts/benchmarks.sh index 9bf416a1bd..ba998a79a5 100755 --- a/cumulus/scripts/benchmarks.sh +++ b/cumulus/scripts/benchmarks.sh @@ -27,7 +27,7 @@ pallets=( for p in ${pallets[@]} do - ./target/production/polkadot-collator benchmark \ + ./target/production/polkadot-collator benchmark pallet \ --chain=$statemineChain \ --execution=wasm \ --wasm-execution=compiled \ @@ -39,7 +39,7 @@ do --header=./file_header.txt \ --output=$statemineOutput - ./target/production/polkadot-collator benchmark \ + ./target/production/polkadot-collator benchmark pallet \ --chain=$statemintChain \ --execution=wasm \ --wasm-execution=compiled \ @@ -51,7 +51,7 @@ do --header=./file_header.txt \ --output=$statemintOutput - ./target/production/polkadot-collator benchmark \ + ./target/production/polkadot-collator benchmark pallet \ --chain=$westmintChain \ --execution=wasm \ --wasm-execution=compiled \