cherrypick d531cf36 from litecoin-project/litecoin
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user