mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
Properly forbid -salvagewallet and -zapwallettxes for multi wallet.
This commit is contained in:
parent
7666250ffb
commit
dd97a529ad
@ -4033,20 +4033,24 @@ bool CWallet::ParameterInteraction()
|
|||||||
LogPrintf("%s: parameter interaction: -blocksonly=1 -> setting -walletbroadcast=0\n", __func__);
|
LogPrintf("%s: parameter interaction: -blocksonly=1 -> setting -walletbroadcast=0\n", __func__);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (GetBoolArg("-salvagewallet", false) && SoftSetBoolArg("-rescan", true)) {
|
if (GetBoolArg("-salvagewallet", false)) {
|
||||||
if (is_multiwallet) {
|
if (is_multiwallet) {
|
||||||
return InitError(strprintf("%s is only allowed with a single wallet file", "-salvagewallet"));
|
return InitError(strprintf("%s is only allowed with a single wallet file", "-salvagewallet"));
|
||||||
}
|
}
|
||||||
// Rewrite just private keys: rescan to find transactions
|
// Rewrite just private keys: rescan to find transactions
|
||||||
LogPrintf("%s: parameter interaction: -salvagewallet=1 -> setting -rescan=1\n", __func__);
|
if (SoftSetBoolArg("-rescan", true)) {
|
||||||
|
LogPrintf("%s: parameter interaction: -salvagewallet=1 -> setting -rescan=1\n", __func__);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// -zapwallettx implies a rescan
|
// -zapwallettx implies a rescan
|
||||||
if (GetBoolArg("-zapwallettxes", false) && SoftSetBoolArg("-rescan", true)) {
|
if (GetBoolArg("-zapwallettxes", false)) {
|
||||||
if (is_multiwallet) {
|
if (is_multiwallet) {
|
||||||
return InitError(strprintf("%s is only allowed with a single wallet file", "-zapwallettxes"));
|
return InitError(strprintf("%s is only allowed with a single wallet file", "-zapwallettxes"));
|
||||||
}
|
}
|
||||||
LogPrintf("%s: parameter interaction: -zapwallettxes=<mode> -> setting -rescan=1\n", __func__);
|
if (SoftSetBoolArg("-rescan", true)) {
|
||||||
|
LogPrintf("%s: parameter interaction: -zapwallettxes=<mode> -> setting -rescan=1\n", __func__);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_multiwallet) {
|
if (is_multiwallet) {
|
||||||
|
Loading…
Reference in New Issue
Block a user