From 6438aa18d74721e23942475d84634926c8ecc145 Mon Sep 17 00:00:00 2001 From: Shriya Tyagi Date: Tue, 19 Sep 2023 19:45:03 +0530 Subject: [PATCH] feat: make variable constant --- contracts/mainnet/connectors/morpho-aave-v3/helpers.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/mainnet/connectors/morpho-aave-v3/helpers.sol b/contracts/mainnet/connectors/morpho-aave-v3/helpers.sol index 6afd0997..ba739a86 100644 --- a/contracts/mainnet/connectors/morpho-aave-v3/helpers.sol +++ b/contracts/mainnet/connectors/morpho-aave-v3/helpers.sol @@ -10,7 +10,7 @@ abstract contract Helpers is Stores, Basic { IMorphoCore public constant MORPHO_AAVE_V3 = IMorphoCore(0x33333aea097c193e66081E930c33020272b33333); - uint256 public max_iteration = 4; + uint256 public constant max_iteration = 4; function _performEthToWethConversion( address _tokenAddress,