Simplify code

This commit is contained in:
Andre Medeiros 2018-09-18 16:36:21 -04:00
parent f54d572b3d
commit 9151466a75
1 changed files with 1 additions and 5 deletions

View File

@ -44,13 +44,9 @@ class ContractDeployer {
}
let contractName = arg.substr(1);
self.events.request('contracts:contract', contractName, (referedContract) => {
if(referedContract.deployedAddress !== undefined) {
return cb(null, referedContract.deployedAddress);
}
// Because we're referring to a contract that is not being deployed (ie. an interface),
// we still need to provide a valid address so that the ABI checker won't fail.
cb(null, '0x0000000000000000000000000000000000000000');
cb(null, (referedContract.deployedAddress || '0x0000000000000000000000000000000000000000'));
});
}