Skip to content

Commit

Permalink
removes testing setup
Browse files Browse the repository at this point in the history
  • Loading branch information
BonomoAlessandro committed Nov 15, 2024
1 parent 9546096 commit 5cb21e7
Showing 1 changed file with 7 additions and 20 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script lang="ts">
import { nonNullish } from '@dfinity/utils';
import { BigNumber } from '@ethersproject/bignumber';
import { slide } from 'svelte/transition';
import LoaderEthTransactions from '$eth/components/loaders/LoaderEthTransactions.svelte';
import TokenModal from '$eth/components/tokens/TokenModal.svelte';
Expand Down Expand Up @@ -30,25 +29,13 @@
});
let sortedTransactionsUi: EthTransactionUi[];
// $: sortedTransactionsUi = $sortedEthTransactions.map((transaction) =>
// mapEthTransactionUi({
// transaction,
// ckMinterInfoAddresses,
// $ethAddress: $ethAddress
// })
// );
let test: EthTransactionUi = {
id: 'test',
uiType: 'send',
nonce: 'asdasdasdasdasd',
gasLimit: BigNumber.from(2),
data: 'asdasd',
value: BigNumber.from(3),
chainId: 10001
};
sortedTransactionsUi = [test];
$: sortedTransactionsUi = $sortedEthTransactions.map((transaction) =>
mapEthTransactionUi({
transaction,
ckMinterInfoAddresses,
$ethAddress: $ethAddress
})
);
let selectedTransaction: TransactionType | undefined;
$: selectedTransaction = $modalEthTransaction
Expand Down

0 comments on commit 5cb21e7

Please sign in to comment.