diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-07-14 11:34:47 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-07-14 11:35:30 +0200 |
| commit | 6513a9f7033737458735305a08606280d6d0d33c (patch) | |
| tree | 79b0a23420171992d8f4da85dfabd186670cc9ac /src/script.cpp | |
| parent | Merge pull request #4524 (diff) | |
| parent | make RandAddSeed() use OPENSSL_cleanse() (diff) | |
| download | discoin-6513a9f7033737458735305a08606280d6d0d33c.tar.xz discoin-6513a9f7033737458735305a08606280d6d0d33c.zip | |
Merge pull request #4400
4eedf4f make RandAddSeed() use OPENSSL_cleanse() (Philip Kaufmann)
6354935 move rand functions from util to new random.h/.cpp (Philip Kaufmann)
001a53d add GetRandBytes() as wrapper for RAND_bytes() (Philip Kaufmann)
Diffstat (limited to 'src/script.cpp')
| -rw-r--r-- | src/script.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/script.cpp b/src/script.cpp index 238a25e72..39ae001db 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -5,13 +5,14 @@ #include "script.h" +#include "crypto/ripemd160.h" +#include "crypto/sha1.h" +#include "crypto/sha2.h" #include "core.h" #include "hash.h" #include "key.h" #include "keystore.h" -#include "crypto/sha1.h" -#include "crypto/sha2.h" -#include "crypto/ripemd160.h" +#include "random.h" #include "sync.h" #include "uint256.h" #include "util.h" @@ -1097,7 +1098,6 @@ uint256 SignatureHash(const CScript &scriptCode, const CTransaction& txTo, unsig // Valid signature cache, to avoid doing expensive ECDSA signature checking // twice for every transaction (once when accepted into memory pool, and // again when accepted into the block chain) - class CSignatureCache { private: |