Skip to content

Commit e5b79a4

Browse files
committed
change delimiter, add args to justfile for verify_blocks
1 parent 275891b commit e5b79a4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ mkconfig_docker_full NUM_NODES RPC_URL PARENT_CHAIN_ID PARENT_INBOX_ADDRESS *ARG
109109
--parent-ibox-contr-addr {{PARENT_INBOX_ADDRESS}} \
110110
--mode "increment-address" {{ARGS}} | jq
111111

112-
verify_blocks:
113-
cargo run --release --bin block_verifier
112+
verify_blocks *ARGS:
113+
cargo run --release --bin block_verifier {{ARGS}}
114114

115115
####################
116116
####TEST COMMANDS###

tests/block-verifier/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ struct Cli {
1919
/// Nitro node URLs use to check state for different sequencers to ensure consistency
2020
#[clap(
2121
long,
22-
default_value = "http://localhost:8547;http://localhost:8647",
22+
default_value = "http://localhost:8547,http://localhost:8647",
2323
use_value_delimiter = true,
24-
value_delimiter = ';'
24+
value_delimiter = ','
2525
)]
2626
nitro_urls: Vec<String>,
2727
}

0 commit comments

Comments
 (0)