2020-12-31 05:48:25 -03:00
|
|
|
// Copyright (c) 2016-2020 The Bitcoin Core developers
|
2016-09-16 11:45:36 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_WALLET_WALLETTOOL_H
|
|
|
|
#define BITCOIN_WALLET_WALLETTOOL_H
|
|
|
|
|
|
|
|
#include <wallet/wallet.h>
|
|
|
|
|
|
|
|
namespace WalletTool {
|
|
|
|
|
|
|
|
void WalletShowInfo(CWallet* wallet_instance);
|
2020-12-17 15:18:34 -03:00
|
|
|
bool ExecuteWalletToolFunc(const ArgsManager& args, const std::string& command, const std::string& file);
|
2016-09-16 11:45:36 -03:00
|
|
|
|
|
|
|
} // namespace WalletTool
|
|
|
|
|
|
|
|
#endif // BITCOIN_WALLET_WALLETTOOL_H
|