Switch a log.Error to Debug

This commit is contained in:
Josh Rickmar 2013-10-14 14:04:36 -04:00
parent a80f9da6c3
commit 340e8b999e

View file

@ -1240,7 +1240,7 @@ func (s *rpcServer) newBlockNotifyCheckTxOut(db btcdb.Db, block *btcutil.Block,
for i, txout := range tx.Tx.TxOut {
_, txaddrhash, err := btcscript.ScriptToAddrHash(txout.PkScript)
if err != nil {
log.Error("Error getting payment address from tx; dropping any Tx notifications.")
log.Debug("Error getting payment address from tx; dropping any Tx notifications.")
break
}
s.ws.txRequests.RLock()