From 5c2fd72b2202c1532cb29cb39ce21305c2e76d73 Mon Sep 17 00:00:00 2001 From: Maxim Vezenov Date: Wed, 1 Sep 2021 05:48:26 -0400 Subject: [PATCH] increase default max priority fee to 1 gwei (#705) --- connections/ethereum/connection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connections/ethereum/connection.go b/connections/ethereum/connection.go index 8aba39ee0..922b0ec4b 100644 --- a/connections/ethereum/connection.go +++ b/connections/ethereum/connection.go @@ -170,7 +170,7 @@ func (c *Connection) EstimateGasLondon(ctx context.Context, baseFee *big.Int) (* var maxFeePerGas *big.Int if c.maxGasPrice.Cmp(baseFee) < 0 { - maxPriorityFeePerGas = big.NewInt(1) + maxPriorityFeePerGas = big.NewInt(1000000000) maxFeePerGas = new(big.Int).Add(c.maxGasPrice, maxPriorityFeePerGas) return maxPriorityFeePerGas, maxFeePerGas, nil }