feat: update

This commit is contained in:
Shriya Tyagi 2023-09-19 19:52:31 +05:30
parent 6438aa18d7
commit 03d18acf03
2 changed files with 7 additions and 7 deletions

View File

@ -10,7 +10,7 @@ abstract contract Helpers is Stores, Basic {
IMorphoCore public constant MORPHO_AAVE_V3 = IMorphoCore public constant MORPHO_AAVE_V3 =
IMorphoCore(0x33333aea097c193e66081E930c33020272b33333); IMorphoCore(0x33333aea097c193e66081E930c33020272b33333);
uint256 public constant max_iteration = 4; uint256 public constant MAX_ITERATIONS = 4;
function _performEthToWethConversion( function _performEthToWethConversion(
address _tokenAddress, address _tokenAddress,

View File

@ -30,7 +30,7 @@ abstract contract MorphoAaveV3 is Helpers, Events {
approve(_tokenContract, address(MORPHO_AAVE_V3), _amt); approve(_tokenContract, address(MORPHO_AAVE_V3), _amt);
MORPHO_AAVE_V3.supply(address(_tokenContract), _amt, address(this), max_iteration); MORPHO_AAVE_V3.supply(address(_tokenContract), _amt, address(this), MAX_ITERATIONS);
setUint(_setId, _amt); setUint(_setId, _amt);
@ -229,7 +229,7 @@ abstract contract MorphoAaveV3 is Helpers, Events {
bool _isETH = _tokenAddress == ethAddr; bool _isETH = _tokenAddress == ethAddr;
address _token = _isETH ? wethAddr : _tokenAddress; address _token = _isETH ? wethAddr : _tokenAddress;
uint256 _borrowed = MORPHO_AAVE_V3.borrow(_token, _amt, address(this), address(this), max_iteration); uint256 _borrowed = MORPHO_AAVE_V3.borrow(_token, _amt, address(this), address(this), MAX_ITERATIONS);
convertWethToEth(_isETH, TokenInterface(_token), _borrowed); convertWethToEth(_isETH, TokenInterface(_token), _borrowed);
@ -360,7 +360,7 @@ abstract contract MorphoAaveV3 is Helpers, Events {
address _token = _isEth? wethAddr : _tokenAddress; address _token = _isEth? wethAddr : _tokenAddress;
// Morpho will internally handle max amount conversion by taking the minimum of amount or supplied collateral. // Morpho will internally handle max amount conversion by taking the minimum of amount or supplied collateral.
uint256 _withdrawn = MORPHO_AAVE_V3.withdraw(_token, _amt, address(this), address(this), max_iteration); uint256 _withdrawn = MORPHO_AAVE_V3.withdraw(_token, _amt, address(this), address(this), MAX_ITERATIONS);
convertWethToEth(_isEth, TokenInterface(_token), _withdrawn); convertWethToEth(_isEth, TokenInterface(_token), _withdrawn);
@ -655,13 +655,13 @@ abstract contract MorphoAaveV3 is Helpers, Events {
external external
returns (string memory _eventName, bytes memory _eventParam) returns (string memory _eventName, bytes memory _eventParam)
{ {
uint256 _oldIterations = max_iteration; uint256 _oldIterations = MAX_ITERATIONS;
max_iteration = _iterations; MAX_ITERATIONS = _iterations;
_eventName = "LogUpdateMaxIterations(uint256,uint256)"; _eventName = "LogUpdateMaxIterations(uint256,uint256)";
_eventParam = abi.encode( _eventParam = abi.encode(
_oldIterations, _oldIterations,
max_iteration MAX_ITERATIONS
); );
} }
} }