Expose get/set attrs for wallet cache in libwalletqt, requires #5534

This commit is contained in:
dsc 2019-05-25 21:16:05 +02:00
parent c286c7e5a8
commit ab47b4a783
No known key found for this signature in database
GPG key ID: 7BBC83D7A8810AAB
2 changed files with 13 additions and 0 deletions

View file

@ -634,6 +634,15 @@ void Wallet::setPaymentId(const QString &paymentId)
m_paymentId = paymentId; m_paymentId = paymentId;
} }
QString Wallet::getCacheAttribute(const QString &key) const {
return QString::fromStdString(m_walletImpl->getCacheAttribute(key.toStdString()));
}
bool Wallet::setCacheAttribute(const QString &key, const QString &val)
{
return m_walletImpl->setCacheAttribute(key.toStdString(), val.toStdString());
}
bool Wallet::setUserNote(const QString &txid, const QString &note) bool Wallet::setUserNote(const QString &txid, const QString &note)
{ {
return m_walletImpl->setUserNote(txid.toStdString(), note.toStdString()); return m_walletImpl->setUserNote(txid.toStdString(), note.toStdString());

View file

@ -294,6 +294,10 @@ public:
void setPaymentId(const QString &paymentId); void setPaymentId(const QString &paymentId);
//! Namespace your cacheAttribute keys to avoid collisions
Q_INVOKABLE bool setCacheAttribute(const QString &key, const QString &val);
Q_INVOKABLE QString getCacheAttribute(const QString &key) const;
Q_INVOKABLE bool setUserNote(const QString &txid, const QString &note); Q_INVOKABLE bool setUserNote(const QString &txid, const QString &note);
Q_INVOKABLE QString getUserNote(const QString &txid) const; Q_INVOKABLE QString getUserNote(const QString &txid) const;
Q_INVOKABLE QString getTxKey(const QString &txid) const; Q_INVOKABLE QString getTxKey(const QString &txid) const;