diff options
author | João Barbosa <joao.paulo.barbosa@gmail.com> | 2018-06-12 15:30:32 +0100 |
---|---|---|
committer | João Barbosa <joao.paulo.barbosa@gmail.com> | 2018-06-18 16:35:17 +0100 |
commit | ccbf7ae7496fd13b4147aa13d7408712bd90c614 (patch) | |
tree | 97f2669501cbbb53643a88773cc685f99cf16a5e /src | |
parent | 4940a20a46685cd56ea045d8cc7fe058c6222431 (diff) |
test: Wallet methods are disabled when no wallet is loaded
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/rpcwallet.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index daef8473f1..5e9eb2b26a 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -75,11 +75,6 @@ bool EnsureWalletIsAvailable(CWallet * const pwallet, bool avoidException) if (pwallet) return true; if (avoidException) return false; if (!HasWallets()) { - // Note: It isn't currently possible to trigger this error because - // wallet RPC methods aren't registered unless a wallet is loaded. But - // this error is being kept as a precaution, because it's possible in - // the future that wallet RPC methods might get or remain registered - // when no wallets are loaded. throw JSONRPCError( RPC_METHOD_NOT_FOUND, "Method not found (wallet method is disabled because no wallet is loaded)"); } |