Enable some simple checks of transaction ordering in the block verification.

This commit is contained in:
Mike Hearn 2011-03-08 12:10:08 +00:00
parent fdde166813
commit 66321804e7

View File

@ -269,7 +269,7 @@ public class Block extends Message {
// reference spent or non-existant inputs.
if (transactions != null) {
assert transactions.size() > 0;
//checkTransactions();
checkTransactions();
checkMerkleHash();
}
}