diff --git a/consensus/clique/clique.go b/consensus/clique/clique.go index 47ac815e8590..ecf5be129ccf 100644 --- a/consensus/clique/clique.go +++ b/consensus/clique/clique.go @@ -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