diff --git a/go/enclave/components/block_processor.go b/go/enclave/components/block_processor.go index 13ea6edbcd..b7bf8d0d30 100644 --- a/go/enclave/components/block_processor.go +++ b/go/enclave/components/block_processor.go @@ -99,7 +99,7 @@ func (bp *l1BlockProcessor) tryAndInsertBlock(br *common.BlockAndReceipts) (*Blo return nil, err } bp.logger.Trace("Block inserted successfully", - log.BlockHeightKey, block.NumberU64(), log.BlockHashKey, block.Hash(), "ingestionType", ingestionType) + log.BlockHeightKey, block.NumberU64(), log.BlockHashKey, block.Hash()) err = bp.storage.StoreBlock(block, ingestionType.ChainFork) if err != nil { diff --git a/go/enclave/nodetype/sequencer.go b/go/enclave/nodetype/sequencer.go index c8dd9dc6a0..25b3d71a80 100644 --- a/go/enclave/nodetype/sequencer.go +++ b/go/enclave/nodetype/sequencer.go @@ -399,6 +399,20 @@ func (s *sequencer) duplicateBatches(l1Head *types.Block, nonCanonicalL1Path []c } func (s *sequencer) SubmitTransaction(transaction *common.L2Tx) error { + //if transaction.Type() + //s.logger.Debug("Submit tx", + // log.TxKey, transaction.Hash(), + // "type", transaction.Type(), + // "payload", gethcommon.Bytes2Hex(transaction.Data()), + // "time", transaction.Time(), + // "to", transaction.To().Hex(), + // "value", transaction.Value().Uint64(), + // "size", transaction.Size(), + // "nonce", transaction.Nonce(), + // "gas", transaction.Gas(), + // "gasPrice", transaction.GasPrice().Uint64(), + // "chainId", transaction.ChainId().Uint64(), + //) return s.mempool.Add(transaction) }