diff --git a/consensus/bor/bor.go b/consensus/bor/bor.go index 3fae9c015156c9e30fe89f96bafde741fc369a4a..2c2fcf020fcd46ed38a1b13487853419962c2a43 100644 --- a/consensus/bor/bor.go +++ b/consensus/bor/bor.go @@ -726,7 +726,7 @@ func (c *Bor) Seal(chain consensus.ChainReader, block *types.Block, results chan // Sweet, the protocol permits us to sign the block, wait for our time delay := time.Unix(int64(header.Time), 0).Sub(time.Now()) // nolint: gosimple - wiggle := time.Duration(wiggleTime) * time.Duration(tempIndex-proposerIndex) + wiggle := time.Duration(2*c.config.Period) * time.Second * time.Duration(tempIndex-proposerIndex) delay += wiggle fmt.Println("Out-of-turn signing requested", "wiggle", common.PrettyDuration(wiggle))