chainntnfs/btcdnotify: modify logging level from error to warn

This commit is contained in:
Olaoluwa Osuntokun 2017-05-16 18:46:50 -07:00
parent 75d5396445
commit 49e27c77dd
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ func (b *BtcdNotifier) attemptHistoricalDispatch(msg *confirmationsNotification,
tx, err := b.chainConn.GetRawTransactionVerbose(msg.txid)
if err != nil || tx == nil || tx.BlockHash == "" {
if err != nil {
chainntnfs.Log.Errorf("unable to query for txid(%v): %v",
chainntnfs.Log.Warnf("unable to query for txid(%v): %v",
msg.txid, err)
}
return false