diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-01-21 13:59:49 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-01-21 19:30:34 +0100 |
commit | 7777105a24a36b62df35d12ecf6c6370671568c8 (patch) | |
tree | e8f4aa39f657696134b09ff4d18c469616f3a412 /src/wallet/wallettool.h | |
parent | fa06bce4ac17f93decd4ee38c956e7aa55983f0d (diff) |
refactor: Move all command dependend checks to ExecuteWalletToolFunc
Diffstat (limited to 'src/wallet/wallettool.h')
-rw-r--r-- | src/wallet/wallettool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallettool.h b/src/wallet/wallettool.h index f544a6f727..f4516bb5bc 100644 --- a/src/wallet/wallettool.h +++ b/src/wallet/wallettool.h @@ -10,7 +10,7 @@ namespace WalletTool { void WalletShowInfo(CWallet* wallet_instance); -bool ExecuteWalletToolFunc(const ArgsManager& args, const std::string& command, const std::string& file); +bool ExecuteWalletToolFunc(const ArgsManager& args, const std::string& command); } // namespace WalletTool |