Merge pull request #2431 from jgarzik/gen-bitcoins-init

Move GenerateBitcoins() call out of net.cpp's StartNode()
This commit is contained in:
Gavin Andresen
2013-04-02 08:56:57 -07:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1027,6 +1027,9 @@ bool AppInit2()
if (fServer)
NewThread(ThreadRPCServer, NULL);
// Generate coins in the background
GenerateBitcoins(GetBoolArg("-gen", false), pwalletMain);
// ********************************************************* Step 12: finished
uiInterface.InitMessage(_("Done loading"));