diff --git a/doc/man/dash-qt.1 b/doc/man/dash-qt.1 index 80d1891a5b..31475512e3 100644 --- a/doc/man/dash-qt.1 +++ b/doc/man/dash-qt.1 @@ -583,11 +583,6 @@ InstantSend options: Enable InstantSend, show confirmations for locked transactions (0\-1, default: 1) .HP -\fB\-instantsenddepth=\fR -.IP -Show N confirmations for a successfully locked transaction (0\-60, -default: 5) -.HP \fB\-instantsendnotify=\fR .IP Execute command when a wallet InstantSend transaction is successfully diff --git a/doc/man/dashd.1 b/doc/man/dashd.1 index c58b2c889c..40f6556690 100644 --- a/doc/man/dashd.1 +++ b/doc/man/dashd.1 @@ -584,11 +584,6 @@ InstantSend options: Enable InstantSend, show confirmations for locked transactions (0\-1, default: 1) .HP -\fB\-instantsenddepth=\fR -.IP -Show N confirmations for a successfully locked transaction (0\-60, -default: 5) -.HP \fB\-instantsendnotify=\fR .IP Execute command when a wallet InstantSend transaction is successfully diff --git a/src/init.cpp b/src/init.cpp index 9c789b2a70..854e371dd6 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -947,11 +947,6 @@ void InitParameterInteraction() LogPrintf("%s: parameter interaction: -whitelistforcerelay=1 -> setting -whitelistrelay=1\n", __func__); } - if(!GetBoolArg("-enableinstantsend", fEnableInstantSend)){ - if (SoftSetArg("-instantsenddepth", "0")) - LogPrintf("%s: parameter interaction: -enableinstantsend=false -> setting -nInstantSendDepth=0\n", __func__); - } - #ifdef ENABLE_WALLET int nLiqProvTmp = GetArg("-liquidityprovider", DEFAULT_PRIVATESEND_LIQUIDITY); if (nLiqProvTmp > 0) {