Skip to content

Commit

Permalink
change to BigInt
Browse files Browse the repository at this point in the history
  • Loading branch information
nasjuice committed May 7, 2024
1 parent 4cc5c2c commit 1a9fe6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/rpc-graphql/src/__tests__/transaction-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3011,7 +3011,7 @@ describe('transaction', () => {
},
multisigWithdrawWithheldAuthority: null,
programId: 'TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb',
proofInstructionOffset: expect.any(Number),
proofInstructionOffset: expect.any(BigInt),
signers: null,
withdrawWithheldAuthority: {
address: expect.any(String),
Expand All @@ -3031,7 +3031,7 @@ describe('transaction', () => {
address: expect.any(String),
},
programId: 'TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb',
proofInstructionOffset: expect.any(Number),
proofInstructionOffset: expect.any(BigInt),
signers: expect.arrayContaining([expect.any(String)]),
withdrawWithheldAuthority: null,
},
Expand Down
2 changes: 1 addition & 1 deletion packages/rpc-graphql/src/schema/instruction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ export const instructionTypeDefs = /* GraphQL */ `
instructionsSysvar: Account
mint: Account
multisigWithdrawWithheldAuthority: Account
proofInstructionOffset: Int
proofInstructionOffset: BigInt #*FIXME:*
signers: [Address]
withdrawWithheldAuthority: Account
}
Expand Down

0 comments on commit 1a9fe6a

Please sign in to comment.