diff options
| author | John Newbery <[email protected]> | 2017-08-28 12:41:33 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2017-09-07 16:21:26 -0700 |
| commit | 062d63102eb1e90168d28589de8bf182e9a6a7d3 (patch) | |
| tree | b0550b5a12daf40f065b21a4c6ddb0dd7619936a /src/init.cpp | |
| parent | [wallet] Add StopWallets() function to wallet/init.cpp (diff) | |
| download | discoin-062d63102eb1e90168d28589de8bf182e9a6a7d3.tar.xz discoin-062d63102eb1e90168d28589de8bf182e9a6a7d3.zip | |
[wallet] Add CloseWallets() function to wallet/init.cpp
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/init.cpp b/src/init.cpp index d1ffe126d..3f528a1f5 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -265,10 +265,7 @@ void Shutdown() UnregisterAllValidationInterfaces(); GetMainSignals().UnregisterBackgroundSignalScheduler(); #ifdef ENABLE_WALLET - for (CWalletRef pwallet : vpwallets) { - delete pwallet; - } - vpwallets.clear(); + CloseWallets(); #endif globalVerifyHandle.reset(); ECC_Stop(); |