aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/init.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/init.cpp')
-rw-r--r--src/interfaces/init.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/interfaces/init.cpp b/src/interfaces/init.cpp
new file mode 100644
index 0000000000..1eeea9b5cb
--- /dev/null
+++ b/src/interfaces/init.cpp
@@ -0,0 +1,15 @@
+// Copyright (c) 2021 The Bitcoin Core developers
+// Distributed under the MIT software license, see the accompanying
+// file COPYING or http://www.opensource.org/licenses/mit-license.php.
+
+#include <interfaces/chain.h>
+#include <interfaces/init.h>
+#include <interfaces/node.h>
+#include <interfaces/wallet.h>
+
+namespace interfaces {
+std::unique_ptr<Node> Init::makeNode() { return {}; }
+std::unique_ptr<Chain> Init::makeChain() { return {}; }
+std::unique_ptr<WalletClient> Init::makeWalletClient(Chain& chain) { return {}; }
+Ipc* Init::ipc() { return nullptr; }
+} // namespace interfaces