diff --git a/batch_spend_reporter.go b/batch_spend_reporter.go index da5b2eded..f82e180a3 100644 --- a/batch_spend_reporter.go +++ b/batch_spend_reporter.go @@ -210,8 +210,8 @@ func (b *batchSpendReporter) findInitialTransactions(block *wire.MsgBlock, tx, ok := initialTxns[req.Input.OutPoint] switch { case !ok: - log.Errorf("Failed to find outpoint %s -- "+ - "txid not found in block", req.Input.OutPoint) + log.Debugf("Outpoint %v not found in block %d ", + req.Input.OutPoint, height) initialTxns[req.Input.OutPoint] = nil case tx != nil: log.Tracef("Block %d creates output %s", diff --git a/query.go b/query.go index 3a60c10c0..79f9cad21 100644 --- a/query.go +++ b/query.go @@ -1342,7 +1342,7 @@ func (s *ChainService) sendTransaction(tx *wire.MsgTx, options ...QueryOption) e // error as the reliable broadcaster will take care of broadcasting this // transaction upon every block connected/disconnected. if numReplied == 0 { - log.Warnf("No peers replied to inv message for transaction %v", + log.Debugf("No peers replied to inv message for transaction %v", tx.TxHash()) return nil }