Skip to content

Commit

Permalink
fix: don't log checking pending transactions as errors (#2046)
Browse files Browse the repository at this point in the history
  • Loading branch information
ralph-pichler authored Jun 10, 2021
1 parent 16551b8 commit 6d2b270
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/transaction/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6d2b270

Please sign in to comment.