@@ -23,17 +23,13 @@ task('dev:deploy-lending-pool', 'Deploy lending pool for dev enviroment')
2323 await localBRE . run ( 'set-DRE' ) ;
2424 const addressesProvider = await getLendingPoolAddressesProvider ( ) ;
2525 const poolConfig = loadPoolConfig ( pool ) ;
26- /*
2726
2827 const lendingPoolImpl = await deployLendingPool ( verify ) ;
2928
3029 // Set lending pool impl to Address Provider
3130 await waitForTx ( await addressesProvider . setLendingPoolImpl ( lendingPoolImpl . address ) ) ;
32- */
33-
3431 const address = await addressesProvider . getLendingPool ( ) ;
3532 const lendingPoolProxy = await getLendingPool ( address ) ;
36- /*
3733 await insertContractAddressInDb ( eContractid . LendingPool , lendingPoolProxy . address ) ;
3834
3935 const lendingPoolConfiguratorImpl = await deployLendingPoolConfigurator ( verify ) ;
@@ -42,18 +38,15 @@ task('dev:deploy-lending-pool', 'Deploy lending pool for dev enviroment')
4238 await waitForTx (
4339 await addressesProvider . setLendingPoolConfiguratorImpl ( lendingPoolConfiguratorImpl . address )
4440 ) ;
45- */
4641 const lendingPoolConfiguratorProxy = await getLendingPoolConfiguratorProxy (
4742 await addressesProvider . getLendingPoolConfigurator ( )
4843 ) ;
49- /*
5044 await insertContractAddressInDb (
5145 eContractid . LendingPoolConfigurator ,
5246 lendingPoolConfiguratorProxy . address
5347 ) ;
5448
5549 // Deploy deployment helpers
56- */
5750 await deployStableAndVariableTokensHelper (
5851 [ lendingPoolProxy . address , addressesProvider . address ] ,
5952 verify
0 commit comments