cherrypick d531cf36 from litecoin-project/litecoin

This commit is contained in:
barrystyle
2019-05-29 04:10:37 +08:00
parent be92be5644
commit 532eaf649f
15 changed files with 621 additions and 8 deletions
+9
View File
@@ -71,6 +71,10 @@
#include <zmq/zmqrpc.h>
#endif
#ifdef USE_SSE2
#include <crypto/scrypt.h>
#endif
bool fFeeEstimatesInitialized = false;
static const bool DEFAULT_PROXYRANDOMIZE = true;
static const bool DEFAULT_REST_ENABLE = false;
@@ -1313,6 +1317,11 @@ bool AppInitMain(InitInterfaces& interfaces)
if (!AppInitServers())
return InitError(_("Unable to start HTTP server. See debug log for details."));
}
#if defined(USE_SSE2)
std::string sse2detect = scrypt_detect_sse2();
LogPrintf("%s\n", sse2detect);
#endif
// ********************************************************* Step 5: verify wallet database integrity
for (const auto& client : interfaces.chain_clients) {