Fix some issues in z_sweepstatus
This commit is contained in:
@@ -3334,10 +3334,9 @@ UniValue z_sweepstatus(const UniValue& params, bool fHelp, const CPubKey& mypk)
|
|||||||
LOCK2(cs_main, pwalletMain->cs_wallet);
|
LOCK2(cs_main, pwalletMain->cs_wallet);
|
||||||
|
|
||||||
UniValue ret(UniValue::VOBJ);
|
UniValue ret(UniValue::VOBJ);
|
||||||
auto amount_swept;
|
|
||||||
ret.push_back(Pair("zsweep", pwalletMain->fSweepEnabled));
|
ret.push_back(Pair("zsweep", pwalletMain->fSweepEnabled));
|
||||||
ret.push_back(Pair("running", pwalletMain->fSweepRunning));
|
ret.push_back(Pair("running", pwalletMain->fSweepRunning));
|
||||||
ret.push_back(Pair("amount_swept", amount_swept));
|
ret.push_back(Pair("amount_swept", pwalletMain->amountSwept));
|
||||||
|
|
||||||
if (pwalletMain->fConsolidationRunning) {
|
if (pwalletMain->fConsolidationRunning) {
|
||||||
ret.push_back(Pair("next_zsweep", pwalletMain->sweepInterval + chainActive.Tip()->GetHeight()));
|
ret.push_back(Pair("next_zsweep", pwalletMain->sweepInterval + chainActive.Tip()->GetHeight()));
|
||||||
|
|||||||
@@ -808,7 +808,9 @@ public:
|
|||||||
bool fSweepExternalEnabled = false;
|
bool fSweepExternalEnabled = false;
|
||||||
bool fSweepRunning = false;
|
bool fSweepRunning = false;
|
||||||
int nextSweep = 0;
|
int nextSweep = 0;
|
||||||
|
int amountSwept = 0;
|
||||||
int sweepInterval = 20;
|
int sweepInterval = 20;
|
||||||
|
int sweepFee = 10000;
|
||||||
int sweepMaxInputs = 200;
|
int sweepMaxInputs = 200;
|
||||||
std::string sweepAddress = "";
|
std::string sweepAddress = "";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user