Skip to content

Commit

Permalink
fix: count for participant was not calculated with (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa authored Nov 21, 2024
1 parent 5bd687c commit f511988
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/package_io/input_parser.star
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,11 @@ def parse_network_params(plan, input_args):
)
participant["cl_image"] = default_image

participants.append(participant)
for _ in range(0, participant["count"]):
participant_copy = ethereum_package_input_parser.deep_copy_participant(
participant
)
participants.append(participant_copy)

result = {
"participants": participants,
Expand Down

0 comments on commit f511988

Please sign in to comment.