Browse Source

Make z_sweepstatus match up with config option name

pull/195/head
Duke Leto 2 years ago
parent
commit
908240d07f
  1. 2
      src/wallet/rpcwallet.cpp

2
src/wallet/rpcwallet.cpp

@ -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));

Loading…
Cancel
Save