Skip to content

Commit

Permalink
chore: improve types
Browse files Browse the repository at this point in the history
  • Loading branch information
onmax committed Aug 21, 2024
1 parent ce869e9 commit 0a5663c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/swap/SwapNotification.vue
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,8 @@ export default defineComponent({
state: SwapState.COMPLETE,
stateEnteredAt: Date.now(),
settlementTx:
settlementTx as Transaction<SwapAsset.NIM | SwapAsset.BTC | SwapAsset.EUR>,
settlementTx as Transaction<
SwapAsset.NIM | SwapAsset.BTC | SwapAsset.EUR | SwapAsset.CRC>,
});
} catch (error: any) {
if (error.message === SwapError.EXPIRED) return;
Expand Down

0 comments on commit 0a5663c

Please sign in to comment.