Skip to content

Commit

Permalink
fix: use 4th private key (index 3) for tx fuzz like before (#215)
Browse files Browse the repository at this point in the history
this is another change we added while fixing merge conflicts today
  • Loading branch information
h4ck3rk3y authored Sep 20, 2023
1 parent b6ce1e9 commit 1752ed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transaction_spammer/transaction_spammer.star
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def get_config(prefunded_addresses, el_client_context, tx_spammer_extra_args):
cmd = [
"spam",
"--rpc=http://{0}:{1}".format(el_client_context.ip_addr, el_client_context.rpc_port_num),
"--sk={0}".format(prefunded_addresses[0].private_key),
"--sk={0}".format(prefunded_addresses[3].private_key),
"{0}".format(" ".join(tx_spammer_extra_args))
]
)
Expand Down

0 comments on commit 1752ed0

Please sign in to comment.