aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2016-02-16 12:32:30 +0100
committerWladimir J. van der Laan <[email protected]>2016-02-16 12:37:03 +0100
commit8b70a64d62c6e64288762d062414cc979f880c54 (patch)
tree8cb1810c756eb6b2651cc82a0925667bf39e703c /src/net.cpp
parentMerge #7524: BIP-112: Mempool-only CHECKSEQUENCEVERIFY (diff)
parentfix spelling of advertise in src and doc (diff)
downloaddiscoin-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.cpp4
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);
}
}