From fa5d276c906214ef959529fd6cde0b78bd67ed8e Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Wed, 10 Aug 2016 08:39:46 +0200 Subject: [PATCH] [init] ParameterInteraction() iff wallet enabled --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 4d9de6cfc..44204d93b 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -966,7 +966,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) nBytesPerSigOp = GetArg("-bytespersigop", nBytesPerSigOp); #ifdef ENABLE_WALLET - if (!CWallet::ParameterInteraction()) + if (!fDisableWallet && !CWallet::ParameterInteraction()) return false; #endif // ENABLE_WALLET