diff options
| author | João Barbosa <[email protected]> | 2018-03-29 10:08:38 +0100 |
|---|---|---|
| committer | João Barbosa <[email protected]> | 2018-04-05 21:09:21 +0100 |
| commit | 39bc2faa2e90d8adfa77e650f8a807828da3f6b9 (patch) | |
| tree | 0ec6291190ed39a70c5fa79f633aba5f0c108ccf /src/qt/bitcoin.cpp | |
| parent | Merge #10244: Refactor: separate gui from wallet and node (diff) | |
| download | discoin-39bc2faa2e90d8adfa77e650f8a807828da3f6b9.tar.xz discoin-39bc2faa2e90d8adfa77e650f8a807828da3f6b9.zip | |
wallet: Make WalletInitInterface and DummyWalletInit private
Diffstat (limited to 'src/qt/bitcoin.cpp')
| -rw-r--r-- | src/qt/bitcoin.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 30d0acb7e..d164ca435 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -35,9 +35,6 @@ #include <util.h> #include <warnings.h> -#ifdef ENABLE_WALLET -#include <wallet/init.h> -#endif #include <walletinitinterface.h> #include <memory> @@ -660,11 +657,6 @@ int main(int argc, char *argv[]) // Start up the payment server early, too, so impatient users that click on // bitcoin: links repeatedly have their payment requests routed to this process: app.createPaymentServer(); - - // Hook up the wallet init interface - g_wallet_init_interface.reset(new WalletInit); -#else - g_wallet_init_interface.reset(new DummyWalletInit); #endif /// 9. Main GUI initialization |