From 19ee5c6c22ac9b3541417b350356e7aad0c8429e Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Mon, 11 Mar 2013 15:30:41 -0700 Subject: [PATCH] Remove incorrect comment. --- src/cpp/ripple/ValidationCollection.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cpp/ripple/ValidationCollection.cpp b/src/cpp/ripple/ValidationCollection.cpp index 6f10bcca9e..032ff4066c 100644 --- a/src/cpp/ripple/ValidationCollection.cpp +++ b/src/cpp/ripple/ValidationCollection.cpp @@ -251,9 +251,10 @@ ValidationCollection::getCurrentValidations(uint256 currentLedger) else { // contains a live record bool countPreferred = valCurrentLedger && it->second->isPreviousHash(currentLedger); + tLog(countPreferred, lsDEBUG) << "Counting for " << currentLedger << " not " << it->second->getLedgerHash(); currentValidationCount& p = countPreferred ? ret[currentLedger] : ret[it->second->getLedgerHash()]; - ++(p.first); // count for the favored ledger + ++(p.first); uint160 ni = it->second->getNodeID(); if (ni > p.second) p.second = ni;