mirror of
https://github.com/btcsuite/btcd.git
synced 2025-02-24 06:47:59 +01:00
Use Warnf when processing directives.
This commit is contained in:
parent
2480cb3a87
commit
efcf90d83d
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ func (s *server) handleRelayInvMsg(state *peerState, iv *btcwire.InvVect) {
|
||||||
if p.filter.IsLoaded() {
|
if p.filter.IsLoaded() {
|
||||||
tx, err := s.txMemPool.FetchTransaction(&iv.Hash)
|
tx, err := s.txMemPool.FetchTransaction(&iv.Hash)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
peerLog.Warn("Attempt to relay tx %s "+
|
peerLog.Warnf("Attempt to relay tx %s "+
|
||||||
"that is not in the memory pool",
|
"that is not in the memory pool",
|
||||||
iv.Hash)
|
iv.Hash)
|
||||||
return
|
return
|
||||||
|
|
Loading…
Add table
Reference in a new issue