Skip to content

Commit

Permalink
reduce some log noise around validator checks
Browse files Browse the repository at this point in the history
  • Loading branch information
hexoscott committed Mar 14, 2024
1 parent 86fc792 commit 6a7a6af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consensus/polybft/polybft.go
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ func (p *Polybft) startConsensusProtocol() {
}

isValidator := currentValidators.ContainsNodeID(p.key.String())
p.logger.Info("polybft validator check", "isValidator", isValidator, "key", p.key.String(), "validators", currentValidators)
p.logger.Debug("polybft validator check", "isValidator", isValidator, "key", p.key.String(), "validators", currentValidators)
p.runtime.setIsActiveValidator(isValidator)

p.txPool.SetSealing(isValidator) // update tx pool
Expand Down

0 comments on commit 6a7a6af

Please sign in to comment.