diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-08-21 15:28:06 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-09-11 13:38:34 +0000 |
commit | 8f418a6db0953d7a1d0c1dfa24d79f59cef618b7 (patch) | |
tree | c4fdf69d36e78df69280594547ac35f474f12618 | |
parent | bulletproofs: speed up the latest changes a bit (diff) | |
download | monero-8f418a6db0953d7a1d0c1dfa24d79f59cef618b7.tar.xz |
bulletproofs: #include <openssl/bn.h>
Apparently needed for openssl 1.1.x
-rw-r--r-- | src/ringct/bulletproofs.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ringct/bulletproofs.cc b/src/ringct/bulletproofs.cc index 165691bfe..abe4ef18d 100644 --- a/src/ringct/bulletproofs.cc +++ b/src/ringct/bulletproofs.cc @@ -30,6 +30,7 @@ #include <stdlib.h> #include <openssl/ssl.h> +#include <openssl/bn.h> #include <boost/thread/mutex.hpp> #include "misc_log_ex.h" #include "common/perf_timer.h" |