From 294a65f84224e85b7dbeee7eace02578906e49dd Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Fri, 11 May 2018 13:11:50 +0200 Subject: Fix prettier --- .../src/contract_wrappers/token_registry_wrapper.ts | 5 +---- .../src/contract_wrappers/token_transfer_proxy_wrapper.ts | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) (limited to 'packages/contract-wrappers/src/contract_wrappers') diff --git a/packages/contract-wrappers/src/contract_wrappers/token_registry_wrapper.ts b/packages/contract-wrappers/src/contract_wrappers/token_registry_wrapper.ts index 5ae488172..e75973658 100644 --- a/packages/contract-wrappers/src/contract_wrappers/token_registry_wrapper.ts +++ b/packages/contract-wrappers/src/contract_wrappers/token_registry_wrapper.ts @@ -105,10 +105,7 @@ export class TokenRegistryWrapper extends ContractWrapper { * @returns The Ethereum address of the TokenRegistry contract being used. */ public getContractAddress(): string { - const contractAddress = this._getContractAddress( - artifacts.TokenRegistry, - this._contractAddressIfExists, - ); + const contractAddress = this._getContractAddress(artifacts.TokenRegistry, this._contractAddressIfExists); return contractAddress; } private _invalidateContractInstance(): void { diff --git a/packages/contract-wrappers/src/contract_wrappers/token_transfer_proxy_wrapper.ts b/packages/contract-wrappers/src/contract_wrappers/token_transfer_proxy_wrapper.ts index ebd40e4d2..02a2e19d0 100644 --- a/packages/contract-wrappers/src/contract_wrappers/token_transfer_proxy_wrapper.ts +++ b/packages/contract-wrappers/src/contract_wrappers/token_transfer_proxy_wrapper.ts @@ -46,10 +46,7 @@ export class TokenTransferProxyWrapper extends ContractWrapper { * @returns The Ethereum address of the TokenTransferProxy contract being used. */ public getContractAddress(): string { - const contractAddress = this._getContractAddress( - artifacts.TokenTransferProxy, - this._contractAddressIfExists, - ); + const contractAddress = this._getContractAddress(artifacts.TokenTransferProxy, this._contractAddressIfExists); return contractAddress; } private _invalidateContractInstance(): void { -- cgit v1.2.3