Skip to content

Commit

Permalink
op-node: Better variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
pcw109550 committed Mar 1, 2024
1 parent 3176f3d commit da64a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion op-node/rollup/derive/engine_queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ func (eq *EngineQueue) isEngineSyncing() bool {
func (eq *EngineQueue) Step(ctx context.Context) error {
// If we don't need to call FCU to restore unsafeHead using backupUnsafe, keep going b/c
// this was a no-op(except correcting invalid state when backupUnsafe is empty but TryBackupUnsafeReorg called).
if FCUcalled, err := eq.ec.TryBackupUnsafeReorg(ctx); FCUcalled {
if fcuCalled, err := eq.ec.TryBackupUnsafeReorg(ctx); fcuCalled {
// If we needed to perform a network call, then we should yield even if we did not encounter an error.
return err
}
Expand Down

0 comments on commit da64a2b

Please sign in to comment.