Skip to content

Commit

Permalink
[Bug] Segfault with -enableswifttx=0 / -enableswifttx=false
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrs-X committed Mar 7, 2018
1 parent 8cecb34 commit 0bc66f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
}

if (!GetBoolArg("-enableswifttx", fEnableSwiftTX)) {
if (SoftSetArg("-swifttxdepth", 0))
if (SoftSetArg("-swifttxdepth", "0"))
LogPrintf("AppInit2 : parameter interaction: -enableswifttx=false -> setting -nSwiftTXDepth=0\n");
}

Expand Down

0 comments on commit 0bc66f3

Please sign in to comment.