Skip to content

Commit

Permalink
fix: Re-add the abstract modifier to base tokenization contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf committed Jan 12, 2022
1 parent 48c48b7 commit 52abb3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/protocol/tokenization/base/IncentivizedERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {IACLManager} from '../../../interfaces/IACLManager.sol';
* @author Aave, inspired by the Openzeppelin ERC20 implementation
* @notice Basic ERC20 implementation
**/
contract IncentivizedERC20 is IERC20Detailed, Context {
abstract contract IncentivizedERC20 is IERC20Detailed, Context {
using WadRayMath for uint256;
using SafeCast for uint256;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {IPool} from '../../../interfaces/IPool.sol';
* @author Aave
* @notice Basic MintableERC20 implementation
**/
contract MintableIncentivizedERC20 is IncentivizedERC20 {
abstract contract MintableIncentivizedERC20 is IncentivizedERC20 {
/**
* @dev Constructor.
* @param pool The reference to the main Pool contract
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {MintableIncentivizedERC20} from './MintableIncentivizedERC20.sol';
* @author Aave, inspired by the Openzeppelin ERC20 implementation
* @notice Basic ERC20 implementation of scaled balance token
**/
contract ScaledBalanceTokenBase is MintableIncentivizedERC20, IScaledBalanceToken {
abstract contract ScaledBalanceTokenBase is MintableIncentivizedERC20, IScaledBalanceToken {
using WadRayMath for uint256;
using SafeCast for uint256;

Expand Down

0 comments on commit 52abb3f

Please sign in to comment.