mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-22 19:49:34 +00:00
libwallet: add scanTransactions function
This commit is contained in:
parent
2e2ae5c88f
commit
6e0b5e2be5
2 changed files with 15 additions and 0 deletions
|
@ -30,7 +30,9 @@
|
||||||
|
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
#include <string>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "PendingTransaction.h"
|
#include "PendingTransaction.h"
|
||||||
#include "UnsignedTransaction.h"
|
#include "UnsignedTransaction.h"
|
||||||
|
@ -507,6 +509,16 @@ bool Wallet::importOutputs(const QString& path) {
|
||||||
return m_walletImpl->importOutputs(path.toStdString());
|
return m_walletImpl->importOutputs(path.toStdString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Wallet::scanTransactions(const QVector<QString> &txids)
|
||||||
|
{
|
||||||
|
std::vector<std::string> c;
|
||||||
|
for (const auto &v : txids)
|
||||||
|
{
|
||||||
|
c.push_back(v.toStdString());
|
||||||
|
}
|
||||||
|
return m_walletImpl->scanTransactions(c);
|
||||||
|
}
|
||||||
|
|
||||||
bool Wallet::refresh(bool historyAndSubaddresses /* = true */)
|
bool Wallet::refresh(bool historyAndSubaddresses /* = true */)
|
||||||
{
|
{
|
||||||
refreshingSet(true);
|
refreshingSet(true);
|
||||||
|
|
|
@ -212,6 +212,9 @@ public:
|
||||||
Q_INVOKABLE bool exportOutputs(const QString& path, bool all = false);
|
Q_INVOKABLE bool exportOutputs(const QString& path, bool all = false);
|
||||||
Q_INVOKABLE bool importOutputs(const QString& path);
|
Q_INVOKABLE bool importOutputs(const QString& path);
|
||||||
|
|
||||||
|
//! scan transactions
|
||||||
|
Q_INVOKABLE bool scanTransactions(const QVector<QString> &txids);
|
||||||
|
|
||||||
//! refreshes the wallet
|
//! refreshes the wallet
|
||||||
Q_INVOKABLE bool refresh(bool historyAndSubaddresses = true);
|
Q_INVOKABLE bool refresh(bool historyAndSubaddresses = true);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue