aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2012-10-08 18:14:15 -0400
committerJeff Garzik <jgarzik@redhat.com>2012-10-08 18:14:15 -0400
commitb855abb8db3bd980312274d7b5276c9efba6a5c1 (patch)
treea41c410e8fe04edd5e01d714979b1ef09b44cd42 /src/init.cpp
parent56caa38a6719e133a2f1c17275eb596ab8f1c463 (diff)
downloadbitcoin-b855abb8db3bd980312274d7b5276c9efba6a5c1.tar.xz
Revert "Send 'mempool' P2P command at the start of each P2P session"
Fat-fingered on github, and merged this too early. This reverts commit 22f9b069035c9ba0416a62714db167eea5ba762f.
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/init.cpp b/src/init.cpp
index b910c2dd76..d271893644 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -25,7 +25,6 @@ using namespace boost;
CWallet* pwalletMain;
CClientUIInterface uiInterface;
-int64 nTimeNodeStart;
//////////////////////////////////////////////////////////////////////////////
//
@@ -471,10 +470,8 @@ bool AppInit2()
printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
printf("Bitcoin version %s (%s)\n", FormatFullVersion().c_str(), CLIENT_DATE.c_str());
printf("Using OpenSSL version %s\n", SSLeay_version(SSLEAY_VERSION));
-
- nTimeNodeStart = GetTime();
if (!fLogTimestamps)
- printf("Startup time: %s\n", DateTimeStrFormat("%x %H:%M:%S", nTimeNodeStart).c_str());
+ printf("Startup time: %s\n", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
printf("Default data directory %s\n", GetDefaultDataDir().string().c_str());
printf("Used data directory %s\n", pszDataDir);
std::ostringstream strErrors;