diff options
| author | MarcoFalke <[email protected]> | 2018-05-17 12:25:09 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-05-17 12:26:02 -0400 |
| commit | 1b53e4f67c6dbefadbfda7e40948840fe2b9da48 (patch) | |
| tree | b7a2ebdfe39428f0066f862da35f235930062d62 /src/random.cpp | |
| parent | Merge #13251: GUI: Rephrase Bech32 checkbox texts, and enable it with legacy ... (diff) | |
| parent | break circular dependency: random/sync -> util -> random/sync (diff) | |
| download | discoin-1b53e4f67c6dbefadbfda7e40948840fe2b9da48.tar.xz discoin-1b53e4f67c6dbefadbfda7e40948840fe2b9da48.zip | |
Merge #13236: break circular dependency: random/sync -> util -> random/sync
84f41946b9 break circular dependency: random/sync -> util -> random/sync (Chun Kuan Lee)
Pull request description:
LogPrintf has acutally been moved to logging.h
Tree-SHA512: a7135f5fea421e62f010f2e434873bd1c1738f115453377dada7d24900b3b095535d8aa0462c3acffdacf2f4e819e05ad39b13f2de5a36ac8f7b8467c639a0db
Diffstat (limited to 'src/random.cpp')
| -rw-r--r-- | src/random.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/random.cpp b/src/random.cpp index 4ba86e4e7..491272d5f 100644 --- a/src/random.cpp +++ b/src/random.cpp @@ -11,14 +11,15 @@ #include <compat.h> // for Windows API #include <wincrypt.h> #endif -#include <util.h> // for LogPrint() -#include <utilstrencodings.h> // for GetTime() +#include <logging.h> // for LogPrint() +#include <utiltime.h> // for GetTime() #include <stdlib.h> #include <chrono> #include <thread> #ifndef WIN32 +#include <fcntl.h> #include <sys/time.h> #endif |