Skip to content

Commit cc729a1

Browse files
committed
chore: fix conflict
1 parent d3fa4a9 commit cc729a1

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/adapters/statemint.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ const SUPPORTED_TOKENS: Record<string, BN> = {
8888
ARIS: new BN(16),
8989
USDC: new BN(1337),
9090
USDT: new BN(1984),
91-
KSM: new BN(1984),
9291
};
9392

9493
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
@@ -297,7 +296,7 @@ class BaseStatemintAdapter extends BaseCrossChainAdapter {
297296
const assetId = SUPPORTED_TOKENS[token];
298297
if (
299298
(to !== "kintsugi" && to !== "interlay") ||
300-
(to === "interlay" && token === this.balanceAdapter?.nativeToken) ||
299+
token === this.balanceAdapter?.nativeToken ||
301300
!assetId
302301
) {
303302
throw new CurrencyNotFound(token);

0 commit comments

Comments
 (0)