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

Commit

Permalink
feat(proposer): add more logs for debugging (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
mask-pp authored Mar 18, 2024
1 parent 662d99f commit a554017
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion proposer/transaction_builder/blob.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"

"github.com/ethereum/go-ethereum/log"
"github.com/taikoxyz/taiko-client/bindings/encoding"
"github.com/taikoxyz/taiko-client/pkg/rpc"
selector "github.com/taikoxyz/taiko-client/proposer/prover_selector"
Expand Down Expand Up @@ -114,6 +114,7 @@ func (b *BlobTransactionBuilder) Build(

tx, err := b.rpc.L1.TransactBlobTx(opts, b.taikoL1Address, rawTx.Data(), sideCar)
if err != nil {
log.Debug("Failed to transact blob tx", "value", maxFee, "blobGasFeeCap", tx.BlobGasFeeCap(), "err", err)
return nil, err
}

Expand Down

0 comments on commit a554017

Please sign in to comment.