aboutsummaryrefslogtreecommitdiff
path: root/src/torcontrol.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/torcontrol.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/torcontrol.cpp')
-rw-r--r--src/torcontrol.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/torcontrol.cpp b/src/torcontrol.cpp
index 2c68526df..10170dbce 100644
--- a/src/torcontrol.cpp
+++ b/src/torcontrol.cpp
@@ -434,7 +434,7 @@ void TorController::add_onion_cb(TorControlConnection& conn, const TorControlRep
}
service = CService(service_id+".onion", GetListenPort(), false);
- LogPrintf("tor: Got service ID %s, advertizing service %s\n", service_id, service.ToString());
+ LogPrintf("tor: Got service ID %s, advertising service %s\n", service_id, service.ToString());
if (WriteBinaryFile(GetPrivateKeyFile(), private_key)) {
LogPrint("tor", "tor: Cached service private key to %s\n", GetPrivateKeyFile());
} else {
@@ -615,7 +615,7 @@ void TorController::connected_cb(TorControlConnection& conn)
void TorController::disconnected_cb(TorControlConnection& conn)
{
- // Stop advertizing service when disconnected
+ // Stop advertising service when disconnected
if (service.IsValid())
RemoveLocal(service);
service = CService();