do not silently ignore errors on "backupwallet" RPC cmd

This commit is contained in:
Philip Kaufmann 2012-11-27 16:27:54 +01:00
parent 3ed1ccb089
commit ad525e9c8f
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}