From 6121da3fff039b98e674dce11befa55dfb61cfcc Mon Sep 17 00:00:00 2001 From: alexcos20 Date: Mon, 31 Aug 2020 00:33:35 -0700 Subject: [PATCH] fix lint --- test/TestContractHandler.ts | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/test/TestContractHandler.ts b/test/TestContractHandler.ts index c017de8e..59daa253 100644 --- a/test/TestContractHandler.ts +++ b/test/TestContractHandler.ts @@ -40,7 +40,14 @@ export class TestContractHandler { estGas = await this.template .deploy({ data: this.templateBytecode, - arguments: ['Template Contract', 'TEMPLATE', minter, cap, blob, communityCollector] + arguments: [ + 'Template Contract', + 'TEMPLATE', + minter, + cap, + blob, + communityCollector + ] }) .estimateGas(function (err, estGas) { if (err) console.log('DeployContracts: ' + err) @@ -50,7 +57,14 @@ export class TestContractHandler { this.templateAddress = await this.template .deploy({ data: this.templateBytecode, - arguments: ['Template Contract', 'TEMPLATE', minter, cap, blob, communityCollector] + arguments: [ + 'Template Contract', + 'TEMPLATE', + minter, + cap, + blob, + communityCollector + ] }) .send({ from: minter,