Skip to content

Commit

Permalink
fix: use the third address instead of coinbase for tx-fuzz (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y authored Sep 19, 2023
1 parent 14acb6f commit 3b2993c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ Here's a table of where the keys are used

| Account Index| Component Used In | Private Key Used | Public Key Used | Comment |
|----------------|---------------------|------------------|-----------------|----------------------------|
| 0 | transaction_spammer || | To spam transactions with |
| 3 | transaction_spammer || | To spam transactions with |
| 0 | mev_flood || | As the admin_key |
| 2 | mev_flood || | As the user_key |
| 0 | mev_custom_flood | || As the receiver of balance |
Expand Down
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):
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 comments on commit 3b2993c

Please sign in to comment.