3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-12 02:05:53 +00:00

Remove obsolete comment.

This commit is contained in:
Mike Hearn 2011-03-24 17:41:16 +00:00
parent 7f30e20170
commit 9b78765975

View File

@ -144,7 +144,6 @@ public class BlockChain {
StoredBlock newStoredBlock = buildStoredBlock(storedPrev, block); StoredBlock newStoredBlock = buildStoredBlock(storedPrev, block);
// Store it. // Store it.
blockStore.put(newStoredBlock); blockStore.put(newStoredBlock);
// TODO: Break the assumption of object equality here.
if (storedPrev.equals(chainHead)) { if (storedPrev.equals(chainHead)) {
// This block connects to the best known block, it is a normal continuation of the system. // This block connects to the best known block, it is a normal continuation of the system.
chainHead = newStoredBlock; chainHead = newStoredBlock;