From 6dee627fc7ea339aa9ccfb53ca061d43eca8fb38 Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Fri, 6 Oct 2023 17:47:31 +0200 Subject: [PATCH] cmd/livefuzzer: higher airdrop for blob txs (#35) --- cmd/livefuzzer/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/livefuzzer/main.go b/cmd/livefuzzer/main.go index 6019022..088da1a 100644 --- a/cmd/livefuzzer/main.go +++ b/cmd/livefuzzer/main.go @@ -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 }