Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
chore: make the validator not part of valset log info level (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
rach-id authored Nov 21, 2023
1 parent 4067795 commit 0508c24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orchestrator/orchestrator.go
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ func (orch Orchestrator) Process(ctx context.Context, nonce uint64) error {
orch.Logger.Debug("failed to query last valset before nonce (most likely pruned). signing anyway", "err", err.Error())
} else if !ValidatorPartOfValset(previousValset.Members, orch.EvmAccount.Address.Hex()) {
// no need to sign if the orchestrator is not part of the validator set that needs to sign the attestation
orch.Logger.Debug("validator not part of valset. won't sign", "nonce", nonce)
orch.Logger.Info("validator not part of valset. won't sign", "nonce", nonce)
return nil
}

Expand Down

0 comments on commit 0508c24

Please sign in to comment.