Moved unrelated-to-network calls in StartNode and StopNode into init.cpp

pull/2154/head
Eric Lombrozo 12 years ago
parent 8926263dde
commit 4751d07efd

@ -45,6 +45,7 @@ enum BindFlags {
BF_REPORT_ERROR = (1U << 1)
};
//////////////////////////////////////////////////////////////////////////////
//
// Shutdown
@ -99,6 +100,7 @@ void Shutdown()
StopRPCThreads();
ShutdownRPCMining();
bitdb.Flush(false);
GenerateBitcoins(false, NULL);
StopNode();
{
LOCK(cs_main);

@ -1850,7 +1850,6 @@ void StartNode(boost::thread_group& threadGroup)
bool StopNode()
{
printf("StopNode()\n");
GenerateBitcoins(false, NULL);
MapPort(false);
nTransactionsUpdated++;
if (semOutbound)

Loading…
Cancel
Save