changeset 2962:dbcd9f583247 draft

Check earlier for blocks with duplicate transactions. Fixes #1167
author Gavin Andresen <gavinandresen@gmail.com>
date Sun, 29 Apr 2012 20:56:55 -0400
parents 886e5958a54e
children 2cabaf34b929 303fa0657007
files src/main.cpp
diffstat 1 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1472,6 +1472,16 @@
         if (!tx.CheckTransaction())
             return error("CheckBlock() : CheckTransaction failed");
 
+    // Check for duplicate txids. This is caught by ConnectInputs(),
+    // but catching it earlier avoids a potential DoS attack:
+    set<uint256> uniqueTx;
+    BOOST_FOREACH(const CTransaction& tx, vtx)
+    {
+        uniqueTx.insert(tx.GetHash());
+    }
+    if (uniqueTx.size() != vtx.size())
+        return error("CheckBlock() : duplicate transaction");
+
     // Check that it's not full of nonstandard transactions
     if (GetSigOpCount() > MAX_BLOCK_SIGOPS)
         return error("CheckBlock() : out-of-bounds SigOpCount");