diff options
| author | Pieter Wuille <[email protected]> | 2012-10-21 12:22:29 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-10-21 12:22:29 -0700 |
| commit | d44f1ea394d3f0f324f7d61e97fec2b7ba2e865f (patch) | |
| tree | b908aab3670916c627123d662048ba420792072e /src/main.cpp | |
| parent | Tab instead of 4 spaces in makefile.mingw (diff) | |
| parent | remove init messages from ThreadImport() (diff) | |
| download | discoin-d44f1ea394d3f0f324f7d61e97fec2b7ba2e865f.tar.xz discoin-d44f1ea394d3f0f324f7d61e97fec2b7ba2e865f.zip | |
Merge pull request #1941 from Diapolo/rem_initMsg_main
remove init messages from ThreadImport()
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index 064ac7e10..c9e1e163d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2549,7 +2549,6 @@ void ThreadImport(void *data) { vnThreadsRunning[THREAD_IMPORT]++; // -loadblock= - uiInterface.InitMessage(_("Starting block import...")); BOOST_FOREACH(boost::filesystem::path &path, *vFiles) { FILE *file = fopen(path.string().c_str(), "rb"); if (file) @@ -2559,8 +2558,6 @@ void ThreadImport(void *data) { // hardcoded $DATADIR/bootstrap.dat filesystem::path pathBootstrap = GetDataDir() / "bootstrap.dat"; if (filesystem::exists(pathBootstrap)) { - uiInterface.InitMessage(_("Importing bootstrap blockchain data file.")); - FILE *file = fopen(pathBootstrap.string().c_str(), "rb"); if (file) { filesystem::path pathBootstrapOld = GetDataDir() / "bootstrap.dat.old"; |