aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-02-16 14:17:46 +0100
committerRiccardo Spagni <ric@spagni.net>2018-02-16 14:17:46 +0100
commit5d36ed6613d2a6c5f3c556ebf06b04f10d6419db (patch)
treefdd70823d0be8a4f8f28882859bc6ce225cca71b /src/wallet/api/wallet.cpp
parentMerge pull request #3138 (diff)
parentFixed typos and wording tweaks (diff)
downloadmonero-5d36ed6613d2a6c5f3c556ebf06b04f10d6419db.tar.xz
Merge pull request #3094
a85dbb3f Fixed typos and wording tweaks (Maxithi)
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r--src/wallet/api/wallet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp
index 82948081e..f648160c9 100644
--- a/src/wallet/api/wallet.cpp
+++ b/src/wallet/api/wallet.cpp
@@ -626,7 +626,7 @@ bool WalletImpl::close(bool store)
if (status() != Status_Critical)
m_wallet->store();
else
- LOG_ERROR("Status_Critical - not storing wallet");
+ LOG_ERROR("Status_Critical - not saving wallet");
LOG_PRINT_L1("wallet::store done");
}
LOG_PRINT_L1("Calling wallet::stop...");
@@ -732,7 +732,7 @@ bool WalletImpl::store(const std::string &path)
m_wallet->store_to(path, m_password);
}
} catch (const std::exception &e) {
- LOG_ERROR("Error storing wallet: " << e.what());
+ LOG_ERROR("Error saving wallet: " << e.what());
m_status = Status_Error;
m_errorString = e.what();
}