From 22f9b069035c9ba0416a62714db167eea5ba762f Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Mon, 24 Sep 2012 13:53:44 -0400 Subject: Send 'mempool' P2P command at the start of each P2P session to query remote node mempool contents. --- src/init.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/init.cpp') diff --git a/src/init.cpp b/src/init.cpp index dc425da64..df3a0f1fd 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -25,6 +25,7 @@ using namespace boost; CWallet* pwalletMain; CClientUIInterface uiInterface; +int64 nTimeNodeStart; ////////////////////////////////////////////////////////////////////////////// // @@ -469,8 +470,10 @@ 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", GetTime()).c_str()); + printf("Startup time: %s\n", DateTimeStrFormat("%x %H:%M:%S", nTimeNodeStart).c_str()); printf("Default data directory %s\n", GetDefaultDataDir().string().c_str()); printf("Used data directory %s\n", GetDataDir().string().c_str()); std::ostringstream strErrors; -- cgit v1.2.3