Skip to content

Commit

Permalink
Fix locked balance in playground
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedHanafy725 committed Jun 20, 2023
1 parent 0574ff2 commit 640442e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/playground/src/utils/grid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export async function loadBalance(grid: GridClient): Promise<Balance> {
const balance = await grid.balance.getMyBalance();
return {
free: +balance.free,
locked: +balance.feeFrozen,
locked: +balance.frozen,
};
}

Expand Down

0 comments on commit 640442e

Please sign in to comment.