diff --git a/packages/taiko-client/driver/chain_syncer/blob/syncer.go b/packages/taiko-client/driver/chain_syncer/blob/syncer.go index c850bb52ad..1d4f542911 100644 --- a/packages/taiko-client/driver/chain_syncer/blob/syncer.go +++ b/packages/taiko-client/driver/chain_syncer/blob/syncer.go @@ -257,6 +257,12 @@ func (s *Syncer) onBlockProposed( return fmt.Errorf("failed to fetch tx list: %w", err) } + log.Info("TestResult", + "txListBytes", len(txListBytes), + "offset", meta.GetBlobTxListOffset(), + "length", meta.GetBlobTxListLength(), + "txListBytes", txListBytes, + ) var decompressedTxListBytes []byte if s.rpc.L2.ChainID.Cmp(params.HeklaNetworkID) == 0 { decompressedTxListBytes = s.txListDecompressor.TryDecompressHekla( diff --git a/packages/taiko-client/driver/txlist_fetcher/blob.go b/packages/taiko-client/driver/txlist_fetcher/blob.go index ae2f301108..fe8225ca54 100644 --- a/packages/taiko-client/driver/txlist_fetcher/blob.go +++ b/packages/taiko-client/driver/txlist_fetcher/blob.go @@ -60,11 +60,6 @@ func (d *BlobFetcher) Fetch( if err != nil { return nil, err } - - log.Debug( - "GetBlobTxListOffset", meta.GetBlobTxListOffset(), - "BlobTxListLength", meta.GetBlobTxListLength(), - ) if meta.GetBlobTxListLength() == 0 { return bytes[meta.GetBlobTxListOffset():], nil } diff --git a/packages/taiko-client/proposer/proposer.go b/packages/taiko-client/proposer/proposer.go index 96c57a4463..3100157401 100644 --- a/packages/taiko-client/proposer/proposer.go +++ b/packages/taiko-client/proposer/proposer.go @@ -431,13 +431,17 @@ func (p *Proposer) ProposeTxListOntake( return err } txListsBytesArray = append(txListsBytesArray, compressedTxListBytesA) - log.Debug("compressedTxListBytesA", len(compressedTxListBytesA)) compressedTxListBytesB, err := utils.Compress(txListBytesB) if err != nil { return err } txListsBytesArray = append(txListsBytesArray, compressedTxListBytesB) - log.Debug("compressedTxListBytesB", len(compressedTxListBytesB)) + log.Info("TestResult", + "compressedTxListBytesA", len(compressedTxListBytesA), + "compressedTxListBytesB", len(compressedTxListBytesB), + "compressedTxListBytesA", compressedTxListBytesA, + "compressedTxListBytesB", compressedTxListBytesB, + ) } else { txListBytes, err := rlp.EncodeToBytes(txs) if err != nil {