diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-09-19 11:38:10 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-09-19 11:38:16 +0200 |
| commit | a5b20edd3dc678949db4605025a3e0dd747124c2 (patch) | |
| tree | 337f6e2b014c4e0770a7545715c19d0f987a388f /src/init.cpp | |
| parent | Merge #8724: [qa] walletbackup: Sync blocks inside the loop (diff) | |
| parent | [init] ParameterInteraction() iff wallet enabled (diff) | |
| download | discoin-a5b20edd3dc678949db4605025a3e0dd747124c2.tar.xz discoin-a5b20edd3dc678949db4605025a3e0dd747124c2.zip | |
Merge #8494: [init, wallet] ParameterInteraction() iff wallet enabled
fa5d276 [init] ParameterInteraction() iff wallet enabled (MarcoFalke)
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 8d1e330a0..32b171925 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -978,7 +978,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 |