chainntnfs/neutrinonotify/neutrino: fix debug logs

This commit is contained in:
Conner Fromknecht 2018-10-18 16:16:30 -07:00
parent e03c818aa7
commit ba28ec3be0
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7

@ -465,13 +465,13 @@ out:
n.heightMtx.Lock()
if update.height != uint32(n.bestHeight) {
chainntnfs.Log.Infof("Missed disconnected" +
chainntnfs.Log.Infof("Missed disconnected " +
"blocks, attempting to catch up")
}
hash, err := n.p2pNode.GetBlockHash(int64(n.bestHeight))
if err != nil {
chainntnfs.Log.Errorf("Unable to fetch block hash"+
chainntnfs.Log.Errorf("Unable to fetch block hash "+
"for height %d: %v", n.bestHeight, err)
n.heightMtx.Unlock()
continue