aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ts/contract_wrappers/contract_wrapper.ts7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/ts/contract_wrappers/contract_wrapper.ts b/src/ts/contract_wrappers/contract_wrapper.ts
index 225cb960f..9f4cd8039 100644
--- a/src/ts/contract_wrappers/contract_wrapper.ts
+++ b/src/ts/contract_wrappers/contract_wrapper.ts
@@ -33,12 +33,7 @@ export class ContractWrapper {
}
try {
- let contractInstance;
- if (_.isUndefined(address)) {
- contractInstance = await c.deployed();
- } else {
- contractInstance = await c.at(address);
- }
+ const contractInstance = _.isUndefined(address) ? await c.deployed() : await c.at(address);
return contractInstance;
} catch (err) {
const errMsg = `${err}`;