Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyar committed Jan 8, 2025
1 parent 98b5371 commit aeae3d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subgraphs/venus/tests/scripts/checkMarketPositions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const checkMarketPositions = async (
assert.equal(
marketPosition.vTokenBalanceMantissa,
accountBalance.toString(),
`incorrect supply balance for account ${marketPosition.account.id} in market ${MarketPosition.market.symbol} ${MarketPosition.market.id}. Subgraph Value: ${
`incorrect supply balance for account ${marketPosition.account.id} in market ${marketPosition.market.symbol} ${marketPosition.market.id}. Subgraph Value: ${
marketPosition.vTokenBalanceMantissa
}, contractValue: ${accountBalance.toString()}`,
);
Expand All @@ -45,7 +45,7 @@ const checkMarketPositions = async (
updatedSubgraphValue,
borrowBalanceStored.toString(),
`
incorrect borrow balance on account ${marketPosition.account.id} on market ${MarketPosition.market.symbol} ${MarketPosition.market.id}, accountBorrowIndex: ${MarketPosition.borrowIndex}, marketBorrowIndex ${MarketPosition.market.borrowIndex} subgraphValue: ${MarketPosition.storedBorrowBalanceMantissa} contractValue: ${borrowBalanceStored}`,
incorrect borrow balance on account ${marketPosition.account.id} on market ${marketPosition.market.symbol} ${marketPosition.market.id}, accountBorrowIndex: ${marketPosition.borrowIndex}, marketBorrowIndex ${marketPosition.market.borrowIndex} subgraphValue: ${marketPosition.storedBorrowBalanceMantissa} contractValue: ${borrowBalanceStored}`,
);
} catch (e) {
console.log(e.message);
Expand Down

0 comments on commit aeae3d4

Please sign in to comment.