diff options
author | Eric Lombrozo <elombrozo@gmail.com> | 2013-01-07 07:35:31 -0800 |
---|---|---|
committer | Eric Lombrozo <elombrozo@gmail.com> | 2013-06-05 20:36:10 -0700 |
commit | 4751d07efdc3924a005bbe61b358d320f0c710af (patch) | |
tree | 5ae13ae92659ee7937fcccfb24f71d3865ee66cc /src | |
parent | 8926263dde10bed3f42e21e5f106365f1192e6c0 (diff) |
Moved unrelated-to-network calls in StartNode and StopNode into init.cpp
Diffstat (limited to 'src')
-rw-r--r-- | src/init.cpp | 2 | ||||
-rw-r--r-- | src/net.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index e4cb2f1d00..48fd5ae97f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -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); diff --git a/src/net.cpp b/src/net.cpp index 8929919f03..7a1fcc5033 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1850,7 +1850,6 @@ void StartNode(boost::thread_group& threadGroup) bool StopNode() { printf("StopNode()\n"); - GenerateBitcoins(false, NULL); MapPort(false); nTransactionsUpdated++; if (semOutbound) |