From 29e7fdc6351bfeff790d8b8df6a41b50aa0642d5 Mon Sep 17 00:00:00 2001 From: delivan Date: Fri, 21 Jun 2024 14:17:41 +0900 Subject: [PATCH] Modify to not save gas estimates --- apps/extension/src/pages/sign/ethereum/view.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/extension/src/pages/sign/ethereum/view.tsx b/apps/extension/src/pages/sign/ethereum/view.tsx index cb6e4f289b..3db1023fc4 100644 --- a/apps/extension/src/pages/sign/ethereum/view.tsx +++ b/apps/extension/src/pages/sign/ethereum/view.tsx @@ -47,7 +47,7 @@ import { } from "@keplr-wallet/hooks"; import { EthTxBase } from "../components/eth-tx/render/tx-base"; import { erc20ContractInterface } from "@keplr-wallet/stores-eth"; -import { ExtensionKVStore } from "@keplr-wallet/common"; +import { MemoryKVStore } from "@keplr-wallet/common"; import { CoinPretty, Dec, Int, IntPretty } from "@keplr-wallet/unit"; /** @@ -101,7 +101,7 @@ export const EthereumSigningView: FunctionComponent<{ const isTxSigning = signType === EthSignType.TRANSACTION; const gasSimulator = useGasSimulator( - new ExtensionKVStore("gas-simulator.ethereum.sign"), + new MemoryKVStore("gas-simulator.ethereum.sign"), chainStore, chainInfo.chainId, gasConfig,