From 5cbf75324d1509a1262b65c5073314a4da3f6d77 Mon Sep 17 00:00:00 2001 From: s_nakamoto Date: Tue, 19 Oct 2010 17:16:51 +0000 Subject: Gavin's TEST network as -testnet switch, misc fixes git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@168 1a98c847-1fd6-4fd8-948a-caf3550aa51b --- main.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.h') diff --git a/main.h b/main.h index d4293b13b5..af552a5bac 100644 --- a/main.h +++ b/main.h @@ -22,7 +22,6 @@ static const int64 CENT = 1000000; static const int64 MAX_MONEY = 21000000 * COIN; inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } static const int COINBASE_MATURITY = 100; -static const CBigNum bnProofOfWorkLimit(~uint256(0) >> 32); @@ -31,7 +30,8 @@ static const CBigNum bnProofOfWorkLimit(~uint256(0) >> 32); extern CCriticalSection cs_main; extern map mapBlockIndex; -extern const uint256 hashGenesisBlock; +extern uint256 hashGenesisBlock; +extern CBigNum bnProofOfWorkLimit; extern CBlockIndex* pindexGenesisBlock; extern int nBestHeight; extern CBigNum bnBestChainWork; -- cgit v1.2.3