Skip to content

Commit d56de20

Browse files
authored
Merge pull request #4156 from ProvableHQ/fix_devnet_script
Fix devnet script. snarkos clean has no concept of dev-num-validators
2 parents 556f1b8 + fef5647 commit d56de20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/devnet.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ if [[ $clear_ledger == "y" ]]; then
7474

7575
for ((index = 0; index < $((total_validators + total_clients)); index++)); do
7676
# Run 'snarkos clean' for each node in the background
77-
"${binary_path}snarkos" clean "--network=$network_id" "--dev=$index" "--dev-num-validators=$total_validators" &
77+
"${binary_path}snarkos" clean "--network=$network_id" "--dev=$index" &
7878

7979
# Store the process ID of the background task
8080
clean_processes+=($!)

0 commit comments

Comments
 (0)