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

Commit

Permalink
feat(sender): no MaxGasFee default value (#596)
Browse files Browse the repository at this point in the history
  • Loading branch information
mask-pp authored Mar 4, 2024
1 parent 514869d commit 540fd77
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/sender/sender.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/math"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/log"
cmap "github.com/orcaman/concurrent-map/v2"
Expand All @@ -33,8 +34,8 @@ var (
MaxRetrys: 0,
MaxWaitingTime: 5 * time.Minute,
GasGrowthRate: 50,
MaxGasFee: 20_000_000_000,
MaxBlobFee: 1_000_000_000,
MaxGasFee: math.MaxUint64,
MaxBlobFee: math.MaxUint64,
}
)

Expand Down

0 comments on commit 540fd77

Please sign in to comment.