Skip to content
This repository was archived by the owner on Jul 13, 2022. It is now read-only.

Commit 5c2fd72

Browse files
authored
increase default max priority fee to 1 gwei (#705)
1 parent 95fc717 commit 5c2fd72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

connections/ethereum/connection.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ func (c *Connection) EstimateGasLondon(ctx context.Context, baseFee *big.Int) (*
170170
var maxFeePerGas *big.Int
171171

172172
if c.maxGasPrice.Cmp(baseFee) < 0 {
173-
maxPriorityFeePerGas = big.NewInt(1)
173+
maxPriorityFeePerGas = big.NewInt(1000000000)
174174
maxFeePerGas = new(big.Int).Add(c.maxGasPrice, maxPriorityFeePerGas)
175175
return maxPriorityFeePerGas, maxFeePerGas, nil
176176
}

0 commit comments

Comments
 (0)