Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Commit 6968062

Browse files
committed
fix: Make transferOnLiq() virtual
1 parent 005b3ec commit 6968062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/protocol/tokenization/AToken.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ contract AToken is VersionedInitializable, ScaledBalanceTokenBase, EIP712Base, I
119119
address from,
120120
address to,
121121
uint256 value
122-
) external override onlyPool {
122+
) external virtual override onlyPool {
123123
// Being a normal transfer, the Transfer() and BalanceTransfer() are emitted
124124
// so no need to emit a specific event here
125125
_transfer(from, to, value, false);

0 commit comments

Comments
 (0)