diff options
author | m2049r <30435443+m2049r@users.noreply.github.com> | 2017-09-23 00:52:09 +0200 |
---|---|---|
committer | m2049r <30435443+m2049r@users.noreply.github.com> | 2017-09-23 00:52:09 +0200 |
commit | 6ee1116d759b6d760490574978964b5e55ca591d (patch) | |
tree | a245cc285def6d36e3bd5714d965da557536cf8e /src/wallet/wallet2_api.h | |
parent | Merge pull request #2496 (diff) | |
download | monero-6ee1116d759b6d760490574978964b5e55ca591d.tar.xz |
store is optional during close and defaults to true; except during descruction
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h index 8da8c62eb..7a5e01af7 100644 --- a/src/wallet/wallet2_api.h +++ b/src/wallet/wallet2_api.h @@ -663,7 +663,7 @@ struct WalletManager * \param wallet previously opened / created wallet instance * \return None */ - virtual bool closeWallet(Wallet *wallet) = 0; + virtual bool closeWallet(Wallet *wallet, bool store = true) = 0; /* * ! checks if wallet with the given name already exists |