aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.cpp
diff options
context:
space:
mode:
authorMaxithi <34792056+Maxithi@users.noreply.github.com>2018-01-09 22:37:30 +0100
committerMaxithi <34792056+Maxithi@users.noreply.github.com>2018-01-29 12:13:23 +0100
commita85dbb3f2f1cef8f9f973b9fa94b073e42bcee2c (patch)
tree1d3c7a47f1a6bbb9786700cb5cb7d049ffe1a9b2 /src/wallet/api/wallet.cpp
parentMerge pull request #3019 (diff)
downloadmonero-a85dbb3f2f1cef8f9f973b9fa94b073e42bcee2c.tar.xz
Fixed typos and wording tweaks
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 fd0b65866..3073bcc56 100644
--- a/src/wallet/api/wallet.cpp
+++ b/src/wallet/api/wallet.cpp
@@ -611,7 +611,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...");
@@ -717,7 +717,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();
}