diff options
| author | Pieter Wuille <[email protected]> | 2013-06-25 16:33:16 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2013-06-25 16:33:16 -0700 |
| commit | 4ad73c6b080c46808b0c53b62ab6e4074e48dc75 (patch) | |
| tree | b94049c0ed1a27984c356773acd19293e7b5b178 /src/init.cpp | |
| parent | Merge pull request #2792 from sipa/coreimpl (diff) | |
| parent | Calling UnregisterAllWallets() instead of UnregisterWallet(pwalletMain) in in... (diff) | |
| download | discoin-4ad73c6b080c46808b0c53b62ab6e4074e48dc75.tar.xz discoin-4ad73c6b080c46808b0c53b62ab6e4074e48dc75.zip | |
Merge pull request #2209 from CodeShark/WalletRegistrationLocks
Wallet registration locks in main.cpp + UnregisterAllWallet() function
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index e88055bde..f6b2c91b4 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -119,7 +119,7 @@ void Shutdown() } bitdb.Flush(true); boost::filesystem::remove(GetPidFile()); - UnregisterWallet(pwalletMain); + UnregisterAllWallets(); delete pwalletMain; } |