Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
badgersrus committed Oct 30, 2024
1 parent 119dd11 commit a11efc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion go/ethadapter/geth_rpc_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,6 @@ func (e *gethRPCClient) prepareBlobTxToRetry(ctx context.Context, txData types.T
}
blobFeeCap := calcBlobFeeCap(blobBaseFee, retryNumber)

// Calculate GasFeeCap as baseFee * 2 + tipCap
baseFee := head.BaseFee
gasFeeCap := new(big.Int).Mul(baseFee, big.NewInt(2))
gasFeeCap.Add(gasFeeCap, retryPrice)
Expand Down
3 changes: 2 additions & 1 deletion integration/smartcontract/debug_wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ package smartcontract
import (
"context"
"fmt"
"time"

"github.com/ethereum/go-ethereum"
"github.com/ten-protocol/go-ten/go/common/retry"
"time"

"github.com/ethereum/go-ethereum/core/types"
"github.com/ten-protocol/go-ten/go/ethadapter"
Expand Down

0 comments on commit a11efc7

Please sign in to comment.