Skip to content

Commit a5b20ed

Browse files
committed
Merge #8494: [init, wallet] ParameterInteraction() iff wallet enabled
fa5d276 [init] ParameterInteraction() iff wallet enabled (MarcoFalke)
2 parents 483e8e4 + fa5d276 commit a5b20ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -978,7 +978,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
978978
nBytesPerSigOp = GetArg("-bytespersigop", nBytesPerSigOp);
979979

980980
#ifdef ENABLE_WALLET
981-
if (!CWallet::ParameterInteraction())
981+
if (!fDisableWallet && !CWallet::ParameterInteraction())
982982
return false;
983983
#endif // ENABLE_WALLET
984984

0 commit comments

Comments
 (0)