Skip to content

Commit

Permalink
Revert "Make aToken.initialize public and virtual so it can be extended"
Browse files Browse the repository at this point in the history
This reverts commit 8865203.
  • Loading branch information
davidlaprade committed Dec 22, 2022
1 parent 36c6eef commit 3afe5e6
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 @@ -59,7 +59,7 @@ contract AToken is VersionedInitializable, ScaledBalanceTokenBase, EIP712Base, I
string calldata aTokenName,
string calldata aTokenSymbol,
bytes calldata params
) public virtual override initializer {
) external override initializer {
require(initializingPool == POOL, Errors.POOL_ADDRESSES_DO_NOT_MATCH);
_setName(aTokenName);
_setSymbol(aTokenSymbol);
Expand Down

0 comments on commit 3afe5e6

Please sign in to comment.