diff options
| author | Gavin Andresen <[email protected]> | 2013-04-02 08:56:57 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-04-02 08:56:57 -0700 |
| commit | 06db61f09e4201a17ef169754ac374a2b7a37316 (patch) | |
| tree | d1926a75ffb53fb36aa935a3e3fa01e6053b0613 /src/net.cpp | |
| parent | Merge pull request #2441 from Diapolo/Qt_fix_copy_context_menu (diff) | |
| parent | Move GenerateBitcoins() call out of net.cpp's StartNode() (diff) | |
| download | discoin-06db61f09e4201a17ef169754ac374a2b7a37316.tar.xz discoin-06db61f09e4201a17ef169754ac374a2b7a37316.zip | |
Merge pull request #2431 from jgarzik/gen-bitcoins-init
Move GenerateBitcoins() call out of net.cpp's StartNode()
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/net.cpp b/src/net.cpp index 9ee6cb423..6f3c8a51a 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -2047,9 +2047,6 @@ void StartNode(void* parg) // Dump network addresses if (!NewThread(ThreadDumpAddress, NULL)) printf("Error; NewThread(ThreadDumpAddress) failed\n"); - - // Generate coins in the background - GenerateBitcoins(GetBoolArg("-gen", false), pwalletMain); } bool StopNode() |