mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-20 11:01:09 +00:00
42 lines
997 B
C
42 lines
997 B
C
|
#ifndef PENDINGTRANSACTION_H
|
||
|
#define PENDINGTRANSACTION_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
#include <wallet/wallet2_api.h>
|
||
|
|
||
|
//namespace Bitmonero {
|
||
|
//class PendingTransaction;
|
||
|
//}
|
||
|
|
||
|
class PendingTransaction : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_PROPERTY(Status status READ status)
|
||
|
Q_PROPERTY(QString errorString READ errorString)
|
||
|
Q_PROPERTY(quint64 amount READ amount)
|
||
|
Q_PROPERTY(quint64 dust READ dust)
|
||
|
Q_PROPERTY(quint64 fee READ fee)
|
||
|
|
||
|
public:
|
||
|
enum Status {
|
||
|
Status_Ok = Bitmonero::PendingTransaction::Status_Ok,
|
||
|
Status_Error = Bitmonero::PendingTransaction::Status_Error
|
||
|
};
|
||
|
|
||
|
Status status() const;
|
||
|
QString errorString() const;
|
||
|
Q_INVOKABLE bool commit();
|
||
|
quint64 amount() const;
|
||
|
quint64 dust() const;
|
||
|
quint64 fee() const;
|
||
|
private:
|
||
|
explicit PendingTransaction(Bitmonero::PendingTransaction * pt, QObject *parent = 0);
|
||
|
|
||
|
private:
|
||
|
friend class Wallet;
|
||
|
Bitmonero::PendingTransaction * m_pimpl;
|
||
|
};
|
||
|
|
||
|
#endif // PENDINGTRANSACTION_H
|