summarylogtreecommitdiffstats
path: root/qt.patch
diff options
context:
space:
mode:
Diffstat (limited to 'qt.patch')
-rw-r--r--qt.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/qt.patch b/qt.patch
deleted file mode 100644
index 3aff69a51c40..000000000000
--- a/qt.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp
-index d3ec67e4418b..edb6e9bc8173 100644
---- a/src/qt/bitcoin.cpp
-+++ b/src/qt/bitcoin.cpp
-@@ -49,7 +49,6 @@
- #include <QLocale>
- #include <QMessageBox>
- #include <QSettings>
--#include <QSslConfiguration>
- #include <QStringList>
- #include <QThread>
- #include <QTimer>
-@@ -608,13 +608,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 *>();