From fb434159d18e8077ae2d31e1a54c2f8248a6366a Mon Sep 17 00:00:00 2001 From: practicalswift Date: Fri, 24 May 2019 15:18:42 +0200 Subject: Remove global symbols: Avoid using the global namespace if possible Rename CCriticalSection to RecursiveMutex (both are AnnotatedMixin) ``` $ git grep -E '(typedef|using).*(CCriticalSection|RecursiveMutex)' src/sync.h:using RecursiveMutex = AnnotatedMixin; src/sync.h:typedef AnnotatedMixin CCriticalSection; ``` --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/init.cpp') diff --git a/src/init.cpp b/src/init.cpp index b4b4ccb654..2bb270647a 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -74,7 +74,7 @@ #include #endif -bool fFeeEstimatesInitialized = false; +static bool fFeeEstimatesInitialized = false; static const bool DEFAULT_PROXYRANDOMIZE = true; static const bool DEFAULT_REST_ENABLE = false; static const bool DEFAULT_STOPAFTERBLOCKIMPORT = false; -- cgit v1.2.3