-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
txfuzz: refactor tx creation, remove unused functions (#39)
* txfuzz: refactor tx creation, remove unused functions * cmd/livefuzzer: add default config constructor * txfuzz: happy lint * cmd/livefuzzer: move spammer to spammer package * spammer: removed unused function * spammer: only airdrop to active addresses * spammer: happy lint * cmd/livefuzzer: implement unstuck command * cmd/livefuzzer: implement unstuck command * spammer: fix sendTx * spammer: fix sendtx * spammer: fix sendtx finally * spammer: unstuck transactions before spamming
- Loading branch information
1 parent
172b73f
commit eb98970
Showing
13 changed files
with
473 additions
and
476 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package txfuzz | ||
package main | ||
|
||
import ( | ||
"github.com/ethereum/go-ethereum/core/vm" | ||
|
Oops, something went wrong.