Browse Source

do not silently ignore errors on "backupwallet" RPC cmd

0.8
Philip Kaufmann 12 years ago
parent
commit
ad525e9c8f
  1. 3
      src/rpcwallet.cpp

3
src/rpcwallet.cpp

@ -1228,7 +1228,8 @@ Value backupwallet(const Array& params, bool fHelp) @@ -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;
}

Loading…
Cancel
Save