aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorGiel van Schijndel <me@mortis.eu>2011-08-11 13:41:01 +0200
committerGiel van Schijndel <me@mortis.eu>2011-08-19 07:24:37 +0200
commit99860de3c9b5809110538e1ab2d4e216d77b5aaf (patch)
tree35579db7032a75646495548859b50495ba656ca6 /src/main.h
parent865ed8a1e5c587468a40756d46bcbc1c5a12bb06 (diff)
downloadbitcoin-99860de3c9b5809110538e1ab2d4e216d77b5aaf.tar.xz
Make some global variables less-global (static)
Explicitly make these global variables less-global to reduce the maximum scope of this global state. In my experience global variables tend to be a major source of bugs. As such the less accessible they are the less likely they are to be the source of a bug. Signed-off-by: Giel van Schijndel <me@mortis.eu>
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/main.h b/src/main.h
index 97a40d3ec9..d4b89225d1 100644
--- a/src/main.h
+++ b/src/main.h
@@ -54,7 +54,6 @@ static const int fHaveUPnP = false;
extern CCriticalSection cs_main;
extern std::map<uint256, CBlockIndex*> mapBlockIndex;
extern uint256 hashGenesisBlock;
-extern CBigNum bnProofOfWorkLimit;
extern CBlockIndex* pindexGenesisBlock;
extern int nBestHeight;
extern CBigNum bnBestChainWork;
@@ -1558,16 +1557,4 @@ public:
bool ProcessAlert();
};
-
-
-
-
-
-
-
-
-
-
-extern std::map<uint256, CTransaction> mapTransactions;
-
#endif