mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-11 07:17:53 +00:00
Merge pull request #2044 from Diapolo/backupwallet
do not silently ignore errors on "backupwallet" RPC cmd
This commit is contained in:
commit
5c37be2db6
@ -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.");
|
"Safely copies wallet.dat to destination, which can be a directory or a path with filename.");
|
||||||
|
|
||||||
string strDest = params[0].get_str();
|
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;
|
return Value::null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user