- Fixed Burn event on AToken

This commit is contained in:
eboado 2020-11-01 09:11:53 +01:00
parent 5d25b362ca
commit 9fddcd0a20

View File

@ -108,7 +108,7 @@ contract AToken is VersionedInitializable, IncentivizedERC20, IAToken {
//transfer event to track balances
emit Transfer(user, address(0), amount);
emit Burn(_msgSender(), receiverOfUnderlying, amount, index);
emit Burn(user, receiverOfUnderlying, amount, index);
}
/**