diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-03-25 20:17:59 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-04-04 09:35:01 +0200 |
commit | 1a3f0da9229a8e524d1010cdc8bd3b9da71fe529 (patch) | |
tree | ea477d499012b9bbf16402284260c95b43e2cb1f /src/main.cpp | |
parent | 5d7cebdadc991a23195a3519c1e9c038cb4f2290 (diff) |
support RPC stop and encryptwallet with UI
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index ca589e54f4..19a6c08f8a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1812,7 +1812,7 @@ bool CheckDiskSpace(uint64 nAdditionalBytes) strMiscWarning = strMessage; printf("*** %s\n", strMessage.c_str()); ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION); - CreateThread(Shutdown, NULL); + QueueShutdown(); return false; } return true; |