- Removed buidler console.log from LendingPool

This commit is contained in:
eboado 2020-10-30 16:40:49 +01:00
parent 96d00edd00
commit 929fd6bc83

View File

@ -26,8 +26,6 @@ import {SafeERC20} from '../dependencies/openzeppelin/contracts/SafeERC20.sol';
import {ILendingPool} from '../interfaces/ILendingPool.sol';
import {LendingPoolStorage} from './LendingPoolStorage.sol';
import {IReserveInterestRateStrategy} from '../interfaces/IReserveInterestRateStrategy.sol';
import "@nomiclabs/buidler/console.sol";
/**
* @title LendingPool contract
@ -95,7 +93,6 @@ contract LendingPool is VersionedInitializable, ILendingPool, LendingPoolStorage
address onBehalfOf,
uint16 referralCode
) external override {
console.log("Deposit");
_whenNotPaused();
ReserveLogic.ReserveData storage reserve = _reserves[asset];