Browse Source

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

0.10
Eric Lombrozo 12 years ago
parent
commit
4751d07efd
  1. 2
      src/init.cpp
  2. 1
      src/net.cpp

2
src/init.cpp

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

1
src/net.cpp

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

Loading…
Cancel
Save