Commit 6d2b2709 authored by Ralph Pichler's avatar Ralph Pichler Committed by GitHub

fix: don't log checking pending transactions as errors (#2046)

parent 16551b8d
......@@ -150,7 +150,8 @@ func (tm *transactionMonitor) watchPending() {
}
if err := tm.checkPending(block); err != nil {
tm.logger.Errorf("error while checking pending transactions: %v", err)
tm.logger.Tracef("error while checking pending transactions: %v", err)
continue
}
lastBlock = block
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment