Skip to content

Commit

Permalink
feat: removes loop of txns from concensus
Browse files Browse the repository at this point in the history
  • Loading branch information
ckartik committed May 31, 2024
1 parent 3720c1a commit 5e1af63
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions consensus/clique/clique.go
Original file line number Diff line number Diff line change
Expand Up @@ -636,9 +636,6 @@ func (c *Clique) Seal(chain consensus.ChainHeaderReader, block *types.Block, res
if c.config.PeriodMs == 0 && len(block.Transactions()) == 0 {
return errors.New("sealing paused while waiting for transactions")
}
for _, tx := range block.Transactions() {
log.Info("Processing transaction at consensus layer", "tx_hash", tx.Hash().Hex())
}
// Don't hold the signer fields for the entire sealing procedure
c.lock.RLock()
signer, signFn := c.signer, c.signFn
Expand Down

0 comments on commit 5e1af63

Please sign in to comment.