diff options
| author | Neozaru <neozaru@mailoo.org> | 2014-06-01 18:21:30 +0200 |
|---|---|---|
| committer | Neozaru <neozaru@mailoo.org> | 2014-06-01 18:21:30 +0200 |
| commit | 8530629e22d88de4c2fd4d7d231b00c65d30100d (patch) | |
| tree | 0890c9ee74331cd1f27093833718d3cf7eb20d26 /src/wallet/wallet2.cpp | |
| parent | 506fd372ec78f3cb5c492fc981bbaac7936be8aa (diff) | |
| parent | 5c1b7c72249a114b1c30945fc8a9116c07573a48 (diff) | |
| download | monzero-core-8530629e22d88de4c2fd4d7d231b00c65d30100d.tar.gz monzero-core-8530629e22d88de4c2fd4d7d231b00c65d30100d.tar.xz monzero-core-8530629e22d88de4c2fd4d7d231b00c65d30100d.zip | |
Merge bitmonero@monero-project
Diffstat (limited to 'src/wallet/wallet2.cpp')
| -rw-r--r-- | src/wallet/wallet2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index e8d67eec2..111b76117 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -455,14 +455,14 @@ void wallet2::generate(const std::string& wallet_, const std::string& password) store(); } //---------------------------------------------------------------------------------------------------- -void wallet2::wallet_exists(const std::string& file_path, bool& keys_file_exists, bool& wallet_file_exitst) +void wallet2::wallet_exists(const std::string& file_path, bool& keys_file_exists, bool& wallet_file_exists) { std::string keys_file, wallet_file; do_prepare_file_names(file_path, keys_file, wallet_file); boost::system::error_code ignore; keys_file_exists = boost::filesystem::exists(keys_file, ignore); - wallet_file_exitst = boost::filesystem::exists(wallet_file, ignore); + wallet_file_exists = boost::filesystem::exists(wallet_file, ignore); } //---------------------------------------------------------------------------------------------------- bool wallet2::prepare_file_names(const std::string& file_path) |
