mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
[Init] Avoid segfault when called with -enableinstantsend=0 (#1976)
This commit is contained in:
parent
3200eae9b1
commit
a9d8e2c5dd
@ -884,7 +884,7 @@ void InitParameterInteraction()
|
||||
}
|
||||
|
||||
if(!GetBoolArg("-enableinstantsend", fEnableInstantSend)){
|
||||
if (SoftSetArg("-instantsenddepth", 0))
|
||||
if (SoftSetArg("-instantsenddepth", "0"))
|
||||
LogPrintf("%s: parameter interaction: -enableinstantsend=false -> setting -nInstantSendDepth=0\n", __func__);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user