fix spelling of advertise in src and doc

Github-Pull: #7526
Rebased-From: 37767fd46f
This commit is contained in:
jloughry
2016-02-12 11:35:32 -07:00
committed by MarcoFalke
parent a9e73f71d4
commit 64fd0ce1d9
5 changed files with 10 additions and 10 deletions

View File

@@ -203,7 +203,7 @@ bool IsPeerAddrLocalGood(CNode *pnode)
}
// pushes our own address to a peer
void AdvertizeLocal(CNode *pnode)
void AdvertiseLocal(CNode *pnode)
{
if (fListen && pnode->fSuccessfullyConnected)
{
@@ -218,7 +218,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);
}
}