diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-02 20:56:31 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-02 20:56:31 +0000 |
commit | a9a9b64b13f9bd995458df195f9bb7124f883fc1 (patch) | |
tree | eaa789dbd4c7fa7e96b0bd869db26e30b1f37c91 /src/simplewallet/simplewallet.cpp | |
parent | Merge pull request #1656 (diff) | |
download | monero-a9a9b64b13f9bd995458df195f9bb7124f883fc1.tar.xz |
simplewallet: fix build (unqualified type not in current scope)
Diffstat (limited to 'src/simplewallet/simplewallet.cpp')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index f5e20be48..b26d0ce11 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -380,7 +380,7 @@ bool simple_wallet::change_password(const std::vector<std::string> &args) m_wallet->rewrite(m_wallet_file, pwd_container->password()); m_wallet->store(); } - catch (const wallet_logic_error& e) + catch (const tools::error::wallet_logic_error& e) { fail_msg_writer() << tr("Error with wallet rewrite: ") << e.what(); return false; |