aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2012-09-17 02:06:27 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2012-09-17 02:06:27 +0000
commit3a9899f6a88b00160a82b12d451750e6ae4245cc (patch)
tree801a77b89ec9e3f90bc3ba7e639bf0f385068fe4 /src/main.cpp
parentea3e34dc3d710747f625e4f93eaed2686c9db045 (diff)
parenta53b07313ffef3f4a3ad00a1a1befb4d9746d271 (diff)
downloadbitcoin-3a9899f6a88b00160a82b12d451750e6ae4245cc.tar.xz
Merge branch '0.4.x' into 0.5.x
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index b7d2398e95..7e9bc4efb0 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1193,9 +1193,18 @@ bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex)
// See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information.
// This logic is not necessary for memory pool transactions, as AcceptToMemoryPool
// already refuses previously-known transaction ids entirely.
- // This rule applies to all blocks whose timestamp is after March 15, 2012, 0:00 UTC.
+ // This rule was originally applied all blocks whose timestamp was after March 15, 2012, 0:00 UTC.
+ // Now that the whole chain is irreversibly beyond that time it is applied to all blocks except the
+ // two in the chain that violate it. This prevents exploiting the issue against nodes in their
+ // initial block download.
// On testnet it is enabled as of februari 20, 2012, 0:00 UTC.
- if (pindex->nTime > 1331769600 || (fTestNet && pindex->nTime > 1329696000))
+ bool fEnforceBIP30;
+ if (fTestNet)
+ fEnforceBIP30 = pindex->nTime > 1329696000;
+ else
+ fEnforceBIP30 = !((pindex->nHeight==91842 && pindex->GetBlockHash() == uint256("0x00000000000a4d0a398161ffc163c503763b1f4360639393e0e4c8e300e0caec")) ||
+ (pindex->nHeight==91880 && pindex->GetBlockHash() == uint256("0x00000000000743f190a18c5577a3c2d2a1f610ae9601ac046a38084ccb7cd721")));
+ if (fEnforceBIP30)
{
BOOST_FOREACH(CTransaction& tx, vtx)
{