diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-07-24 13:59:19 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-24 13:59:19 -0500 |
commit | 407683a38c604293c2ef076e3c9b1d4b9e90db2f (patch) | |
tree | 230ad18e700c788a37aa18250d528f559190e095 /src/wallet/wallet2.h | |
parent | Merge pull request #5507 (diff) | |
parent | wallet: distinguish between empty and absent attributes (diff) | |
download | monero-407683a38c604293c2ef076e3c9b1d4b9e90db2f.tar.xz |
Merge pull request #5513
bc94ba4 wallet: distinguish between empty and absent attributes (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 921c150cb..30589885e 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -1247,7 +1247,7 @@ private: */ const char* const ATTRIBUTE_DESCRIPTION = "wallet2.description"; void set_attribute(const std::string &key, const std::string &value); - std::string get_attribute(const std::string &key) const; + bool get_attribute(const std::string &key, std::string &value) const; crypto::public_key get_multisig_signer_public_key(const crypto::secret_key &spend_skey) const; crypto::public_key get_multisig_signer_public_key() const; |