diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-08-17 14:21:17 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-08-17 14:21:17 +0200 |
commit | 2d914f89fee789defe1a1c692485b06105ff0ab3 (patch) | |
tree | e819cfe72bff628be317677f68ea07a1255b7abd /src | |
parent | 0825aee8f4b2c942bb2ae5fbc63afa576fbe0f1b (diff) |
add splashscreen message when importing blocks via -loadblock
Diffstat (limited to 'src')
-rw-r--r-- | src/init.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index 2937643bca..7322b23eac 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -715,6 +715,7 @@ bool AppInit2() if (mapArgs.count("-loadblock")) { + uiInterface.InitMessage(_("Importing blocks...")); BOOST_FOREACH(string strFile, mapMultiArgs["-loadblock"]) { FILE *file = fopen(strFile.c_str(), "rb"); |