Skip to content

Commit

Permalink
- Fixed Burn event on AToken
Browse files Browse the repository at this point in the history
  • Loading branch information
eboadom committed Nov 1, 2020
1 parent 5d25b36 commit 9fddcd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/tokenization/AToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit 9fddcd0

Please sign in to comment.