Skip to content

Commit

Permalink
fix(legacy): declare transaction meta as nullable (#1812)
Browse files Browse the repository at this point in the history
  • Loading branch information
joncinque authored Nov 7, 2023
1 parent d575f09 commit ffeddf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/library-legacy/src/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2524,7 +2524,7 @@ const GetTransactionRpcResult = jsonRpcResult(
nullable(
pick({
slot: number(),
meta: ConfirmedTransactionMetaResult,
meta: nullable(ConfirmedTransactionMetaResult),
blockTime: optional(nullable(number())),
transaction: ConfirmedTransactionResult,
version: optional(TransactionVersionStruct),
Expand Down

0 comments on commit ffeddf6

Please sign in to comment.