diff --git a/contracts/senders/aave-v2-migrator/events.sol b/contracts/senders/aave-v2-migrator/events.sol index 336ec9d..b59e0fd 100644 --- a/contracts/senders/aave-v2-migrator/events.sol +++ b/contracts/senders/aave-v2-migrator/events.sol @@ -23,4 +23,15 @@ contract Events { uint[] variableBorrowAmts, uint[] stableBorrowAmts ); + + event LogUpdateVariables( + uint256 oldFee, + uint256 newFee, + uint256 oldSafeRatioGap, + uint256 newSafeRatioGap + ); + + event LogAddSupportedTokens( + uint256[] tokens + ); } \ No newline at end of file diff --git a/contracts/senders/aave-v2-migrator/main.sol b/contracts/senders/aave-v2-migrator/main.sol index 11611e9..d6319fb 100644 --- a/contracts/senders/aave-v2-migrator/main.sol +++ b/contracts/senders/aave-v2-migrator/main.sol @@ -15,18 +15,19 @@ contract LiquidityResolver is Helpers, Events { function updateVariables(uint _safeRatioGap, uint _fee) public { require(msg.sender == instaIndex.master(), "not-master"); + emit LogUpdateVariables(fee, _fee, safeRatioGap, _safeRatioGap); safeRatioGap = _safeRatioGap; fee = _fee; - emit variablesUpdate(safeRatioGap, fee); } function addTokenSupport(address[] memory _tokens) public { require(msg.sender == instaIndex.master(), "not-master"); for (uint i = 0; i < _tokens.length; i++) { + require(!isSupportedToken[_tokens[i]], "already-added"); isSupportedToken[_tokens[i]] = true; + supportedTokens.push(_tokens[i]); } - supportedTokens = _tokens; - // TODO: add event + emit LogAddSupportedTokens(_tokens); } function spell(address _target, bytes memory _data) external {