diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-08-04 12:21:59 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-08-04 12:33:21 +0200 |
| commit | f97d335942ae1a78c4898acf8640d99f4deaa6d3 (patch) | |
| tree | 133c24dcf1d2728db1e92d3f9e597ea1c9aa3079 /src/net.cpp | |
| parent | Merge #8391: Consensus: Remove ISM (diff) | |
| parent | Do diskspace check before import thread is started (diff) | |
| download | discoin-f97d335942ae1a78c4898acf8640d99f4deaa6d3.tar.xz discoin-f97d335942ae1a78c4898acf8640d99f4deaa6d3.zip | |
Merge #8392: Fix several node initialization issues
9d4eb9a Do diskspace check before import thread is started (Pieter Wuille)
aa59f2e Add extra message to avoid a long 'Loading banlist' (Pieter Wuille)
0fd2a33 Use a signal to continue init after genesis activation (Pieter Wuille)
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/net.cpp b/src/net.cpp index 4a7fa2228..4bbe5059d 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -2050,6 +2050,8 @@ void StartNode(boost::thread_group& threadGroup, CScheduler& scheduler) DumpBanlist(); } + uiInterface.InitMessage(_("Starting network threads...")); + fAddressesInitialized = true; if (semOutbound == NULL) { |