diff --git a/src/qt/dash.cpp b/src/qt/dash.cpp index 1f351bc839..4cd47236c9 100644 --- a/src/qt/dash.cpp +++ b/src/qt/dash.cpp @@ -54,7 +54,6 @@ #include #include #include -#include #if defined(QT_STATICPLUGIN) #include @@ -601,13 +600,6 @@ int main(int argc, char *argv[]) #ifdef Q_OS_MAC QApplication::setAttribute(Qt::AA_DontShowIconsInMenus); #endif -#if QT_VERSION >= 0x050500 - // Because of the POODLE attack it is recommended to disable SSLv3 (https://disablessl3.com/), - // so set SSL protocols to TLS1.0+. - QSslConfiguration sslconf = QSslConfiguration::defaultConfiguration(); - sslconf.setProtocol(QSsl::TlsV1_0OrLater); - QSslConfiguration::setDefaultConfiguration(sslconf); -#endif // Register meta types used for QMetaObject::invokeMethod qRegisterMetaType< bool* >();