diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-06-14 09:41:11 +0200 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-06-14 17:59:31 +0000 |
| commit | 1bc2f0a37b68aa99e90437105a48c47046b6c0d0 (patch) | |
| tree | 253167b54af843f9ba0bda01a3b22a31dad53f7f /src/test | |
| parent | Bugfix: Fix various places where Bitcoin-Qt was being shutdown improperly (diff) | |
| download | discoin-1bc2f0a37b68aa99e90437105a48c47046b6c0d0.tar.xz discoin-1bc2f0a37b68aa99e90437105a48c47046b6c0d0.zip | |
Fix build of testcases after commit 0f10b21719e1b0d9683a142f0a7105e65f095694
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/test_bitcoin.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index ca001b0e6..a21801b5d 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -17,7 +17,13 @@ CWallet* pwalletMain; +void Shutdown(void* parg) +{ + exit(0); +} + void StartShutdown() { exit(0); } + |