Browse Source

fix some comments

pull/99/head
Duke Leto 5 years ago
parent
commit
1ab6857d79
  1. 4
      src/connection.cpp

4
src/connection.cpp

@ -41,7 +41,7 @@ void ConnectionLoader::doAutoConnect(bool tryEzcashdStart) {
return; return;
} }
// Priority 2: Try to connect to detect zcash.conf and connect to it. // Priority 2: Try to connect to detect HUSH3.conf and connect to it.
auto config = autoDetectZcashConf(); auto config = autoDetectZcashConf();
main->logger->write(QObject::tr("Attempting autoconnect")); main->logger->write(QObject::tr("Attempting autoconnect"));
@ -54,7 +54,7 @@ void ConnectionLoader::doAutoConnect(bool tryEzcashdStart) {
if (tryEzcashdStart) { if (tryEzcashdStart) {
this->showInformation(QObject::tr("Starting embedded hushd")); this->showInformation(QObject::tr("Starting embedded hushd"));
if (this->startEmbeddedZcashd()) { if (this->startEmbeddedZcashd()) {
// Embedded zcashd started up. Wait a second and then refresh the connection // Embedded hushd started up. Wait a second and then refresh the connection
main->logger->write("Embedded hushd started up, trying autoconnect in 1 sec"); main->logger->write("Embedded hushd started up, trying autoconnect in 1 sec");
QTimer::singleShot(1000, [=]() { doAutoConnect(); } ); QTimer::singleShot(1000, [=]() { doAutoConnect(); } );
} else { } else {

Loading…
Cancel
Save