diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-12-19 16:24:15 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-12-19 16:26:27 +0100 |
| commit | 6e718f94358bd023e5867d94c683a5635a1ff3f9 (patch) | |
| tree | 420a5cd6e0a0eba6a289965e4417aeddf7123a5b | |
| parent | Merge pull request #5501 (diff) | |
| download | discoin-6e718f94358bd023e5867d94c683a5635a1ff3f9.tar.xz discoin-6e718f94358bd023e5867d94c683a5635a1ff3f9.zip | |
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.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index 9e492d2fc..2773b63f7 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); |