diff --git a/eth/handler.go b/eth/handler.go index a94e15ed02c3..5a5a661c5e91 100644 --- a/eth/handler.go +++ b/eth/handler.go @@ -1238,7 +1238,8 @@ func (pm *ProtocolManager) txBroadcastLoop() { pm.BroadcastTransactions(event.Txs, false) // Only then announce to the rest // Err() channel will be closed when unsubscribing. - case <-pm.txsSub.Err(): + case e := <-pm.txsSub.Err(): + log.Error("[Liam] [txBroadcastLoop] txsSub has error", "error", e.Error()) return } }