diff options
| author | Andrew Chow <[email protected]> | 2018-04-28 16:54:58 -0400 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2018-05-09 12:21:05 -0400 |
| commit | 4d4185a4f0e40c033a587871839a47cb3f89ee93 (patch) | |
| tree | de7d02bcfe19bafb3faf0f220a35b303fbfc3ba8 /src/walletinitinterface.h | |
| parent | Merge #13185: Bugfix: the end of a reorged chain is invalid when connect fails (diff) | |
| download | discoin-4d4185a4f0e40c033a587871839a47cb3f89ee93.tar.xz discoin-4d4185a4f0e40c033a587871839a47cb3f89ee93.zip | |
Make gArgs aware of the arguments
gArgs knows what the available arguments are and their help. Getting
the help message is moved to gArgs and HelpMessage() is removed
Diffstat (limited to 'src/walletinitinterface.h')
| -rw-r--r-- | src/walletinitinterface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/walletinitinterface.h b/src/walletinitinterface.h index 5bfde6faa..020d8971c 100644 --- a/src/walletinitinterface.h +++ b/src/walletinitinterface.h @@ -13,7 +13,7 @@ class CRPCTable; class WalletInitInterface { public: /** Get wallet help string */ - virtual std::string GetHelpString(bool showDebug) const = 0; + virtual void AddWalletOptions() const = 0; /** Check wallet parameter interaction */ virtual bool ParameterInteraction() const = 0; /** Register wallet RPC*/ |