mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-22 23:42:24 +00:00
Fixed error preventing build of monero-gui
get_attribute expects 2 values instead of 1
This commit is contained in:
parent
8adde33e01
commit
6da3561e2a
1 changed files with 3 additions and 1 deletions
|
@ -1705,7 +1705,9 @@ bool WalletImpl::setCacheAttribute(const std::string &key, const std::string &va
|
||||||
|
|
||||||
std::string WalletImpl::getCacheAttribute(const std::string &key) const
|
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)
|
bool WalletImpl::setUserNote(const std::string &txid, const std::string ¬e)
|
||||||
|
|
Loading…
Reference in a new issue