diff --git a/consensus/parlia/parlia.go b/consensus/parlia/parlia.go index beefbfc4af..72c47cb9f7 100644 --- a/consensus/parlia/parlia.go +++ b/consensus/parlia/parlia.go @@ -654,7 +654,7 @@ func (p *Parlia) Finalize(chain consensus.ChainReader, header *types.Header, sta } nextForkHash := forkid.NextForkHash(p.chainConfig, p.genesisHash, number) if !snap.isMajorityFork(hex.EncodeToString(nextForkHash[:])) { - log.Warn("there is a possible fork, and your client is not the majority. Please check...", "nextForkHash", hex.EncodeToString(nextForkHash[:])) + log.Debug("there is a possible fork, and your client is not the majority. Please check...", "nextForkHash", hex.EncodeToString(nextForkHash[:])) } // If the block is a epoch end block, verify the validator list // The verification can only be done when the state is ready, it can't be done in VerifyHeader.