aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/rpcwallet.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-09-19 16:09:38 +0200
committerMarcoFalke <falke.marco@gmail.com>2016-09-20 17:32:05 +0200
commitfab91070d38aa248a852e04c56dcb73e4022872d (patch)
tree7803823646f7ade7f419853296ab8edb121e8e59 /src/wallet/rpcwallet.cpp
parent1c24d5f637201b46a621f6e8e0247bc8bdc52f6a (diff)
downloadbitcoin-fab91070d38aa248a852e04c56dcb73e4022872d.tar.xz
init: Get rid of fDisableWallet
Diffstat (limited to 'src/wallet/rpcwallet.cpp')
-rw-r--r--src/wallet/rpcwallet.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp
index 993caad400..3eb7e5d9ba 100644
--- a/src/wallet/rpcwallet.cpp
+++ b/src/wallet/rpcwallet.cpp
@@ -2630,6 +2630,9 @@ static const CRPCCommand commands[] =
void RegisterWalletRPCCommands(CRPCTable &t)
{
+ if (GetBoolArg("-disablewallet", false))
+ return;
+
for (unsigned int vcidx = 0; vcidx < ARRAYLEN(commands); vcidx++)
t.appendCommand(commands[vcidx].name, &commands[vcidx]);
}