aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-12-19 16:24:15 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-12-19 16:26:27 +0100
commit6e718f94358bd023e5867d94c683a5635a1ff3f9 (patch)
tree420a5cd6e0a0eba6a289965e4417aeddf7123a5b
parentc76c9d2e7f3bc3aba6bb9415ddb8e017860e03d7 (diff)
downloadbitcoin-6e718f94358bd023e5867d94c683a5635a1ff3f9.tar.xz
Remove outdated comment about NTP
The comment has been around since 0.1, but NTP inside the client isn't deemed necessary so remove the comment to avoid confusion.
-rw-r--r--src/net.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 9e492d2fc0..2773b63f7c 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -445,7 +445,6 @@ void CNode::PushVersion()
{
int nBestHeight = g_signals.GetHeight().get_value_or(0);
- /// when NTP implemented, change to just nTime = GetAdjustedTime()
int64_t nTime = (fInbound ? GetAdjustedTime() : GetTime());
CAddress addrYou = (addr.IsRoutable() && !IsProxy(addr) ? addr : CAddress(CService("0.0.0.0",0)));
CAddress addrMe = GetLocalAddress(&addr);