Browse Source

[init] ParameterInteraction() iff wallet enabled

0.14
MarcoFalke 8 years ago
parent
commit
fa5d276c90
  1. 2
      src/init.cpp

2
src/init.cpp

@ -966,7 +966,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) @@ -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

Loading…
Cancel
Save