diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-07 13:54:18 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-07 14:24:14 +0000 |
commit | 1979d53d78bf0f94e442191c8766fcbc79778be6 (patch) | |
tree | 336ed9670ab062dd98ee870e2767433d0080f0bc /src/wallet/wallet2.h | |
parent | Merge pull request #3253 (diff) | |
download | monero-1979d53d78bf0f94e442191c8766fcbc79778be6.tar.xz |
wallet: fixes and tweaks to the save_watch_only command
- save the new keys file as FOO-watchonly.keys, not FOO.keys-watchonly
- catch any exception (eg, I/O errors) and error out
- print the new keys filename in simplewallet
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 57a61cb9d..c338cadb3 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -548,7 +548,7 @@ namespace tools * \param password Password for wallet file */ void rewrite(const std::string& wallet_name, const epee::wipeable_string& password); - void write_watch_only_wallet(const std::string& wallet_name, const epee::wipeable_string& password); + void write_watch_only_wallet(const std::string& wallet_name, const epee::wipeable_string& password, std::string &new_keys_filename); void load(const std::string& wallet, const epee::wipeable_string& password); void store(); /*! |