You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fork_choice/get_head specifies, that when choosing the heaviest child, ties should be broken lexicographically:
# Sort by latest attesting balance with ties broken lexicographically
However, Harmony implementation sorts by latest balance only. head = children.stream().max(Comparator.comparing(root -> get_latest_attesting_balance(store, root))).get();
The text was updated successfully, but these errors were encountered:
fork_choice/get_head specifies, that when choosing the heaviest child, ties should be broken lexicographically:
However, Harmony implementation sorts by latest balance only.
head = children.stream().max(Comparator.comparing(root -> get_latest_attesting_balance(store, root))).get();
The text was updated successfully, but these errors were encountered: