|
|
|
@ -10,6 +10,7 @@
@@ -10,6 +10,7 @@
|
|
|
|
|
#include "utilmoneystr.h" |
|
|
|
|
#include "validation.h" |
|
|
|
|
#include "wallet/wallet.h" |
|
|
|
|
#include "wallet/rpcwallet.h" |
|
|
|
|
|
|
|
|
|
std::string GetWalletHelpString(bool showDebug) |
|
|
|
|
{ |
|
|
|
@ -171,6 +172,13 @@ bool WalletParameterInteraction()
@@ -171,6 +172,13 @@ bool WalletParameterInteraction()
|
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void RegisterWalletRPC(CRPCTable &t) |
|
|
|
|
{ |
|
|
|
|
if (gArgs.GetBoolArg("-disablewallet", false)) return; |
|
|
|
|
|
|
|
|
|
RegisterWalletRPCCommands(t); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool VerifyWallets() |
|
|
|
|
{ |
|
|
|
|
if (gArgs.GetBoolArg("-disablewallet", DEFAULT_DISABLE_WALLET)) |
|
|
|
|