Skip to content

Commit b2b2098

Browse files
committed
fix: interface keys must to be in ascending order
1 parent b19f073 commit b2b2098

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/rpc-subscriptions-api/src/slots-updates-notifications.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ type SlotsUpdatesNotificationsApiNotificationDead = Readonly<{
1919
SlotsUpdatesNotificationsApiNotificationBase;
2020

2121
type SlotsUpdatesNotificationsApiNotificationFrozen = Readonly<{
22+
hash?: string;
2223
stats: Readonly<{
2324
maxTransactionsPerEntry: bigint;
2425
numFailedTransactions: bigint;
2526
numSuccessfulTransactions: bigint;
2627
numTransactionEntries: bigint;
2728
}>;
28-
hash?: string;
2929
type: 'frozen';
3030
}> &
3131
SlotsUpdatesNotificationsApiNotificationBase;

0 commit comments

Comments
 (0)