Skip to content

Commit

Permalink
Modify to not save gas estimates
Browse files Browse the repository at this point in the history
  • Loading branch information
delivan committed Jun 21, 2024
1 parent a2e9f1d commit 29e7fdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/extension/src/pages/sign/ethereum/view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";

/**
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 29e7fdc

Please sign in to comment.