From a21d82364673e9798e0135b65e59dfc030e7b50f Mon Sep 17 00:00:00 2001 From: David Racero Date: Mon, 30 Nov 2020 14:32:01 +0100 Subject: [PATCH] Remove console logs --- tasks/deployments/deploy-UniswapRepayAdapter.ts | 2 -- 1 file changed, 2 deletions(-) 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);