From 97d9abc05201912ca11f33736ad5f5608c90626f Mon Sep 17 00:00:00 2001 From: sunerok Date: Mon, 9 Sep 2024 18:41:55 -0400 Subject: [PATCH] remove paint --- src/init.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index cf292f7b..6df8b0dc 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1335,13 +1335,11 @@ bool AppInitMain() int64_t nStart; #if defined(USE_SSE2) - if (scrypt_detect_sse2()) { + if (scrypt_detect_sse2()) { LogPrintf("scrypt: using SSE2 implementation\n"); } else { LogPrintf("scrypt: using generic implementation\n"); - } -#endif - + } // ********************************************************* Step 5: verify wallet database integrity if (!g_wallet_init_interface.Verify()) return false;