Replies: 1 comment
-
just send more ETH |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Q)Why am I getting this error ? "Gas estimation errored with the following message (see below). The transaction > execution will likely fail"
-> withdraw function is showing infinite gas in remix ide
error:
Gas estimation errored with the following message (see below). The transaction execution will likely fail. Do you want to force sending?
Returned error: {"jsonrpc":"2.0","error":"execution reverted: You need to spend more ETH!","errorData":"0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001b596f75206e65656420746f207370656e64206d6f726520455448210000000000","id":1456657711424373}
code:
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
import "./PriceConverter.sol";
error NotOwner();
contract FundMe {
using PriceConverter for uint256;
}
Beta Was this translation helpful? Give feedback.
All reactions