2011-08-02 11:34:23 -04:00
|
|
|
#define BOOST_TEST_MODULE Bitcoin Test Suite
|
2011-06-27 14:05:02 -04:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
|
2011-10-11 19:50:06 -04:00
|
|
|
#include "main.h"
|
|
|
|
|
#include "wallet.h"
|
2011-07-31 14:00:38 -04:00
|
|
|
|
|
|
|
|
CWallet* pwalletMain;
|
|
|
|
|
|
|
|
|
|
void Shutdown(void* parg)
|
|
|
|
|
{
|
2011-09-27 14:16:07 -04:00
|
|
|
exit(0);
|
2011-07-31 14:00:38 -04:00
|
|
|
}
|