Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Fix rent epoch type
Browse files Browse the repository at this point in the history
  • Loading branch information
backmeupplz authored Jan 7, 2025
1 parent 8ea27fc commit 15cbdec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {Agent as NodeHttpsAgent} from 'https';
import {
type as pick,
number,
bigint,
string,
array,
boolean,
Expand Down Expand Up @@ -1930,7 +1931,7 @@ const AccountInfoResult = pick({
owner: PublicKeyFromString,
lamports: number(),
data: BufferFromRawAccountData,
rentEpoch: number(),
rentEpoch: bigint(),
});

/**
Expand Down

0 comments on commit 15cbdec

Please sign in to comment.