Skip to content

Commit

Permalink
fix: interface keys must to be in ascending order
Browse files Browse the repository at this point in the history
  • Loading branch information
diman-io authored and steveluscher committed Dec 11, 2024
1 parent 50d746c commit c3d9ca3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ type SlotsUpdatesNotificationsApiNotificationDead = Readonly<{
SlotsUpdatesNotificationsApiNotificationBase;

type SlotsUpdatesNotificationsApiNotificationFrozen = Readonly<{
hash?: string;
stats: Readonly<{
maxTransactionsPerEntry: bigint;
numFailedTransactions: bigint;
numSuccessfulTransactions: bigint;
numTransactionEntries: bigint;
}>;
hash?: string;
type: 'frozen';
}> &
SlotsUpdatesNotificationsApiNotificationBase;
Expand Down

0 comments on commit c3d9ca3

Please sign in to comment.