diff --git a/l1infotreesync/processor.go b/l1infotreesync/processor.go index 0071bc69..c5581b8b 100644 --- a/l1infotreesync/processor.go +++ b/l1infotreesync/processor.go @@ -294,7 +294,6 @@ func (p *processor) Reorg(ctx context.Context, firstReorgedBlock uint64) error { tx.Rollback() return err } - fmt.Println("blk:", blk.FirstIndex, blk.LastIndex) for i := blk.FirstIndex; i < blk.LastIndex; i++ { if firstReorgedL1InfoTreeIndex == -1 { firstReorgedL1InfoTreeIndex = int64(i) @@ -313,7 +312,6 @@ func (p *processor) Reorg(ctx context.Context, firstReorgedBlock uint64) error { tx.Rollback() return err } - fmt.Println("firstReorgedL1InfoTreeIndex:", firstReorgedL1InfoTreeIndex) var rollbackL1InfoTree func() if firstReorgedL1InfoTreeIndex != -1 { rollbackL1InfoTree, err = p.l1InfoTree.Reorg(tx, uint32(firstReorgedL1InfoTreeIndex))