diff options
| author | Cory Fields <[email protected]> | 2015-01-20 19:23:25 -0500 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2015-02-15 11:34:02 -0500 |
| commit | 1630219d906f592c9258bfe2a0e0c4923df35782 (patch) | |
| tree | 02b0ed9574290873f88bd0ebc1bd0a224c98e5b1 /src/qt/paymentrequestplus.h | |
| parent | Merge #5629: [Qt] prevent amount overflow problem with payment requests (diff) | |
| download | discoin-1630219d906f592c9258bfe2a0e0c4923df35782.tar.xz discoin-1630219d906f592c9258bfe2a0e0c4923df35782.zip | |
openssl: abstract out OPENSSL_cleanse
This makes it easier for us to replace it if desired, since it's now only in
one spot. Also, it avoids the openssl include from allocators.h, which
essentially forced openssl to be included from every compilation unit.
Diffstat (limited to 'src/qt/paymentrequestplus.h')
| -rw-r--r-- | src/qt/paymentrequestplus.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/paymentrequestplus.h b/src/qt/paymentrequestplus.h index fbc3a0926..61f8a3415 100644 --- a/src/qt/paymentrequestplus.h +++ b/src/qt/paymentrequestplus.h @@ -9,6 +9,8 @@ #include "base58.h" +#include <openssl/x509.h> + #include <QByteArray> #include <QList> #include <QString> |