mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-12 01:27:26 -04:00
Write support for tx notes
Support still needs adding for displaying them in the history, but at least they're saved in the cache now, and not ignored.
This commit is contained in:
@@ -17,6 +17,7 @@ class PendingTransaction : public QObject
|
||||
Q_PROPERTY(quint64 amount READ amount)
|
||||
Q_PROPERTY(quint64 dust READ dust)
|
||||
Q_PROPERTY(quint64 fee READ fee)
|
||||
Q_PROPERTY(QList<QString> txid READ txid)
|
||||
|
||||
public:
|
||||
enum Status {
|
||||
@@ -39,6 +40,7 @@ public:
|
||||
quint64 amount() const;
|
||||
quint64 dust() const;
|
||||
quint64 fee() const;
|
||||
QList<QString> txid() const;
|
||||
private:
|
||||
explicit PendingTransaction(Bitmonero::PendingTransaction * pt, QObject *parent = 0);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user