Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

log #1804

Merged
merged 1 commit into from
Mar 13, 2023
Merged

log #1804

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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