diff options
| author | MarcoFalke <[email protected]> | 2020-05-11 17:40:21 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-07-09 13:07:37 +0200 |
| commit | faf8401c195f52470d1ca6e2c94cb3820e57ee41 (patch) | |
| tree | 910f9d852aa3d2b8ea6dc5434f791b93096ed036 /src/interfaces/chain.h | |
| parent | gui tests: Limit life-time of dummy testing setup (diff) | |
| download | discoin-faf8401c195f52470d1ca6e2c94cb3820e57ee41.tar.xz discoin-faf8401c195f52470d1ca6e2c94cb3820e57ee41.zip | |
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 65695707f..bbeb0fa80 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 |