style(@embark/contracts-manager): add semicolon to end of statement

This commit is contained in:
Michael Bradley, Jr 2019-06-06 15:49:53 -05:00
parent d10c0b7951
commit d264070069
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ class ContractsManager {
self.events.request("blockchain:contract:create", {abi: contract.abiDefinition, address: contract.deployedAddress}, async (contractObj) => {
try {
const value = req.body.value !== undefined ? web3.utils.toWei(req.body.value, 'ether') : 0
const value = req.body.value !== undefined ? web3.utils.toWei(req.body.value, 'ether') : 0;
const gas = await contractObj.methods[req.body.method].apply(this, req.body.inputs).estimateGas({ value });
contractObj.methods[req.body.method].apply(this, req.body.inputs)[funcCall]({
from: account,