mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-04 18:17:27 -04:00
libwallet: add scanTransactions function
This commit is contained in:
@@ -30,7 +30,9 @@
|
||||
|
||||
#include <chrono>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
#include <thread>
|
||||
#include <vector>
|
||||
|
||||
#include "PendingTransaction.h"
|
||||
#include "UnsignedTransaction.h"
|
||||
@@ -507,6 +509,16 @@ bool Wallet::importOutputs(const QString& path) {
|
||||
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 */)
|
||||
{
|
||||
refreshingSet(true);
|
||||
|
||||
Reference in New Issue
Block a user