From 113dec4db5a18da93c0ec7556f2ef0c10e97db54 Mon Sep 17 00:00:00 2001 From: Nur Fikri Date: Tue, 26 Mar 2024 09:40:46 +0700 Subject: [PATCH] remove getGasPrice --- src/components/TransactionDialog/TransactionDialogContent.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/TransactionDialog/TransactionDialogContent.tsx b/src/components/TransactionDialog/TransactionDialogContent.tsx index 1226f02a..2bfe678f 100644 --- a/src/components/TransactionDialog/TransactionDialogContent.tsx +++ b/src/components/TransactionDialog/TransactionDialogContent.tsx @@ -10,7 +10,6 @@ import { useAccount } from "@/hooks/useAccount"; import { useFinalityTimeEstimate } from "@/hooks/useFinalityTimeEstimate"; import { useWalletAddresses } from "@/hooks/useWalletAddresses"; import { useBroadcastedTxsStatus, useSkipClient } from "@/solve"; -import { getChainGasPrice } from "@/utils/chain.client"; import { isUserRejectedRequestError } from "@/utils/error"; import { getExplorerUrl } from "@/utils/explorer"; import { isCCTPLedgerBrokenInOperation, isEthermintLedgerInOperation } from "@/utils/ledger-warning"; @@ -71,7 +70,6 @@ function TransactionDialogContent({ route, onClose, isAmountError, transactionCo userAddresses, validateGasBalance: route.txsRequired === 1, slippageTolerancePercent: useSettingsStore.getState().slippage, - getGasPrice: getChainGasPrice, onTransactionTracked: async (txStatus) => { const makeExplorerUrl = await getExplorerUrl(txStatus.chainID); const explorerLink = makeExplorerUrl?.(txStatus.txHash);