Commit c9340197 authored by Joshua Gutow's avatar Joshua Gutow Committed by GitHub

op-node: Log finalized block when EL sync is complete (#9428)

parent 6cdd6301
...@@ -356,7 +356,7 @@ func (e *EngineController) InsertUnsafePayload(ctx context.Context, envelope *et ...@@ -356,7 +356,7 @@ func (e *EngineController) InsertUnsafePayload(ctx context.Context, envelope *et
e.needFCUCall = false e.needFCUCall = false
if e.syncStatus == syncStatusFinishedELButNotFinalized { if e.syncStatus == syncStatusFinishedELButNotFinalized {
e.log.Info("Finished EL sync", "sync_duration", e.clock.Since(e.elStart)) e.log.Info("Finished EL sync", "sync_duration", e.clock.Since(e.elStart), "finalized_block", ref.ID().String())
e.syncStatus = syncStatusFinishedEL e.syncStatus = syncStatusFinishedEL
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment