diff options
| author | João Barbosa <[email protected]> | 2018-03-30 09:48:29 +0100 |
|---|---|---|
| committer | João Barbosa <[email protected]> | 2018-04-05 21:09:22 +0100 |
| commit | d894894aab78dbd5e32267313237648933248377 (patch) | |
| tree | 573bad6ae0e6e39d703ceca0ed0be93d3b642e94 /src/init.h | |
| parent | wallet: Make WalletInitInterface and DummyWalletInit private (diff) | |
| download | discoin-d894894aab78dbd5e32267313237648933248377.tar.xz discoin-d894894aab78dbd5e32267313237648933248377.zip | |
wallet: Refactor to WalletInitInterface* const g_wallet_init_interface
Diffstat (limited to 'src/init.h')
| -rw-r--r-- | src/init.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.h b/src/init.h index c93a21015..829c11011 100644 --- a/src/init.h +++ b/src/init.h @@ -13,7 +13,7 @@ class CScheduler; class CWallet; class WalletInitInterface; -extern std::unique_ptr<WalletInitInterface> g_wallet_init_interface; +extern WalletInitInterface* const g_wallet_init_interface; namespace boost { |