Skip to content
This repository was archived by the owner on May 11, 2024. It is now read-only.

Commit 540fd77

Browse files
authored
feat(sender): no MaxGasFee default value (#596)
1 parent 514869d commit 540fd77

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

internal/sender/sender.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313
"github.com/ethereum/go-ethereum"
1414
"github.com/ethereum/go-ethereum/accounts/abi/bind"
1515
"github.com/ethereum/go-ethereum/common"
16+
"github.com/ethereum/go-ethereum/common/math"
1617
"github.com/ethereum/go-ethereum/core/types"
1718
"github.com/ethereum/go-ethereum/log"
1819
cmap "github.com/orcaman/concurrent-map/v2"
@@ -33,8 +34,8 @@ var (
3334
MaxRetrys: 0,
3435
MaxWaitingTime: 5 * time.Minute,
3536
GasGrowthRate: 50,
36-
MaxGasFee: 20_000_000_000,
37-
MaxBlobFee: 1_000_000_000,
37+
MaxGasFee: math.MaxUint64,
38+
MaxBlobFee: math.MaxUint64,
3839
}
3940
)
4041

0 commit comments

Comments
 (0)