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/test/test_bitcoin.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/test/test_bitcoin.cpp')
| -rw-r--r-- | src/test/test_bitcoin.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index bcd2f75f5..443b5853b 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -4,9 +4,8 @@ #define BOOST_TEST_MODULE Bitcoin Test Suite - - #include "main.h" +#include "random.h" #include "txdb.h" #include "ui_interface.h" #include "util.h" @@ -89,4 +88,3 @@ bool ShutdownRequested() { return false; } - |