Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
fix bad index
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa committed Jul 27, 2023
1 parent a64f7aa commit a5a4371
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def generate_cl_validator_keystores(
output_dirpath = NODE_KEYSTORES_OUTPUT_DIRPATH_FORMAT_STR.format(idx)

start_index = idx * num_validators_per_node
stop_index = (idx+1) * num_validators_per_node - 1
stop_index = (idx+1) * num_validators_per_node

generate_keystores_cmd = "{0} keystores --insecure --prysm-pass {1} --out-loc {2} --source-mnemonic \"{3}\" --source-min {4} --source-max {5}".format(
KEYSTORES_GENERATION_TOOL_NAME,
Expand Down

0 comments on commit a5a4371

Please sign in to comment.