aboutsummaryrefslogtreecommitdiff
path: root/src/rpcwallet.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-11-27 16:27:54 +0100
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-11-27 16:27:54 +0100
commitad525e9c8fa2b15f1afe6b7284de638a090e891a (patch)
tree40927c168d17f30d2a206c6b28237f8e05f9e088 /src/rpcwallet.cpp
parent3ed1ccb0898b22353e9fcc942b43df98c9a3bf4c (diff)
downloadbitcoin-ad525e9c8fa2b15f1afe6b7284de638a090e891a.tar.xz
do not silently ignore errors on "backupwallet" RPC cmd
Diffstat (limited to 'src/rpcwallet.cpp')
-rw-r--r--src/rpcwallet.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp
index 5ebab755b7..d597e5e3f7 100644
--- a/src/rpcwallet.cpp
+++ b/src/rpcwallet.cpp
@@ -1228,7 +1228,8 @@ Value backupwallet(const Array& params, bool fHelp)
"Safely copies wallet.dat to destination, which can be a directory or a path with filename.");
string strDest = params[0].get_str();
- BackupWallet(*pwalletMain, strDest);
+ if (!BackupWallet(*pwalletMain, strDest))
+ throw JSONRPCError(RPC_WALLET_ERROR, "Error: Wallet backup failed!");
return Value::null;
}