Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
fix(plutus): Display correct locked balance in PlutusDAO (#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonzgao authored May 25, 2022
1 parent a25d5c6 commit 47ec210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/plutus/arbitrum/plutus.balance-fetcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export class ArbitrumPlutusBalanceFetcher implements BalanceFetcher {
async getBalances(address: string) {
const [tokenBalances, lockedBalances, dpxBalances, jonesBalances, plsBalances] = await Promise.all([
this.getTokenBalances(address),
this.getStakedDPXBalances(address),
this.getLockedBalances(address),
this.getStakedDPXBalances(address),
this.getStakedJonesBalances(address),
this.getStakedPlsBalances(address),
Expand Down

0 comments on commit 47ec210

Please sign in to comment.