Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ARR552 authored Mar 13, 2023
1 parent 41cb989 commit f5bb0b6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sequencer/finalizer.go
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,9 @@ func (f *finalizer) handleSuccessfulTxProcessResp(ctx context.Context, tx *TxTra

previousL2BlockStateRoot := f.batch.stateRoot
// Store the processed transaction, add it to the batch and update status in the pool atomically
log.Infof("handleSuccessfulTxProcessResp: storing processed tx: %s", tx.Hash.String())
if tx != nil {
log.Infof("handleSuccessfulTxProcessResp: storing processed tx: %s", tx.Hash.String())
}
f.storeProcessedTx(ctx, previousL2BlockStateRoot, tx, result)
f.processRequest.OldStateRoot = result.NewStateRoot
f.batch.stateRoot = result.NewStateRoot
Expand Down

0 comments on commit f5bb0b6

Please sign in to comment.