diff --git a/packages/taiko-client/proposer/transaction_builder/fallback.go b/packages/taiko-client/proposer/transaction_builder/fallback.go index 60f6c7b0d0..8bcc5360ff 100644 --- a/packages/taiko-client/proposer/transaction_builder/fallback.go +++ b/packages/taiko-client/proposer/transaction_builder/fallback.go @@ -162,13 +162,11 @@ func (b *TxBuilderWithFallback) estimateCandidateCost( gasFeeCap := new(big.Int).Add(baseFee, gasTipCap) msg := ethereum.CallMsg{ - From: txMgr.From(), - To: candidate.To, - Gas: candidate.GasLimit, - GasFeeCap: gasFeeCap, - GasTipCap: gasTipCap, - Value: candidate.Value, - Data: candidate.TxData, + From: txMgr.From(), + To: candidate.To, + Gas: candidate.GasLimit, + Value: candidate.Value, + Data: candidate.TxData, } if len(candidate.Blobs) != 0 { var blobHashes []common.Hash @@ -176,7 +174,6 @@ func (b *TxBuilderWithFallback) estimateCandidateCost( return nil, fmt.Errorf("failed to make sidecar: %w", err) } msg.BlobHashes = blobHashes - msg.BlobGasFeeCap = blobBaseFee } gasUsed, err := b.rpc.L1.EstimateGas(ctx, msg)