aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2019-04-29 12:53:24 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2019-04-29 12:53:24 +0200
commita34081b7c398847c37a587029c7ad7f3a3396c8e (patch)
tree0613ec3c5a589dd295f4d2ab9879c35cf0fc7e5f /src
parent3a0d6da098c77703f30bb6bbd58c1d42390c469f (diff)
downloadbitcoin-a34081b7c398847c37a587029c7ad7f3a3396c8e.tar.xz
Remove unused OpenSSL includes to make it more clear where OpenSSL is used
Diffstat (limited to 'src')
-rw-r--r--src/init.cpp1
-rw-r--r--src/qt/rpcconsole.cpp2
-rw-r--r--src/test/crypto_tests.cpp2
3 files changed, 0 insertions, 5 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 29c9694213..7b7456db1d 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 c7ced3c106..8b6dcf0445 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 8a219a8284..0d05b6514f 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)