forked from Public/monero-gui
Merge pull request #122
42086b5remove old reference to passwordDialog (Jacob Brydolf)4a1e22ahistory: transaction details button + popup (Jacob Brydolf)cfa8929wallet api: added getTxKey() (Jacob Brydolf)d628795added standardDialog component (Jacob Brydolf)
This commit is contained in:
@@ -270,6 +270,11 @@ QString Wallet::getUserNote(const QString &txid) const
|
||||
return QString::fromStdString(m_walletImpl->getUserNote(txid.toStdString()));
|
||||
}
|
||||
|
||||
QString Wallet::getTxKey(const QString &txid) const
|
||||
{
|
||||
return QString::fromStdString(m_walletImpl->getTxKey(txid.toStdString()));
|
||||
}
|
||||
|
||||
Wallet::Wallet(Bitmonero::Wallet *w, QObject *parent)
|
||||
: QObject(parent)
|
||||
, m_walletImpl(w)
|
||||
|
||||
@@ -141,6 +141,8 @@ public:
|
||||
Q_INVOKABLE bool setUserNote(const QString &txid, const QString ¬e);
|
||||
Q_INVOKABLE QString getUserNote(const QString &txid) const;
|
||||
|
||||
Q_INVOKABLE QString getTxKey(const QString &txid) const;
|
||||
|
||||
// TODO: setListenter() when it implemented in API
|
||||
signals:
|
||||
// emitted on every event happened with wallet
|
||||
|
||||
Reference in New Issue
Block a user