diff options
| author | MarcoFalke <[email protected]> | 2016-08-10 08:39:46 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-08-10 08:40:57 +0200 |
| commit | fa5d276c906214ef959529fd6cde0b78bd67ed8e (patch) | |
| tree | 0a879fb5714d48267087eda485b26e226cf80496 /src/init.cpp | |
| parent | Merge #8444: Fix p2p-feefilter.py for changed tx relay behavior (diff) | |
| download | discoin-fa5d276c906214ef959529fd6cde0b78bd67ed8e.tar.xz discoin-fa5d276c906214ef959529fd6cde0b78bd67ed8e.zip | |
[init] ParameterInteraction() iff wallet enabled
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 |