diff options
| author | Ross Nicoll <[email protected]> | 2021-06-09 08:38:00 +0100 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2021-06-09 08:38:00 +0100 |
| commit | 803923ca58c67ad9cd2335ee501d27c21ec71f66 (patch) | |
| tree | a1ecaafa48c1b5395c118835ad80d01bdda1eda6 /src/interfaces/wallet.h | |
| parent | Directly include NodeContext instead of defining it (diff) | |
| download | discoin-803923ca58c67ad9cd2335ee501d27c21ec71f66.tar.xz discoin-803923ca58c67ad9cd2335ee501d27c21ec71f66.zip | |
Remove separate node and wallet contexts
Diffstat (limited to 'src/interfaces/wallet.h')
| -rw-r--r-- | src/interfaces/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/wallet.h b/src/interfaces/wallet.h index be1a3572c..5f93b8264 100644 --- a/src/interfaces/wallet.h +++ b/src/interfaces/wallet.h @@ -411,7 +411,7 @@ std::unique_ptr<Wallet> MakeWallet(const std::shared_ptr<CWallet>& wallet); //! Return implementation of ChainClient interface for a wallet client. This //! function will be undefined in builds where ENABLE_WALLET is false. -std::unique_ptr<WalletClient> MakeWalletClient(NodeContext& node, Chain& chain, ArgsManager& args); +std::unique_ptr<WalletClient> MakeWalletClient(NodeContext& node, ArgsManager& args); } // namespace interfaces |