- Added Transfer event on transferOnLiquidation

This commit is contained in:
eboado 2020-11-10 15:40:49 +01:00
parent 3fc261037a
commit 727bc12d80

View File

@ -175,6 +175,8 @@ contract AToken is VersionedInitializable, IncentivizedERC20, IAToken {
//being a normal transfer, the Transfer() and BalanceTransfer() are emitted
//so no need to emit a specific event here
_transfer(from, to, value, false);
emit Transfer(from, to, value);
}
/**