From 76a9aab2f48c26f358b7be63a9ca3ca663575f7d Mon Sep 17 00:00:00 2001 From: Ross Nicoll Date: Mon, 27 Aug 2018 12:34:34 +0100 Subject: Scrypt n=1024 PoW hash Scrypt n=1024 PoW hash based upon Colin Percival's Tarnsnap (2009) Modified by Artforz, coblee, pooler, wtogami, Nikolay Belikov, Adrian Gallagher, Ross Nicoll --- src/init.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/init.cpp') diff --git a/src/init.cpp b/src/init.cpp index c16009a0b..88bfbcff0 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1293,6 +1293,10 @@ bool AppInitMain() return InitError(_("Unable to start HTTP server. See debug log for details.")); } +#if defined(USE_SSE2) + scrypt_detect_sse2(); +#endif + // ********************************************************* Step 5: verify wallet database integrity if (!g_wallet_init_interface.Verify()) return false; -- cgit v1.2.3