mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
Add comments to empty constructor bodies
Fixes ABDK CVF-4 and CVF-15.
This commit is contained in:
parent
38bec942da
commit
bf7b19a181
|
@ -19,6 +19,7 @@ abstract contract BaseParaSwapSellAdapter is BaseParaSwapAdapter {
|
||||||
constructor(
|
constructor(
|
||||||
ILendingPoolAddressesProvider addressesProvider
|
ILendingPoolAddressesProvider addressesProvider
|
||||||
) public BaseParaSwapAdapter(addressesProvider) {
|
) public BaseParaSwapAdapter(addressesProvider) {
|
||||||
|
// This is only required to initialize BaseParaSwapAdapter
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -14,7 +14,9 @@ import {IERC20} from '../dependencies/openzeppelin/contracts/IERC20.sol';
|
||||||
contract ParaSwapLiquiditySwapAdapter is BaseParaSwapSellAdapter {
|
contract ParaSwapLiquiditySwapAdapter is BaseParaSwapSellAdapter {
|
||||||
constructor(
|
constructor(
|
||||||
ILendingPoolAddressesProvider addressesProvider
|
ILendingPoolAddressesProvider addressesProvider
|
||||||
) public BaseParaSwapSellAdapter(addressesProvider) {}
|
) public BaseParaSwapSellAdapter(addressesProvider) {
|
||||||
|
// This is only required to initialize BaseParaSwapSellAdapter
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dev Swaps the received reserve amount from the flash loan into the asset specified in the params.
|
* @dev Swaps the received reserve amount from the flash loan into the asset specified in the params.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user