Skip to content

Commit

Permalink
increase spec version and rm frequency-start
Browse files Browse the repository at this point in the history
  • Loading branch information
enddynayn committed Aug 27, 2024
1 parent 927a36c commit 0bc1c30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 30 deletions.
4 changes: 2 additions & 2 deletions runtime/frequency/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("frequency"),
impl_name: create_runtime_str!("frequency"),
authoring_version: 1,
spec_version: 108,
spec_version: 109,
impl_version: 0,
apis: apis::RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand All @@ -375,7 +375,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("frequency-testnet"),
impl_name: create_runtime_str!("frequency"),
authoring_version: 1,
spec_version: 108,
spec_version: 109,
impl_version: 0,
apis: apis::RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down
28 changes: 0 additions & 28 deletions scripts/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,34 +104,6 @@ start-paseo-collator-bob)
$offchain_params \
;;

start-frequency)
printf "\nBuilding frequency with runtime '$parachain' and id '$para_id'...\n"
cargo build --release --features frequency-local

parachain_dir=$base_dir/parachain/${para_id}
mkdir -p $parachain_dir;

if [ "$2" == "purge" ]; then
echo "purging parachain..."
rm -rf $parachain_dir
fi

"${Frequency_BINARY_PATH:-./target/release/frequency}" key generate-node-key --base-path=$parachain_dir/data

./scripts/run_collator.sh \
--chain="frequency-paseo-local" --alice \
--base-path=$parachain_dir/data \
--wasm-execution=compiled \
--force-authoring \
--port $((30333)) \
--rpc-port $((9944)) \
--rpc-external \
--rpc-cors all \
--rpc-methods=Unsafe \
--trie-cache-size 0 \
$offchain_params \
;;

start-frequency-instant)
printf "\nBuilding Frequency without relay. Running with instant sealing ...\n"
cargo build --features frequency-no-relay
Expand Down

0 comments on commit 0bc1c30

Please sign in to comment.