From 4c666141e3ee68868ccea7dd34d5c1875378cf5a Mon Sep 17 00:00:00 2001 From: dsc Date: Fri, 10 May 2019 17:45:44 +0200 Subject: expose set/get walletcache attribute functionality in wallet api --- src/wallet/api/wallet.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/wallet/api/wallet.cpp') diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index 032b873d6..e7fc9f3f6 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -1697,6 +1697,17 @@ void WalletImpl::setDefaultMixin(uint32_t arg) m_wallet->default_mixin(arg); } +bool WalletImpl::setCacheAttribute(const std::string &key, const std::string &val) +{ + m_wallet->set_attribute(key, val); + return true; +} + +std::string WalletImpl::getCacheAttribute(const std::string &key) const +{ + return m_wallet->get_attribute(key); +} + bool WalletImpl::setUserNote(const std::string &txid, const std::string ¬e) { cryptonote::blobdata txid_data; -- cgit v1.2.3