Merge pull request #14411 from karalabe/clique-double-sign

consensus/clique: fix overflow on recent signer check around genesis
pull/14412/head
Péter Szilágyi 7 years ago committed by GitHub
commit 02fa3e3179
  1. 2
      consensus/clique/clique.go

@ -599,7 +599,7 @@ func (c *Clique) Seal(chain consensus.ChainReader, block *types.Block, stop <-ch
for seen, recent := range snap.Recents {
if recent == signer {
// Signer is among recents, only wait if the current block doens't shift it out
if limit := uint64(len(snap.Signers)/2 + 1); seen > number-limit {
if limit := uint64(len(snap.Signers)/2 + 1); number < limit || seen > number-limit {
log.Info("Signed recently, must wait for others")
<-stop
return nil, nil

Loading…
Cancel
Save