mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Log the sequence in the close time message.
This commit is contained in:
@@ -695,7 +695,8 @@ void LedgerConsensus::updateOurPositions()
|
|||||||
|
|
||||||
for (std::map<uint32, int>::iterator it = closeTimes.begin(), end = closeTimes.end(); it != end; ++it)
|
for (std::map<uint32, int>::iterator it = closeTimes.begin(), end = closeTimes.end(); it != end; ++it)
|
||||||
{
|
{
|
||||||
cLog(lsDEBUG) << "CCTime: " << it->first << " has " << it->second << ", " << threshVote << " required";
|
cLog(lsDEBUG) << "CCTime: seq" << mPreviousLedger->getLedgerSeq() + 1 << ": " <<
|
||||||
|
it->first << " has " << it->second << ", " << threshVote << " required";
|
||||||
if (it->second >= threshVote)
|
if (it->second >= threshVote)
|
||||||
{
|
{
|
||||||
cLog(lsDEBUG) << "Close time consensus reached: " << it->first;
|
cLog(lsDEBUG) << "Close time consensus reached: " << it->first;
|
||||||
|
|||||||
Reference in New Issue
Block a user