aboutsummaryrefslogtreecommitdiff
path: root/src/sync.cpp
diff options
context:
space:
mode:
authorMarcoFalke <[email protected]>2018-05-17 12:25:09 -0400
committerMarcoFalke <[email protected]>2018-05-17 12:26:02 -0400
commit1b53e4f67c6dbefadbfda7e40948840fe2b9da48 (patch)
treeb7a2ebdfe39428f0066f862da35f235930062d62 /src/sync.cpp
parentMerge #13251: GUI: Rephrase Bech32 checkbox texts, and enable it with legacy ... (diff)
parentbreak circular dependency: random/sync -> util -> random/sync (diff)
downloaddiscoin-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/sync.cpp')
-rw-r--r--src/sync.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/sync.cpp b/src/sync.cpp
index 6f21d498e..1f27aeb40 100644
--- a/src/sync.cpp
+++ b/src/sync.cpp
@@ -4,13 +4,15 @@
#include <sync.h>
-#include <memory>
-#include <set>
-#include <util.h>
+#include <logging.h>
#include <utilstrencodings.h>
#include <stdio.h>
+#include <map>
+#include <memory>
+#include <set>
+
#ifdef DEBUG_LOCKCONTENTION
#if !defined(HAVE_THREAD_LOCAL)
static_assert(false, "thread_local is not supported");