Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ctxc/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,7 @@ func (pm *ProtocolManager) BroadcastTransactions(txs types.Transactions) {
peer.AsyncSendTransactions(hashes)
}
}
log.Debug("Transaction broadcast", "txs", len(txs)-largeTxs, "largetxs", largeTxs,
log.Trace("Transaction broadcast", "txs", len(txs)-largeTxs, "largetxs", largeTxs,
"announce packs", annoPeers, "announced hashes", annoCount,
"tx packs", directPeers, "broadcast txs", directCount)
}
Expand Down
2 changes: 1 addition & 1 deletion ctxc/peer.go
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ func (p *peer) RequestReceipts(hashes []common.Hash) error {

// RequestTxs fetches a batch of transactions from a remote node.
func (p *peer) RequestTxs(hashes []common.Hash) error {
p.Log().Debug("Fetching batch of transactions", "count", len(hashes))
p.Log().Trace("Fetching batch of transactions", "count", len(hashes))
return p2p.Send(p.rw, ctxc.GetPooledTransactionsMsg, hashes)
}

Expand Down
Loading