diff --git a/tasks/deployments/deploy-UniswapRepayAdapter.ts b/tasks/deployments/deploy-UniswapRepayAdapter.ts index 62224a9e..15d8cf54 100644 --- a/tasks/deployments/deploy-UniswapRepayAdapter.ts +++ b/tasks/deployments/deploy-UniswapRepayAdapter.ts @@ -20,12 +20,10 @@ task(`deploy-${CONTRACT_NAME}`, `Deploys the UniswapRepayAdapter contract`) '0x88757f2f99175387aB4C6a4b3067c77A695b0349', // lending provider kovan address '0xfcd87315f0e4067070ade8682fcdbc3006631441', // uniswap router address ]; - console.log('before'); const uniswapRepayAdapter = await new UniswapRepayAdapterFactory(await getFirstSigner()).deploy( args[0], args[1] ); - console.log('afta'); await uniswapRepayAdapter.deployTransaction.wait(); console.log('uniswapRepayAdapter.address', uniswapRepayAdapter.address); await verifyContract(uniswapRepayAdapter.address, args);