Skip to content

Commit

Permalink
fix: Make transferOnLiq() virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf committed Nov 3, 2022
1 parent 005b3ec commit 6968062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/protocol/tokenization/AToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ contract AToken is VersionedInitializable, ScaledBalanceTokenBase, EIP712Base, I
address from,
address to,
uint256 value
) external override onlyPool {
) external virtual override onlyPool {
// Being a normal transfer, the Transfer() and BalanceTransfer() are emitted
// so no need to emit a specific event here
_transfer(from, to, value, false);
Expand Down

0 comments on commit 6968062

Please sign in to comment.