From a34081b7c398847c37a587029c7ad7f3a3396c8e Mon Sep 17 00:00:00 2001
From: practicalswift <practicalswift@users.noreply.github.com>
Date: Mon, 29 Apr 2019 12:53:24 +0200
Subject: [PATCH] Remove unused OpenSSL includes to make it more clear where
 OpenSSL is used

---
 src/init.cpp              | 1 -
 src/qt/rpcconsole.cpp     | 2 --
 src/test/crypto_tests.cpp | 2 --
 3 files changed, 5 deletions(-)

diff --git a/src/init.cpp b/src/init.cpp
index 29c969421..7b7456db1 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -66,7 +66,6 @@
 #include <boost/algorithm/string/replace.hpp>
 #include <boost/algorithm/string/split.hpp>
 #include <boost/thread.hpp>
-#include <openssl/crypto.h>
 
 #if ENABLE_ZMQ
 #include <zmq/zmqabstractnotifier.h>
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp
index c7ced3c10..8b6dcf044 100644
--- a/src/qt/rpcconsole.cpp
+++ b/src/qt/rpcconsole.cpp
@@ -21,8 +21,6 @@
 #include <util/strencodings.h>
 #include <util/system.h>
 
-#include <openssl/crypto.h>
-
 #include <univalue.h>
 
 #ifdef ENABLE_WALLET
diff --git a/src/test/crypto_tests.cpp b/src/test/crypto_tests.cpp
index 8a219a828..0d05b6514 100644
--- a/src/test/crypto_tests.cpp
+++ b/src/test/crypto_tests.cpp
@@ -18,8 +18,6 @@
 #include <vector>
 
 #include <boost/test/unit_test.hpp>
-#include <openssl/aes.h>
-#include <openssl/evp.h>
 
 BOOST_FIXTURE_TEST_SUITE(crypto_tests, BasicTestingSetup)