diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-05-11 17:40:21 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-07-09 13:07:37 +0200 |
commit | faf8401c195f52470d1ca6e2c94cb3820e57ee41 (patch) | |
tree | 910f9d852aa3d2b8ea6dc5434f791b93096ed036 /src/interfaces/chain.h | |
parent | fa6c186436337c8ed7d9e1ab065377f8cda5c0b7 (diff) |
wallet: Pass unused args to StartWallets
This refactor does not change behavior
Diffstat (limited to 'src/interfaces/chain.h')
-rw-r--r-- | src/interfaces/chain.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/chain.h b/src/interfaces/chain.h index 65695707f7..bbeb0fa801 100644 --- a/src/interfaces/chain.h +++ b/src/interfaces/chain.h @@ -15,6 +15,7 @@ #include <string> #include <vector> +class ArgsManager; class CBlock; class CFeeRate; class CRPCCommand; @@ -322,7 +323,7 @@ std::unique_ptr<Chain> MakeChain(NodeContext& node); //! analysis, or fee estimation. These clients need to expose their own //! MakeXXXClient functions returning their implementations of the ChainClient //! interface. -std::unique_ptr<ChainClient> MakeWalletClient(Chain& chain, std::vector<std::string> wallet_filenames); +std::unique_ptr<ChainClient> MakeWalletClient(Chain& chain, ArgsManager& args, std::vector<std::string> wallet_filenames); } // namespace interfaces |