From 9260a43b0f527268b6b58f55803c9dd22016fbb7 Mon Sep 17 00:00:00 2001 From: sendra Date: Fri, 15 Oct 2021 14:03:41 +0200 Subject: [PATCH] feat: added immutables --- contracts/misc/UiPoolDataProvider.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/misc/UiPoolDataProvider.sol b/contracts/misc/UiPoolDataProvider.sol index ca987419..9cbefbcd 100644 --- a/contracts/misc/UiPoolDataProvider.sol +++ b/contracts/misc/UiPoolDataProvider.sol @@ -24,8 +24,8 @@ contract UiPoolDataProvider is IUiPoolDataProvider { using ReserveConfiguration for DataTypes.ReserveConfigurationMap; using UserConfiguration for DataTypes.UserConfigurationMap; - IChainlinkAggregator public networkBaseTokenPriceInUsdProxyAggregator; - IChainlinkAggregator public marketReferenceCurrencyPriceInUsdProxyAggregator; + IChainlinkAggregator public immutable networkBaseTokenPriceInUsdProxyAggregator; + IChainlinkAggregator public immutable marketReferenceCurrencyPriceInUsdProxyAggregator; uint256 public constant ETH_CURRENCY_UNIT = 1 ether;