Skip to content

Commit 9ea9cb9

Browse files
committed
fixup! Fix promiseTimeout to cleanup setTimeout
1 parent 02986ba commit 9ea9cb9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/partners/lifi.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export function processLifiTx(rawTx: unknown): StandardTx {
185185
tx.sending.gasToken?.symbol ??
186186
depositToken?.coinKey ??
187187
depositToken?.symbol
188-
const payoutChainCodeUnmappped =
188+
const payoutChainCodeUnmapped =
189189
tx.receiving.gasToken?.coinKey ??
190190
tx.receiving.gasToken?.symbol ??
191191
payoutToken?.coinKey ??
@@ -196,8 +196,8 @@ export function processLifiTx(rawTx: unknown): StandardTx {
196196
TOKEN_CODE_MAPPINGS[depositChainCodeUnmapped ?? ''] ??
197197
depositChainCodeUnmapped
198198
const payoutChainCode =
199-
TOKEN_CODE_MAPPINGS[payoutChainCodeUnmappped ?? ''] ??
200-
payoutChainCodeUnmappped
199+
TOKEN_CODE_MAPPINGS[payoutChainCodeUnmapped ?? ''] ??
200+
payoutChainCodeUnmapped
201201

202202
const depositTokenCode =
203203
tx.sending.token?.coinKey ??

0 commit comments

Comments
 (0)