Skip to content

Commit

Permalink
fix: lint and check-types
Browse files Browse the repository at this point in the history
  • Loading branch information
twoeths authored and g11tech committed May 8, 2024
1 parent 5e4f1dd commit 93e84eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/types/src/electra/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ export type SignedConsolidation = ValueOf<typeof ssz.SignedConsolidation>;

export type PendingBalanceDeposit = ValueOf<typeof ssz.PendingBalanceDeposit>;
export type PartialWithdrawal = ValueOf<typeof ssz.PartialWithdrawal>;
export type PendingConsolidation = ValueOf<typeof ssz.PendingConsolidation>;
export type PendingConsolidation = ValueOf<typeof ssz.PendingConsolidation>;
2 changes: 1 addition & 1 deletion packages/utils/test/unit/assert.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe("assert", () => {
});

const cases: {
op: keyof Omit<typeof assert, "true">;
op: keyof Omit<typeof assert, "true" | "notNull">;
args: [number, number];
ok: boolean;
}[] = [
Expand Down

0 comments on commit 93e84eb

Please sign in to comment.