Skip to content

Commit

Permalink
Remove hack in fill feed from old testing (#247)
Browse files Browse the repository at this point in the history
remove hack in fill feed from old testing
  • Loading branch information
brittcyr authored Oct 31, 2024
1 parent 332c100 commit 4cf7bd4
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions client/ts/src/fillFeed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,7 @@ export class FillFeed {
c.charCodeAt(0),
);
const buffer = Buffer.from(byteArray);
// Hack to fix the difference in caching on the CI action.
if (
!buffer.subarray(0, 8).equals(fillDiscriminant) &&
!buffer
.subarray(0, 8)
.equals(Buffer.from([52, 81, 147, 82, 119, 191, 72, 172]))
) {
if (!buffer.subarray(0, 8).equals(fillDiscriminant)) {
continue;
}
const deserializedFillLog: FillLog = FillLog.deserialize(
Expand Down

0 comments on commit 4cf7bd4

Please sign in to comment.