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

Commit

Permalink
fix lp string (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
piyalbasu authored Oct 22, 2021
1 parent bf165f9 commit ea375ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stellar/wallet-sdk",
"version": "0.6.0-rc.0",
"version": "0.6.0-rc.1",
"description": "Libraries to help you write Stellar-enabled wallets in Javascript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/data/makeDisplayableBalances.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function makeDisplayableBalances(

const liquidityPoolBalance = balance as Horizon.BalanceLineLiquidityPool;

if (identifier.includes("::LP")) {
if (identifier.includes(":lp")) {
return {
...memo,
[identifier]: {
Expand Down

0 comments on commit ea375ff

Please sign in to comment.