Make z_sweepstatus match up with config option name

This commit is contained in:
Duke Leto
2022-09-13 01:00:56 -04:00
parent b687d5f76e
commit 908240d07f

View File

@@ -3369,7 +3369,7 @@ UniValue z_sweepstatus(const UniValue& params, bool fHelp, const CPubKey& mypk)
ret.push_back(Pair("next_zsweep", pwalletMain->nextSweep));
ret.push_back(Pair("zsweepinterval", pwalletMain->sweepInterval));
ret.push_back(Pair("zsweepaddress", pwalletMain->sweepAddress));
ret.push_back(Pair("zsweepexcludeaddress", pwalletMain->sweepExcludeAddress));
ret.push_back(Pair("zsweepexclude", pwalletMain->sweepExcludeAddress));
ret.push_back(Pair("zsweepmaxinputs", pwalletMain->sweepMaxInputs));
ret.push_back(Pair("zsweepfee", pwalletMain->sweepFee));
ret.push_back(Pair("zsweepexternal", pwalletMain->fSweepExternalEnabled));