Skip to content

Commit

Permalink
Make AToken._transfer/3 virtual for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlaprade committed Dec 23, 2022
1 parent 36c6eef commit bd4c6a8
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 @@ -235,7 +235,7 @@ contract AToken is VersionedInitializable, ScaledBalanceTokenBase, EIP712Base, I
address from,
address to,
uint128 amount
) internal override {
) internal virtual override {
_transfer(from, to, amount, true);
}

Expand Down

0 comments on commit bd4c6a8

Please sign in to comment.