Skip to content

Commit

Permalink
fix: correct resolve asset frozen boolean (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcampbell authored Aug 9, 2024
1 parent 37caf0f commit 3830657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/account-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export class AccountManager {
return {
assetId: BigInt(assetId),
balance: BigInt(info['asset-holding']['amount']),
frozen: info['asset-holding']['is-frozen'] === 'true',
frozen: info['asset-holding']['is-frozen'] === true,
round: BigInt(info['round']),
}
}
Expand Down

0 comments on commit 3830657

Please sign in to comment.