We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 144b2f8 commit 65b6bdcCopy full SHA for 65b6bdc
src/wallet/wallet.h
@@ -182,6 +182,7 @@ class ReserveDestination
182
class CAddressBookData
183
{
184
private:
185
+ bool m_change{true};
186
std::string m_label;
187
public:
188
const std::string& name;
@@ -192,7 +193,9 @@ class CAddressBookData
192
193
typedef std::map<std::string, std::string> StringMap;
194
StringMap destdata;
195
196
+ bool IsChange() const { return m_change; }
197
void SetLabel(const std::string& label) {
198
+ m_change = false;
199
m_label = label;
200
}
201
};
0 commit comments