diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-02-16 12:32:30 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-02-16 12:37:03 +0100 |
| commit | 8b70a64d62c6e64288762d062414cc979f880c54 (patch) | |
| tree | 8cb1810c756eb6b2651cc82a0925667bf39e703c /src/net.cpp | |
| parent | Merge #7524: BIP-112: Mempool-only CHECKSEQUENCEVERIFY (diff) | |
| parent | fix spelling of advertise in src and doc (diff) | |
| download | discoin-8b70a64d62c6e64288762d062414cc979f880c54.tar.xz discoin-8b70a64d62c6e64288762d062414cc979f880c54.zip | |
Merge #7526: fix spelling of advertise (shows up in the debug log)
37767fd fix spelling of advertise in src and doc (jloughry)
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp index d9c4c1173..e06e5255d 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -205,7 +205,7 @@ bool IsPeerAddrLocalGood(CNode *pnode) } // pushes our own address to a peer -void AdvertizeLocal(CNode *pnode) +void AdvertiseLocal(CNode *pnode) { if (fListen && pnode->fSuccessfullyConnected) { @@ -220,7 +220,7 @@ void AdvertizeLocal(CNode *pnode) } if (addrLocal.IsRoutable()) { - LogPrintf("AdvertizeLocal: advertizing address %s\n", addrLocal.ToString()); + LogPrintf("AdvertiseLocal: advertising address %s\n", addrLocal.ToString()); pnode->PushAddress(addrLocal); } } |