diff options
| author | Eric Lombrozo <[email protected]> | 2013-01-23 12:48:35 -0800 |
|---|---|---|
| committer | Eric Lombrozo <[email protected]> | 2013-06-24 09:33:15 -0700 |
| commit | e6fe8e77fb8816b8891a36467ba860d6b55934f4 (patch) | |
| tree | ee36f329c8e36ef55667c17862702eb03d1e9bb2 /src/init.cpp | |
| parent | Added locks on the setpwalletRegistered functions in main.cpp and added an Un... (diff) | |
| download | discoin-e6fe8e77fb8816b8891a36467ba860d6b55934f4.tar.xz discoin-e6fe8e77fb8816b8891a36467ba860d6b55934f4.zip | |
Calling UnregisterAllWallets() instead of UnregisterWallet(pwalletMain) in init.cpp
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; } |