Skip to content

Commit ecd1ad3

Browse files
committed
refactor: defaulting to bigint instead of regular int
1 parent d0b2935 commit ecd1ad3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sagas/tokens.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ function* fetchTokenBalance(action) {
118118
const response = yield call(wallet.getBalance.bind(wallet), tokenId);
119119
const token = get(response, 0, {
120120
balance: {
121-
unlocked: 0,
122-
locked: 0,
121+
unlocked: 0n,
122+
locked: 0n,
123123
}
124124
});
125125

0 commit comments

Comments
 (0)