diff --git a/eth/gasprice/gasprice.go b/eth/gasprice/gasprice.go index b35f35e7da10..324c4c4ebfae 100644 --- a/eth/gasprice/gasprice.go +++ b/eth/gasprice/gasprice.go @@ -217,8 +217,8 @@ func (oracle *Oracle) SuggestTipCap(ctx context.Context) (*big.Int, error) { // CHANGE(MXC): When there are network restrictions, the baseFee should be increased here to avoid transaction delays. The minimum bid is 100,000 gwei. price = price.Add(price, new(big.Int).Div(head.BaseFee, big.NewInt(20))) - if head.BaseFee.Cmp(big.NewInt(1e14)) < 0 { - price = new(big.Int).Add(price, new(big.Int).Sub(big.NewInt(1e14), head.BaseFee)) + if head.BaseFee.Cmp(big.NewInt(1e13)) < 0 { + price = new(big.Int).Add(price, new(big.Int).Sub(big.NewInt(1e13), head.BaseFee)) } oracle.cacheLock.Lock()