Skip to content

Commit

Permalink
Check forks in the latest order
Browse files Browse the repository at this point in the history
  • Loading branch information
bunnie307 committed Apr 18, 2024
1 parent 1719299 commit 7237a4f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ public static Header readObject(ObjectReader r) {
}

public static void writeObject(ObjectWriter w, Header o) {
if (ChainConfig.getInstance().isHertz(o.number)) {
w.beginList(16);
} else if (ChainConfig.getInstance().isTycho(o.number)) {
if (ChainConfig.getInstance().isTycho(o.number)) {
w.beginList(19);
} else if (ChainConfig.getInstance().isHertz(o.number)) {
w.beginList(16);
} else {
w.beginList(15);
}
Expand Down

0 comments on commit 7237a4f

Please sign in to comment.