Merge branch 'feat/168-remove-initialize' into 'master'

- Remove useless initialize()

Closes #168

See merge request aave-tech/protocol-v2!192
This commit is contained in:
The-3D 2020-11-26 15:14:19 +00:00
commit 9924ecc64a

View File

@ -39,16 +39,6 @@ contract DelegationAwareAToken is AToken {
)
{}
function initialize(
uint8 _underlyingAssetDecimals,
string calldata _tokenName,
string calldata _tokenSymbol
) external virtual override initializer {
_setName(_tokenName);
_setSymbol(_tokenSymbol);
_setDecimals(_underlyingAssetDecimals);
}
/**
* @dev Delegates voting power of the underlying asset to a `delegatee` address
* @param delegatee The address that will receive the delegation