2016-06-08 10:53:24 +00:00
|
|
|
#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
|
|
|
|
};
|
|
|
|
|
2016-06-16 14:13:46 +00:00
|
|
|
Q_ENUM(Status)
|
|
|
|
|
2016-06-08 10:53:24 +00:00
|
|
|
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
|