diff options
| author | Pieter Wuille <[email protected]> | 2014-04-26 19:26:34 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-06-21 19:47:39 +0200 |
| commit | 7b4737c87805b464cd47d01a9d814df5e41b8255 (patch) | |
| tree | 152f8a981d9ccaddd8599ebe57ab395e9cc83cec /src/miner.cpp | |
| parent | Add a built-in SHA256/SHA512 implementation. (diff) | |
| download | discoin-7b4737c87805b464cd47d01a9d814df5e41b8255.tar.xz discoin-7b4737c87805b464cd47d01a9d814df5e41b8255.zip | |
Switch script.cpp and hash.cpp to use sha2.cpp instead of OpenSSL.
Diffstat (limited to 'src/miner.cpp')
| -rw-r--r-- | src/miner.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/miner.cpp b/src/miner.cpp index 87779efbb..c48c9f052 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -12,7 +12,10 @@ #include "wallet.h" #endif +#include <openssl/sha.h> + using namespace std; + ////////////////////////////////////////////////////////////////////////////// // // BitcoinMiner |