aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/init.cpp
diff options
context:
space:
mode:
authorJoão Barbosa <joao.paulo.barbosa@gmail.com>2018-03-30 09:48:29 +0100
committerJoão Barbosa <joao.paulo.barbosa@gmail.com>2018-04-05 21:09:22 +0100
commitd894894aab78dbd5e32267313237648933248377 (patch)
tree573bad6ae0e6e39d703ceca0ed0be93d3b642e94 /src/wallet/init.cpp
parent39bc2faa2e90d8adfa77e650f8a807828da3f6b9 (diff)
downloadbitcoin-d894894aab78dbd5e32267313237648933248377.tar.xz
wallet: Refactor to WalletInitInterface* const g_wallet_init_interface
Diffstat (limited to 'src/wallet/init.cpp')
-rw-r--r--src/wallet/init.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wallet/init.cpp b/src/wallet/init.cpp
index fd6c8cc0ca..c860eede05 100644
--- a/src/wallet/init.cpp
+++ b/src/wallet/init.cpp
@@ -4,6 +4,7 @@
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <chainparams.h>
+#include <init.h>
#include <net.h>
#include <util.h>
#include <utilmoneystr.h>
@@ -46,7 +47,8 @@ public:
void Close() override;
};
-std::unique_ptr<WalletInitInterface> g_wallet_init_interface(new WalletInit);
+static WalletInit g_wallet_init;
+WalletInitInterface* const g_wallet_init_interface = &g_wallet_init;
std::string WalletInit::GetHelpString(bool showDebug)
{