From 7b384caadc10d9c3af47856b80cff5ea94d45510 Mon Sep 17 00:00:00 2001 From: derpy-duck <115193320+derpy-duck@users.noreply.github.com> Date: Mon, 27 Feb 2023 18:49:58 -0500 Subject: [PATCH] Remove TODO comment, correct 10^-6 (#108) --- ethereum/contracts/relayProvider/RelayProvider.sol | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ethereum/contracts/relayProvider/RelayProvider.sol b/ethereum/contracts/relayProvider/RelayProvider.sol index fde596b..f578e06 100644 --- a/ethereum/contracts/relayProvider/RelayProvider.sol +++ b/ethereum/contracts/relayProvider/RelayProvider.sol @@ -35,8 +35,7 @@ contract RelayProvider is RelayProviderGovernance, IRelayProvider { return quoteAssetConversion(targetChain, gasPrice(targetChain), chainId()); } - //Returns the price of chainId's native currency in USD * 10^6 - //TODO decide on USD decimals + //Returns the price of chainId's native currency in USD 10^-6 units function quoteAssetPrice(uint16 chainId) public view override returns (uint256) { return nativeCurrencyPrice(chainId); }