Merge branch 'master' of github.com:adityapk00/zec-qt-wallet

This commit is contained in:
adityapk00
2018-10-29 18:39:15 -07:00

View File

@@ -434,14 +434,12 @@ void MainWindow::importPrivKey() {
return !key.trimmed().isEmpty(); return !key.trimmed().isEmpty();
}); });
// Start the import // Start the import. The function takes ownership of keys
doImport(keys); doImport(keys);
QMessageBox::information(this, QMessageBox::information(this,
"Imported", "The keys were imported. It may take several minutes to rescan the blockchain with the new keys for your balance to be shown accurately.", "Imported", "The keys were imported. It may take several minutes to rescan the blockchain with the new keys for your balance to be shown accurately.",
QMessageBox::Ok); QMessageBox::Ok);
} }
} }
void MainWindow::setupBalancesTab() { void MainWindow::setupBalancesTab() {