zcashd support 2.0.1
This commit is contained in:
@@ -239,7 +239,8 @@ void RPC::handleConnectionError(const QString& error) {
|
||||
explanation = QString()
|
||||
% "\n\nThis is most likely an internal error. Are you using zcashd v2.0 or higher? You might "
|
||||
% "need to file a bug report here: ";
|
||||
} else if (error.contains("internal server error", Qt::CaseInsensitive)) {
|
||||
} else if (error.contains("internal server error", Qt::CaseInsensitive) ||
|
||||
error.contains("rewinding")) {
|
||||
explanation = QString()
|
||||
% "\n\nIf you just started zcashd, then it's still loading and you might have to wait a while. If zcashd is ready, then you've run into "
|
||||
% "something unexpected, and might need to file a bug report here: ";
|
||||
@@ -466,7 +467,7 @@ void RPC::refreshTxStatus(const QString& newOpid) {
|
||||
main->loadingLabel->setVisible(false);
|
||||
} else {
|
||||
main->loadingLabel->setVisible(true);
|
||||
main->loadingLabel->setToolTip(QString::number(numExecuting) + " tx computing");
|
||||
main->loadingLabel->setToolTip(QString::number(numExecuting) + " tx computing. This can take several minutes.");
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user