|
|
@ -4,6 +4,16 @@ |
|
|
|
#include "main.h" |
|
|
|
#include "main.h" |
|
|
|
#include "wallet.h" |
|
|
|
#include "wallet.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern bool fPrintToConsole; |
|
|
|
|
|
|
|
struct TestingSetup { |
|
|
|
|
|
|
|
TestingSetup() { |
|
|
|
|
|
|
|
fPrintToConsole = true; // don't want to write to debug.log file
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
~TestingSetup() { } |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BOOST_GLOBAL_FIXTURE(TestingSetup); |
|
|
|
|
|
|
|
|
|
|
|
CWallet* pwalletMain; |
|
|
|
CWallet* pwalletMain; |
|
|
|
|
|
|
|
|
|
|
|
void Shutdown(void* parg) |
|
|
|
void Shutdown(void* parg) |
|
|
|