Fix test build after d138598

Building the tests was giving some vague error message about a doubly-defined
symbol.

The solution is to define ShutdownRequested in test_bitcoin.cpp as well
so that init.cpp does not get pulled in.
This commit is contained in:
Wladimir J. van der Laan 2014-03-25 07:53:21 +01:00 committed by langerhans
parent a4797f9bdb
commit c88b4903c1

View file

@ -84,3 +84,8 @@ void StartShutdown()
exit(0);
}
bool ShutdownRequested()
{
return false;
}