Merge pull request #2221

2d72f55 device: show address on device display (ph4r05)
This commit is contained in:
luigi1111
2019-08-06 15:01:48 -05:00
3 changed files with 32 additions and 0 deletions

View File

@@ -179,6 +179,10 @@ public:
Q_INVOKABLE void addSubaddress(const QString& label);
Q_INVOKABLE QString getSubaddressLabel(quint32 accountIndex, quint32 addressIndex) const;
Q_INVOKABLE void setSubaddressLabel(quint32 accountIndex, quint32 addressIndex, const QString &label);
Q_INVOKABLE void deviceShowAddressAsync(quint32 accountIndex, quint32 addressIndex, const QString &paymentId);
//! hw-device backed wallets
Q_INVOKABLE bool isHwBacked() const;
//! returns if view only wallet
Q_INVOKABLE bool viewOnly() const;
@@ -353,6 +357,7 @@ signals:
void deviceButtonPressed();
void transactionCommitted(bool status, PendingTransaction *t, const QStringList& txid);
void heightRefreshed(quint64 walletHeight, quint64 daemonHeight, quint64 targetHeight) const;
void deviceShowAddressShowed();
// emitted when transaction is created async
void transactionCreated(PendingTransaction * transaction, QString address, QString paymentId, quint32 mixinCount);