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

chore: make the validator not part of valset log info level #611

Merged
merged 1 commit into from
Nov 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading