aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.cpp
diff options
context:
space:
mode:
authorHoward Chu <hyc@symas.com>2017-11-14 22:33:27 +0000
committerHoward Chu <hyc@symas.com>2017-11-14 22:43:52 +0000
commit987eb662bfad092ce812041808d4547889edf562 (patch)
treecbb786d5b6b30ff759d4d9af72e68c8f32a1205b /src/wallet/wallet2.cpp
parentMerge pull request #2813 (diff)
downloadmonero-987eb662bfad092ce812041808d4547889edf562.tar.xz
More missed readline dependencies thru scoped_message_writer
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r--src/wallet/wallet2.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index c6db45dc9..59c184b51 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -59,7 +59,6 @@ using namespace epee;
#include "rapidjson/stringbuffer.h"
#include "common/json_util.h"
#include "common/base58.h"
-#include "common/scoped_message_writer.h"
#include "ringct/rctSigs.h"
extern "C"
@@ -374,8 +373,7 @@ std::unique_ptr<tools::wallet2> generate_from_json(const std::string& json_file,
}
else
{
- tools::fail_msg_writer() << tools::wallet2::tr("Address must be specified in order to create watch-only wallet");
- return false;
+ THROW_WALLET_EXCEPTION(tools::error::wallet_internal_error, tools::wallet2::tr("Address must be specified in order to create watch-only wallet"));
}
wallet->generate(field_filename, field_password, address, viewkey);
}