refactor: Drop ::HasWallets()

This commit is contained in:
João Barbosa
2020-06-12 10:55:20 +01:00
parent f154071ec8
commit ccf1f6ea24
3 changed files with 1 additions and 8 deletions

View File

@@ -106,7 +106,7 @@ std::shared_ptr<CWallet> GetWalletForJSONRPCRequest(const JSONRPCRequest& reques
return wallets[0];
}
if (!HasWallets()) {
if (wallets.empty()) {
throw JSONRPCError(
RPC_METHOD_NOT_FOUND, "Method not found (wallet method is disabled because no wallet is loaded)");
}