mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #5779
6da3561
Fixed error preventing build of monero-gui (honzapatCZ)
This commit is contained in:
commit
1bb4ae3b5e
@ -1705,7 +1705,9 @@ bool WalletImpl::setCacheAttribute(const std::string &key, const std::string &va
|
||||
|
||||
std::string WalletImpl::getCacheAttribute(const std::string &key) const
|
||||
{
|
||||
return m_wallet->get_attribute(key);
|
||||
std::string value;
|
||||
m_wallet->get_attribute(key, value);
|
||||
return value;
|
||||
}
|
||||
|
||||
bool WalletImpl::setUserNote(const std::string &txid, const std::string ¬e)
|
||||
|
Loading…
Reference in New Issue
Block a user