diff options
author | John Newbery <john@johnnewbery.com> | 2017-08-28 13:33:59 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-09-07 16:21:26 -0700 |
commit | 290f3c56d9dd8a519920939a4fc440da832c1c63 (patch) | |
tree | c6a33d86aa941f6f3a7f6b17821ecf7d8464ccc6 /src/wallet/rpcwallet.cpp | |
parent | 062d63102eb1e90168d28589de8bf182e9a6a7d3 (diff) |
[wallet] Add RegisterWalletRPC() function to wallet/init.cpp
Diffstat (limited to 'src/wallet/rpcwallet.cpp')
-rw-r--r-- | src/wallet/rpcwallet.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 4ea53c4132..6ef3599a1c 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -3217,9 +3217,6 @@ static const CRPCCommand commands[] = void RegisterWalletRPCCommands(CRPCTable &t) { - if (gArgs.GetBoolArg("-disablewallet", false)) - return; - for (unsigned int vcidx = 0; vcidx < ARRAYLEN(commands); vcidx++) t.appendCommand(commands[vcidx].name, &commands[vcidx]); } |