Skip to content

Commit

Permalink
refactor: revise validator log to output seen instead of exists (#5507)
Browse files Browse the repository at this point in the history
Revise validator log output from exist to seen
  • Loading branch information
philknows authored May 18, 2023
1 parent 1939c37 commit 724281e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/validator/src/services/indices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export class IndicesService {

const pubkeyHex = toHexString(validatorState.validator.pubkey);
if (!this.pubkey2index.has(pubkeyHex)) {
this.logger.info("Validator exists in beacon chain", {
this.logger.info("Validator seen on beacon chain", {
validatorIndex: validatorState.index,
pubKey: pubkeyHex,
});
Expand Down

0 comments on commit 724281e

Please sign in to comment.