aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2018-08-27 12:34:34 +0100
committerRoss Nicoll <[email protected]>2019-04-03 05:16:26 +0000
commit76a9aab2f48c26f358b7be63a9ca3ca663575f7d (patch)
tree3ee38a8c6e47d5327fcf42babe54d22c67098fe5 /src/init.cpp
parentdoc: Fill in authors and changelog for 0.17.1 release notes (diff)
downloaddiscoin-76a9aab2f48c26f358b7be63a9ca3ca663575f7d.tar.xz
discoin-76a9aab2f48c26f358b7be63a9ca3ca663575f7d.zip
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
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp4
1 files changed, 4 insertions, 0 deletions
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;