[WIP] events

This commit is contained in:
Mubaris NK 2021-04-11 21:51:23 +05:30
parent 81f8ade041
commit 584bd9a98f
No known key found for this signature in database
GPG Key ID: 9AC09AD0F8D68561
2 changed files with 15 additions and 3 deletions

View File

@ -23,4 +23,15 @@ contract Events {
uint[] variableBorrowAmts,
uint[] stableBorrowAmts
);
event LogUpdateVariables(
uint256 oldFee,
uint256 newFee,
uint256 oldSafeRatioGap,
uint256 newSafeRatioGap
);
event LogAddSupportedTokens(
uint256[] tokens
);
}

View File

@ -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 {