aboutsummaryrefslogtreecommitdiff
path: root/src/init/bitcoin-wallet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/init/bitcoin-wallet.cpp')
-rw-r--r--src/init/bitcoin-wallet.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/init/bitcoin-wallet.cpp b/src/init/bitcoin-wallet.cpp
new file mode 100644
index 0000000000..e9dcde72fe
--- /dev/null
+++ b/src/init/bitcoin-wallet.cpp
@@ -0,0 +1,12 @@
+// 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/init.h>
+
+namespace interfaces {
+std::unique_ptr<Init> MakeWalletInit(int argc, char* argv[], int& exit_status)
+{
+ return std::make_unique<Init>();
+}
+} // namespace interfaces