aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-03-20 21:25:24 +0200
committerRiccardo Spagni <ric@spagni.net>2016-03-20 21:25:24 +0200
commitb72f143724f07c52c6688d792ebd20f25f104d37 (patch)
treed138554a5a13e650f45f3d8d4b8bd0c9c1748235 /src/wallet/wallet2.cpp
parentMerge pull request #732 (diff)
parentPrint stack trace upon exceptions (diff)
downloadmonero-b72f143724f07c52c6688d792ebd20f25f104d37.tar.xz
Merge pull request #733
fff238e Print stack trace upon exceptions (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r--src/wallet/wallet2.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index 2afe08cb1..ef17a770b 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -32,6 +32,7 @@
#include <boost/archive/binary_iarchive.hpp>
#include <boost/utility/value_init.hpp>
+#include "common/exception.h"
#include "include_base_utils.h"
using namespace epee;
@@ -803,7 +804,7 @@ void wallet2::refresh(uint64_t start_height, uint64_t & blocks_fetched, bool& re
// handle error from async fetching thread
if (error)
{
- throw std::runtime_error("proxy exception in refresh thread");
+ throw tools::runtime_error("proxy exception in refresh thread");
}
}
catch (const std::exception&)
@@ -2012,7 +2013,7 @@ std::vector<wallet2::pending_tx> wallet2::create_transactions(std::vector<crypto
// Throw if split_amounts comes back with a vector of size different than it should
if (split_values.size() != num_tx)
{
- throw std::runtime_error("Splitting transactions returned a number of potential tx not equal to what was requested");
+ throw tools::runtime_error("Splitting transactions returned a number of potential tx not equal to what was requested");
}
std::vector<pending_tx> ptx_vector;