From a9a9b64b13f9bd995458df195f9bb7124f883fc1 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Thu, 2 Feb 2017 20:56:31 +0000 Subject: [PATCH] simplewallet: fix build (unqualified type not in current scope) --- src/simplewallet/simplewallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 &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;