diff options
| author | Philip Kaufmann <[email protected]> | 2014-06-26 14:41:53 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-07-09 09:42:19 +0200 |
| commit | 6354935c485d116e1965567561c197ab3fbc0e11 (patch) | |
| tree | 9dc218c1ed2fad513df1cf309f5ecd271069067a /src/test/test_bitcoin.cpp | |
| parent | add GetRandBytes() as wrapper for RAND_bytes() (diff) | |
| download | discoin-6354935c485d116e1965567561c197ab3fbc0e11.tar.xz discoin-6354935c485d116e1965567561c197ab3fbc0e11.zip | |
move rand functions from util to new random.h/.cpp
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; } - |