diff --git a/contracts/interfaces/ILendingPool.sol b/contracts/interfaces/ILendingPool.sol index 3b496fb4..8396d35f 100644 --- a/contracts/interfaces/ILendingPool.sol +++ b/contracts/interfaces/ILendingPool.sol @@ -121,21 +121,19 @@ interface ILendingPool { /** * @dev emitted when a borrower is liquidated * @param collateral the address of the collateral being liquidated - * @param reserve the address of the reserve + * @param principal the address of the reserve * @param user the address of the user being liquidated * @param purchaseAmount the total amount liquidated * @param liquidatedCollateralAmount the amount of collateral being liquidated - * @param accruedBorrowInterest the amount of interest accrued by the borrower since the last action * @param liquidator the address of the liquidator * @param receiveAToken true if the liquidator wants to receive aTokens, false otherwise **/ event LiquidationCall( address indexed collateral, - address indexed reserve, + address indexed principal, address indexed user, uint256 purchaseAmount, uint256 liquidatedCollateralAmount, - uint256 accruedBorrowInterest, address liquidator, bool receiveAToken ); diff --git a/deployed-contracts.json b/deployed-contracts.json index 7840c6ba..f0208be5 100644 --- a/deployed-contracts.json +++ b/deployed-contracts.json @@ -231,7 +231,7 @@ }, "WalletBalanceProvider": { "buidlerevm": { - "address": "0x2cfcA5785261fbC88EFFDd46fCFc04c22525F9e4", + "address": "0xC6bA6049F86d528698B5924B8fC2FE7289D38578", "deployer": "0xc783df8a850f42e7F7e57013759C285caa701eB6" }, "localhost": { @@ -620,7 +620,7 @@ }, "MockAToken": { "buidlerevm": { - "address": "0x392E5355a0e88Bd394F717227c752670fb3a8020", + "address": "0x3b050AFb4ac4ACE646b31fF3639C1CD43aC31460", "deployer": "0xc783df8a850f42e7F7e57013759C285caa701eB6" }, "localhost": { @@ -648,7 +648,7 @@ }, "MockStableDebtToken": { "buidlerevm": { - "address": "0x3b050AFb4ac4ACE646b31fF3639C1CD43aC31460", + "address": "0xEBAB67ee3ef604D5c250A53b4b8fcbBC6ec3007C", "deployer": "0xc783df8a850f42e7F7e57013759C285caa701eB6" }, "localhost": { @@ -662,7 +662,7 @@ }, "MockVariableDebtToken": { "buidlerevm": { - "address": "0xEBAB67ee3ef604D5c250A53b4b8fcbBC6ec3007C", + "address": "0xBE36BE5680244Ae1A6F983E4A6f6E1c142cdAbe3", "deployer": "0xc783df8a850f42e7F7e57013759C285caa701eB6" }, "localhost": { @@ -684,5 +684,15 @@ "localhost": { "address": "0xBEF0d4b9c089a5883741fC14cbA352055f35DDA2" } + }, + "MockFlashRepayAdapter": { + "buidlerevm": { + "address": "0xDf73fC454FA018051D4a1509e63D11530A59DE10" + } + }, + "MockFlashLiquiditySwapAdapter": { + "buidlerevm": { + "address": "0x2cfcA5785261fbC88EFFDd46fCFc04c22525F9e4" + } } }