2019-12-31 18:35:41 +01:00
|
|
|
// Copyright (c) 2017-2019 The Bitcoin Core developers
|
2020-04-18 11:59:40 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2018-04-02 00:30:17 +02:00
|
|
|
#ifndef BITCOIN_WALLETINITINTERFACE_H
|
|
|
|
#define BITCOIN_WALLETINITINTERFACE_H
|
2020-04-18 11:59:40 +02:00
|
|
|
|
2022-05-21 10:27:30 +02:00
|
|
|
class ArgsManager;
|
2023-12-31 12:30:53 +01:00
|
|
|
class CoinJoinWalletManager;
|
2022-05-21 10:27:30 +02:00
|
|
|
|
2022-04-05 11:09:41 +02:00
|
|
|
struct NodeContext;
|
2020-04-18 11:59:40 +02:00
|
|
|
|
|
|
|
class WalletInitInterface {
|
|
|
|
public:
|
2021-08-05 16:41:46 +02:00
|
|
|
/** Is the wallet component enabled */
|
|
|
|
virtual bool HasWalletSupport() const = 0;
|
2020-04-18 11:59:40 +02:00
|
|
|
/** Get wallet help string */
|
2022-05-21 10:27:30 +02:00
|
|
|
virtual void AddWalletOptions(ArgsManager& argsman) const = 0;
|
2020-04-18 11:59:40 +02:00
|
|
|
/** Check wallet parameter interaction */
|
2018-04-17 15:57:52 +02:00
|
|
|
virtual bool ParameterInteraction() const = 0;
|
2022-04-05 11:09:41 +02:00
|
|
|
/** Add wallets that should be opened to list of chain clients. */
|
|
|
|
virtual void Construct(NodeContext& node) const = 0;
|
2020-04-18 11:59:40 +02:00
|
|
|
|
|
|
|
// Dash Specific WalletInitInterface
|
2018-04-17 15:57:52 +02:00
|
|
|
virtual void AutoLockMasternodeCollaterals() const = 0;
|
2023-12-31 12:30:53 +01:00
|
|
|
virtual void InitCoinJoinSettings(const CoinJoinWalletManager& cjwalletman) const = 0;
|
2018-04-17 15:57:52 +02:00
|
|
|
virtual bool InitAutoBackup() const = 0;
|
2020-04-18 11:59:40 +02:00
|
|
|
|
|
|
|
virtual ~WalletInitInterface() {}
|
|
|
|
};
|
|
|
|
|
2021-08-05 16:41:46 +02:00
|
|
|
extern const WalletInitInterface& g_wallet_init_interface;
|
|
|
|
|
2018-04-02 00:30:17 +02:00
|
|
|
#endif // BITCOIN_WALLETINITINTERFACE_H
|