From e546efde92d74498ad5e9d49f6aa06e1220d3064 Mon Sep 17 00:00:00 2001 From: Karl Kempe Date: Tue, 13 Sep 2022 21:51:57 +0000 Subject: [PATCH] ethereum: fix interface --- ethereum/contracts/interfaces/IGasOracle.sol | 3 --- 1 file changed, 3 deletions(-) diff --git a/ethereum/contracts/interfaces/IGasOracle.sol b/ethereum/contracts/interfaces/IGasOracle.sol index 9d08c17..ded4122 100644 --- a/ethereum/contracts/interfaces/IGasOracle.sol +++ b/ethereum/contracts/interfaces/IGasOracle.sol @@ -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; }