diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-10-19 17:16:51 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-10-19 17:16:51 +0000 |
commit | 5cbf75324d1509a1262b65c5073314a4da3f6d77 (patch) | |
tree | fcaaca0e6f71362c3968735b29ea8e2e7fff9dbb /main.h | |
parent | 2fad3d34b7b9bf03d56970cb36d9a091609b10c8 (diff) |
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
Diffstat (limited to 'main.h')
-rw-r--r-- | main.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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<uint256, CBlockIndex*> mapBlockIndex; -extern const uint256 hashGenesisBlock; +extern uint256 hashGenesisBlock; +extern CBigNum bnProofOfWorkLimit; extern CBlockIndex* pindexGenesisBlock; extern int nBestHeight; extern CBigNum bnBestChainWork; |