mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-06 19:09:39 +00:00
111 lines
2.4 KiB
C++
111 lines
2.4 KiB
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2024 The Monero Project
|
|
|
|
#include "PendingTransaction.h"
|
|
|
|
#include <QVariant>
|
|
|
|
PendingTransaction::Status PendingTransaction::status() const
|
|
{
|
|
return static_cast<Status>(m_pimpl->status());
|
|
}
|
|
|
|
QString PendingTransaction::errorString() const
|
|
{
|
|
return QString::fromStdString(m_pimpl->errorString());
|
|
}
|
|
|
|
const std::exception_ptr PendingTransaction::getException() const {
|
|
return m_pimpl->getException();
|
|
}
|
|
|
|
bool PendingTransaction::commit()
|
|
{
|
|
return m_pimpl->commit();
|
|
}
|
|
|
|
bool PendingTransaction::saveToFile(const QString &fileName)
|
|
{
|
|
return m_pimpl->commit(fileName.toStdString());
|
|
}
|
|
|
|
quint64 PendingTransaction::amount() const
|
|
{
|
|
return m_pimpl->amount();
|
|
}
|
|
|
|
quint64 PendingTransaction::dust() const
|
|
{
|
|
return m_pimpl->dust();
|
|
}
|
|
|
|
quint64 PendingTransaction::fee() const
|
|
{
|
|
return m_pimpl->fee();
|
|
}
|
|
|
|
QStringList PendingTransaction::txid() const
|
|
{
|
|
QStringList list;
|
|
std::vector<std::string> txid = m_pimpl->txid();
|
|
for (const auto &t: txid)
|
|
list.append(QString::fromStdString(t));
|
|
return list;
|
|
}
|
|
|
|
|
|
quint64 PendingTransaction::txCount() const
|
|
{
|
|
return m_pimpl->txCount();
|
|
}
|
|
|
|
QList<QVariant> PendingTransaction::subaddrIndices() const
|
|
{
|
|
std::vector<std::set<uint32_t>> subaddrIndices = m_pimpl->subaddrIndices();
|
|
QList<QVariant> result;
|
|
for (const auto& x : subaddrIndices)
|
|
for (uint32_t i : x)
|
|
result.push_back(i);
|
|
return result;
|
|
}
|
|
|
|
std::string PendingTransaction::unsignedTxToBin() const {
|
|
return m_pimpl->unsignedTxToBin();
|
|
}
|
|
|
|
QString PendingTransaction::unsignedTxToBase64() const
|
|
{
|
|
return QString::fromStdString(m_pimpl->unsignedTxToBase64());
|
|
}
|
|
|
|
QString PendingTransaction::signedTxToHex(int index) const
|
|
{
|
|
return QString::fromStdString(m_pimpl->signedTxToHex(index));
|
|
}
|
|
|
|
quint64 PendingTransaction::weight(int index) const
|
|
{
|
|
return m_pimpl->weight(index);
|
|
}
|
|
|
|
PendingTransactionInfo * PendingTransaction::transaction(int index) const {
|
|
return m_pending_tx_info[index];
|
|
}
|
|
|
|
void PendingTransaction::refresh()
|
|
{
|
|
qDeleteAll(m_pending_tx_info);
|
|
m_pending_tx_info.clear();
|
|
|
|
m_pimpl->refresh();
|
|
for (const auto i : m_pimpl->getAll()) {
|
|
m_pending_tx_info.append(new PendingTransactionInfo(i, this));
|
|
}
|
|
}
|
|
|
|
PendingTransaction::PendingTransaction(Monero::PendingTransaction *pt, QObject *parent)
|
|
: QObject(parent)
|
|
, m_pimpl(pt)
|
|
{
|
|
|
|
}
|