Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ run-test-authorize-and-store test_dir runtime mode="ws":
if [ "{{ mode }}" = "smoldot" ]; then
if [ "{{ runtime }}" = "bulletin-westend-runtime" ]; then
RELAY_CHAINSPEC_PATH="{{ test_dir }}/bob/cfg/westend-local.json"
PARACHAIN_CHAINSPEC_PATH="{{ test_dir }}/bulletin-westend-collator-2/cfg/westend-local-1006.json"
PARACHAIN_CHAINSPEC_PATH="{{ test_dir }}/bulletin-westend-collator-2/cfg/westend-local-2487.json"
node $SCRIPT_NAME "$RELAY_CHAINSPEC_PATH" "$PARACHAIN_CHAINSPEC_PATH"
else
CHAINSPEC_PATH="{{ test_dir }}/bob/cfg/bulletin-polkadot-local.json"
Expand Down Expand Up @@ -479,7 +479,7 @@ run-authorize-and-store runtime mode="ws": npm-install
if [ "{{ runtime }}" = "bulletin-westend-runtime" ]; then
# Parachain: relay chain (required) + parachain spec (optional)
RELAY_CHAINSPEC_PATH="$TEST_DIR/bob/cfg/westend-local.json"
PARACHAIN_CHAINSPEC_PATH="$TEST_DIR/bulletin-westend-collator-2/cfg/westend-local-1006.json"
PARACHAIN_CHAINSPEC_PATH="$TEST_DIR/bulletin-westend-collator-2/cfg/westend-local-2487.json"
node $SCRIPT_NAME "$RELAY_CHAINSPEC_PATH" "$PARACHAIN_CHAINSPEC_PATH"
else # bulletin-polkadot-runtime (solochain)
CHAINSPEC_PATH="$TEST_DIR/bob/cfg/bulletin-polkadot-local.json"
Expand Down
2 changes: 1 addition & 1 deletion runtimes/bulletin-westend/src/genesis_config_presets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use testnet_parachains_constants::westend::{
};

const BULLETIN_WESTEND_ED: Balance = ExistentialDeposit::get();
pub const BULLETIN_PARA_ID: ParaId = ParaId::new(1006);
pub const BULLETIN_PARA_ID: ParaId = ParaId::new(2487);

fn bulletin_westend_genesis(
invulnerables: Vec<(AccountId, AuraId)>,
Expand Down
2 changes: 1 addition & 1 deletion scripts/create_bulletin_westend_spec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cargo build --release -p bulletin-westend-runtime

# cargo install staging-chain-spec-builder
chain-spec-builder create \
-p 1006 \
-p 2487 \
-c westend \
-i bulletin-westend \
-n Bulletin \
Expand Down
2 changes: 1 addition & 1 deletion zombienet/bulletin-westend-local.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ balance = 2000000000000
args = ["--listen-addr", "/ip4/0.0.0.0/tcp/30434/ws"]

[[parachains]]
id = 1006
id = 2487
chain_spec_path = "./zombienet/bulletin-westend-spec.json"
cumulus_based = true

Expand Down