ethereum: fix interface

This commit is contained in:
Karl Kempe 2022-09-13 21:51:57 +00:00
parent 504b4c0012
commit e546efde92
1 changed files with 0 additions and 3 deletions

View File

@ -4,8 +4,5 @@
pragma solidity ^0.8.0;
interface IGasOracle {
//Returns the price of one unit of gas on the wormhole targetChain, denominated in this chain's wei.
function getPrice(uint16 targetChainId) external view returns (uint256 quote);
function updatePrice(uint16 chainId, uint256 gasPrice, uint256 nativeCurrencyPrice) external;
}