Skip to content

Commit

Permalink
fix(blockchain-link-utils): leftover bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
martykan committed Nov 29, 2024
1 parent 3fa9280 commit aea5be0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/blockchain-link-utils/src/solana.ts
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ export const getDetails = (

const getVin = ({ address, amount }: { address: string; amount?: BigNumber }, i: number) => ({
txid: transaction.transaction.signatures[0].toString(),
version: transaction.version,
version: Number(transaction.version),
isAddress: true,
isAccountOwned: address === accountAddress,
n: i,
Expand Down

0 comments on commit aea5be0

Please sign in to comment.