|
|
|
@ -534,9 +534,11 @@ UniValue importwallet(const JSONRPCRequest& request)
|
|
|
|
|
int64_t nFilesize = std::max((int64_t)1, (int64_t)file.tellg());
|
|
|
|
|
file.seekg(0, file.beg);
|
|
|
|
|
|
|
|
|
|
pwallet->ShowProgress(_("Importing..."), 0); // show progress dialog in GUI
|
|
|
|
|
// Use uiInterface.ShowProgress instead of pwallet.ShowProgress because pwallet.ShowProgress has a cancel button tied to AbortRescan which
|
|
|
|
|
// we don't want for this progress bar shoing the import progress. uiInterface.ShowProgress does not have a cancel button.
|
|
|
|
|
uiInterface.ShowProgress(_("Importing..."), 0, false); // show progress dialog in GUI
|
|
|
|
|
while (file.good()) {
|
|
|
|
|
pwallet->ShowProgress("", std::max(1, std::min(99, (int)(((double)file.tellg() / (double)nFilesize) * 100))));
|
|
|
|
|
uiInterface.ShowProgress("", std::max(1, std::min(99, (int)(((double)file.tellg() / (double)nFilesize) * 100))), false);
|
|
|
|
|
std::string line;
|
|
|
|
|
std::getline(file, line);
|
|
|
|
|
if (line.empty() || line[0] == '#')
|
|
|
|
@ -599,7 +601,7 @@ UniValue importwallet(const JSONRPCRequest& request)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
file.close();
|
|
|
|
|
pwallet->ShowProgress("", 100); // hide progress dialog in GUI
|
|
|
|
|
uiInterface.ShowProgress("", 100, false); // hide progress dialog in GUI
|
|
|
|
|
pwallet->UpdateTimeFirstKey(nTimeBegin);
|
|
|
|
|
}
|
|
|
|
|
pwallet->RescanFromTime(nTimeBegin, reserver, false /* update */);
|
|
|
|
|