Fix some mishandling of genesis block close timing.

This commit is contained in:
JoelKatz
2012-06-20 13:40:10 -07:00
parent 796e1443c6
commit 94bc059f87
4 changed files with 12 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ bool ValidationCollection::addValidation(SerializedValidation::pointer val)
if ((now > valClose) && (now < (valClose + 2 * LEDGER_INTERVAL)))
isTrusted = true;
else
Log(lsWARNING) << "Received stale validation";
Log(lsWARNING) << "Received stale validation now=" << now << ", close=" << valClose;
}
uint256 hash = val->getLedgerHash();