mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-07 17:17:26 -04:00
wallet api: added getTxKey()
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)
|
||||
|
||||
Reference in New Issue
Block a user