diff options
author | w0xlt <94266259+w0xlt@users.noreply.github.com> | 2021-12-14 20:10:21 -0300 |
---|---|---|
committer | w0xlt <94266259+w0xlt@users.noreply.github.com> | 2021-12-15 18:41:40 -0300 |
commit | abbb7eccef3fc1c36f34756458d2792f6661e29f (patch) | |
tree | 11d952213f1d1d8e63e472ed68d358a598be7fa4 /src/wallet/wallet.cpp | |
parent | 4807f73f48f4ff1084fcf7aee94e5b14592bfda8 (diff) |
refactor: Move restorewallet() RPC logic to the wallet section
It also simplifies restorewallet() and loadwallet() RPC error handling.
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r-- | src/wallet/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 59ed8c2571..f2d1acb71f 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -364,7 +364,7 @@ std::shared_ptr<CWallet> RestoreWallet(WalletContext& context, const std::string if (!fs::exists(fs::u8path(backup_file))) { error = Untranslated("Backup file does not exist"); - status = DatabaseStatus::FAILED_BAD_PATH; + status = DatabaseStatus::FAILED_INVALID_BACKUP_FILE; return nullptr; } |