diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-09-25 16:38:14 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-09-25 16:38:14 +0200 |
commit | 40d213154bf42e95ac5b67087e31c65babac31ef (patch) | |
tree | f262462eafb7cef30a47cc3b513d42f344d0e19d /src/wallet/api/wallet.h | |
parent | Merge pull request #2257 (diff) | |
parent | store is optional during close and defaults to true; except during descruction (diff) | |
download | monero-40d213154bf42e95ac5b67087e31c65babac31ef.tar.xz |
Merge pull request #2289
6ee1116d store is optional during close and defaults to true; except during descruction (m2049r)
Diffstat (limited to 'src/wallet/api/wallet.h')
-rw-r--r-- | src/wallet/api/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h index 8190c7873..36ffd4fc0 100644 --- a/src/wallet/api/wallet.h +++ b/src/wallet/api/wallet.h @@ -63,7 +63,7 @@ public: const std::string &address_string, const std::string &viewkey_string, const std::string &spendkey_string = ""); - bool close(); + bool close(bool store = true); std::string seed() const; std::string getSeedLanguage() const; void setSeedLanguage(const std::string &arg); |