2020-10-07 10:36:04 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2023-01-02 19:30:11 +00:00
|
|
|
// SPDX-FileCopyrightText: 2020-2023 The Monero Project
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
#ifndef PENDINGTRANSACTION_H
|
|
|
|
#define PENDINGTRANSACTION_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QList>
|
|
|
|
|
|
|
|
#include <wallet/api/wallet2_api.h>
|
2020-10-16 03:05:05 +00:00
|
|
|
#include "PendingTransactionInfo.h"
|
|
|
|
|
2020-10-07 10:36:04 +00:00
|
|
|
class PendingTransaction : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum Status {
|
|
|
|
Status_Ok = Monero::PendingTransaction::Status_Ok,
|
|
|
|
Status_Error = Monero::PendingTransaction::Status_Error,
|
2020-10-16 03:05:05 +00:00
|
|
|
Status_Critical = Monero::PendingTransaction::Status_Critical
|
2020-10-07 10:36:04 +00:00
|
|
|
};
|
|
|
|
Q_ENUM(Status)
|
|
|
|
|
|
|
|
enum Priority {
|
|
|
|
Priority_Low = Monero::PendingTransaction::Priority_Low,
|
|
|
|
Priority_Medium = Monero::PendingTransaction::Priority_Medium,
|
|
|
|
Priority_High = Monero::PendingTransaction::Priority_High
|
|
|
|
};
|
|
|
|
Q_ENUM(Priority)
|
|
|
|
|
|
|
|
|
|
|
|
Status status() const;
|
|
|
|
QString errorString() const;
|
2022-03-12 14:03:33 +00:00
|
|
|
bool commit();
|
2020-10-16 03:05:05 +00:00
|
|
|
bool saveToFile(const QString &fileName);
|
2020-10-07 10:36:04 +00:00
|
|
|
quint64 amount() const;
|
|
|
|
quint64 dust() const;
|
|
|
|
quint64 fee() const;
|
|
|
|
QStringList txid() const;
|
|
|
|
quint64 txCount() const;
|
|
|
|
QList<QVariant> subaddrIndices() const;
|
2020-10-16 03:05:05 +00:00
|
|
|
QByteArray unsignedTxToBin() const;
|
|
|
|
QString unsignedTxToBase64() const;
|
|
|
|
QString signedTxToHex(int index) const;
|
|
|
|
void refresh();
|
|
|
|
|
|
|
|
PendingTransactionInfo * transaction(int index) const;
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
private:
|
2020-10-16 03:05:05 +00:00
|
|
|
explicit PendingTransaction(Monero::PendingTransaction * pt, QObject *parent = nullptr);
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
friend class Wallet;
|
|
|
|
Monero::PendingTransaction * m_pimpl;
|
2020-10-16 03:05:05 +00:00
|
|
|
mutable QList<PendingTransactionInfo*> m_pending_tx_info;
|
2020-10-07 10:36:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PENDINGTRANSACTION_H
|