Skip to content

Commit

Permalink
Merge pull request #27 from ethpandaops/skylenet/fix-typo
Browse files Browse the repository at this point in the history
check_execution_sync_status: fix typo
  • Loading branch information
skylenet committed Jul 17, 2024
2 parents c690b46 + ee67c0f commit c690bf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/coordinator/tasks/check_execution_sync_status/task.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ func (t *Task) processClientCheck(client *clients.PoolClient, syncStatus *rpc.Sy
}

if int64(currentBlock) < int64(t.config.MinBlockHeight) {
checkLogger.Debugf("check failed. check: MinSlotHeight, expected: >= %v, got: %v", t.config.MinBlockHeight, currentBlock)
checkLogger.Debugf("check failed. check: MinBlockHeight, expected: >= %v, got: %v", t.config.MinBlockHeight, currentBlock)
return false
}

Expand Down

0 comments on commit c690bf5

Please sign in to comment.