aboutsummaryrefslogtreecommitdiff
path: root/src/validation.cpp
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2019-05-26 11:01:58 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2019-06-06 07:45:56 +0200
commit0959d37e3e0f80010a78d175e3846dabf5d35919 (patch)
tree5bf5a0ff6c7887cb53d94febdbadaa7826dfd6cf /src/validation.cpp
parent03858b23fe1d17e681eb18d24602b276020295a0 (diff)
downloadbitcoin-0959d37e3e0f80010a78d175e3846dabf5d35919.tar.xz
Don't use global (external) symbols for symbols that are used in only one translation unit
Diffstat (limited to 'src/validation.cpp')
-rw-r--r--src/validation.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/validation.cpp b/src/validation.cpp
index 6fd7964647..31b2eb3973 100644
--- a/src/validation.cpp
+++ b/src/validation.cpp
@@ -78,7 +78,7 @@ bool CBlockIndexWorkComparator::operator()(const CBlockIndex *pa, const CBlockIn
return false;
}
-CChainState g_chainstate;
+static CChainState g_chainstate;
CChainState& ChainstateActive() { return g_chainstate; }
@@ -1049,7 +1049,7 @@ bool CChainState::IsInitialBlockDownload() const
return false;
}
-CBlockIndex *pindexBestForkTip = nullptr, *pindexBestForkBase = nullptr;
+static CBlockIndex *pindexBestForkTip = nullptr, *pindexBestForkBase = nullptr;
static void AlertNotify(const std::string& strMessage)
{
@@ -4762,4 +4762,5 @@ public:
delete (*it1).second;
mapBlockIndex.clear();
}
-} instance_of_cmaincleanup;
+};
+static CMainCleanup instance_of_cmaincleanup;