Remove TODO comment, correct 10^-6

This commit is contained in:
derpy-duck 2023-02-22 23:34:08 +00:00
parent a1df44b3ee
commit 3689cde849
1 changed files with 1 additions and 2 deletions

View File

@ -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);
}