Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ethereum-package
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
ethereum-package
Commits
3b2993c0
Unverified
Commit
3b2993c0
authored
Sep 19, 2023
by
Gyanendra Mishra
Committed by
GitHub
Sep 19, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: use the third address instead of coinbase for tx-fuzz (#185)
parent
14acb6f9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
README.md
README.md
+1
-1
transaction_spammer.star
src/transaction_spammer/transaction_spammer.star
+1
-1
No files found.
README.md
View file @
3b2993c0
...
...
@@ -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 |
...
...
src/transaction_spammer/transaction_spammer.star
View file @
3b2993c0
...
...
@@ -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),
]
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment