mirror of
https://github.com/monero-project/monero.git
synced 2025-12-12 04:53:22 -05:00
Wallet API: add rescanSpent()
This commit is contained in:
parent
2806842200
commit
46550c0b4f
3 changed files with 24 additions and 1 deletions
|
|
@ -1217,6 +1217,24 @@ bool WalletImpl::parse_uri(const std::string &uri, std::string &address, std::st
|
|||
return m_wallet->parse_uri(uri, address, payment_id, amount, tx_description, recipient_name, unknown_parameters, error);
|
||||
}
|
||||
|
||||
bool WalletImpl::rescanSpent()
|
||||
{
|
||||
clearStatus();
|
||||
if (!trustedDaemon()) {
|
||||
m_status = Status_Error;
|
||||
m_errorString = tr("Rescan spent can only be used with a trusted daemon");
|
||||
return false;
|
||||
}
|
||||
try {
|
||||
m_wallet->rescan_spent();
|
||||
} catch (const std::exception &e) {
|
||||
LOG_ERROR(__FUNCTION__ << " error: " << e.what());
|
||||
m_status = Status_Error;
|
||||
m_errorString = e.what();
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
} // namespace
|
||||
|
||||
namespace Bitmonero = Monero;
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ public:
|
|||
void setRefreshFromBlockHeight(uint64_t refresh_from_block_height);
|
||||
void setRecoveringFromSeed(bool recoveringFromSeed);
|
||||
bool watchOnly() const;
|
||||
|
||||
bool rescanSpent();
|
||||
|
||||
|
||||
PendingTransaction * createTransaction(const std::string &dst_addr, const std::string &payment_id,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue