Skip to content

Commit

Permalink
cmd/livefuzzer: higher airdrop for blob txs (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusVanDerWijden committed Oct 6, 2023
1 parent a093b24 commit 6dee627
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cmd/livefuzzer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,9 @@ func spam(c *cli.Context, basic bool) error {

for {
airdropValue := new(big.Int).Mul(big.NewInt(int64((1+txPerAccount)*1000000)), big.NewInt(params.GWei))
if !basic {
airdropValue.Mul(airdropValue, big.NewInt(100)) // Blob txs are more expensive
}
if err := airdrop(airdropValue); err != nil {
return err
}
Expand Down

0 comments on commit 6dee627

Please sign in to comment.