diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-06-05 09:41:30 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-06-07 03:40:31 +0800 |
commit | 45a3d8b75a72fc4104f5070361fb34027b66e7f3 (patch) | |
tree | 0632faafc1ed048bd0f0f5e915922a5baa0372fa /packages/contract_templates | |
parent | bca62c813d2e821c56968916615861366402435b (diff) | |
download | dexon-0x-contracts-45a3d8b75a72fc4104f5070361fb34027b66e7f3.tar.gz dexon-0x-contracts-45a3d8b75a72fc4104f5070361fb34027b66e7f3.tar.zst dexon-0x-contracts-45a3d8b75a72fc4104f5070361fb34027b66e7f3.zip |
Remove extra logs and other small fixes
Diffstat (limited to 'packages/contract_templates')
-rw-r--r-- | packages/contract_templates/contract.handlebars | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/contract_templates/contract.handlebars b/packages/contract_templates/contract.handlebars index 097035d41..75654b069 100644 --- a/packages/contract_templates/contract.handlebars +++ b/packages/contract_templates/contract.handlebars @@ -78,7 +78,6 @@ export class {{contractName}}Contract extends BaseContract { logUtils.log(`transactionHash: ${txHash}`); const txReceipt = await web3Wrapper.awaitTransactionSuccessAsync(txHash); logUtils.log(`{{contractName}} successfully deployed at ${txReceipt.contractAddress}`); - logUtils.log(`{{contractName}} reported status: ${txReceipt.status}`); const contractInstance = new {{contractName}}Contract(abi, txReceipt.contractAddress as string, provider, txDefaults); contractInstance.constructorArgs = [{{> params inputs=ctor.inputs}}]; return contractInstance; |