Skip to content

Commit

Permalink
fixup! bug?: Change how "received validations" are counted:
Browse files Browse the repository at this point in the history
  • Loading branch information
ximinez committed Oct 23, 2024
1 parent 2caa778 commit 8028ea9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/ripple/app/misc/impl/AmendmentTable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -860,6 +860,10 @@ AmendmentTableImpl::doVoting(
majorityTime = it->second;
}

JLOG(j_.debug()) << "Amendment " << entry.second.name << " ("
<< entry.first << ") has " << vote->votes(entry.first)
<< " votes";

if (enabledAmendments.count(entry.first) != 0)
{
JLOG(j_.trace()) << entry.first << ": amendment already enabled";
Expand Down Expand Up @@ -904,7 +908,7 @@ AmendmentTableImpl::doVoting(
}
else
{
JLOG(j_.trace())
JLOG(j_.debug())
<< entry.first << ": amendment does not have majority";
}
}
Expand Down

0 comments on commit 8028ea9

Please sign in to comment.