diff --git a/alethzero/MainWin.cpp b/alethzero/MainWin.cpp index dca675f79..007ad9676 100644 --- a/alethzero/MainWin.cpp +++ b/alethzero/MainWin.cpp @@ -181,12 +181,10 @@ Main::Main(QWidget *parent) : m_servers.append("192.168.0.10:30301"); #else int pocnumber = QString(ETH_QUOTED(ETH_VERSION)).section('.', 1, 1).toInt(); - if (pocnumber == 3) - m_servers.push_back("54.201.28.117:30303"); - else if (pocnumber == 4) + if (pocnumber == 4) m_servers.push_back("54.72.31.55:30303"); else if (pocnumber == 5) - m_servers.push_back("54.72.31.55:30305"); + m_servers.push_back("54.201.28.117:30303"); else { connect(&m_webCtrl, &QNetworkAccessManager::finished, [&](QNetworkReply* _r) diff --git a/libethcore/Common.h b/libethcore/Common.h index 67fa36adc..59ba75b36 100644 --- a/libethcore/Common.h +++ b/libethcore/Common.h @@ -24,7 +24,7 @@ #pragma once // define version -#define ETH_VERSION 0.5.2 +#define ETH_VERSION 0.5.3 // way to many uint to size_t warnings in 32 bit build #ifdef _M_IX86