From 727bc12d8007cb5075aef1342caa1532468f9090 Mon Sep 17 00:00:00 2001 From: eboado Date: Tue, 10 Nov 2020 15:40:49 +0100 Subject: [PATCH] - Added Transfer event on transferOnLiquidation --- contracts/tokenization/AToken.sol | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contracts/tokenization/AToken.sol b/contracts/tokenization/AToken.sol index 0a664548..2f2be6cb 100644 --- a/contracts/tokenization/AToken.sol +++ b/contracts/tokenization/AToken.sol @@ -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); } /**