| 668 | std::unique_ptr<Wallet> MakeWallet(wallet::WalletContext& context, const std::shared_ptr<wallet::CWallet>& wallet) { return wallet ? std::make_unique<wallet::WalletImpl>(context, wallet) : nullptr; } |
| 669 | |
| 670 | std::unique_ptr<WalletLoader> MakeWalletLoader(Chain& chain, ArgsManager& args) |
| 671 | { |
| 672 | return std::make_unique<wallet::WalletLoaderImpl>(chain, args); |
| 673 | } |
| 674 | } // namespace interfaces |
no outgoing calls