dont crash if ens contracts don't deploy

This commit is contained in:
Jonathan Rainville 2018-08-31 08:50:15 -04:00
parent a1c2d7e77a
commit f1e5aff3fb
1 changed files with 6 additions and 0 deletions

View File

@ -52,6 +52,12 @@ class ENS {
}); });
} }
], (err, results) => { ], (err, results) => {
if (err) {
return cb(err);
}
if (!results[0] || !results[1] || !results[2]) {
return cb(__('Aborting ENS setup as some of the contracts did not deploy properly'));
}
// result[0] => ENSRegistry; result[1] => FIFSRegistrar; result[2] => FIFSRegistrar // result[0] => ENSRegistry; result[1] => FIFSRegistrar; result[2] => FIFSRegistrar
let config = { let config = {
env: self.env, env: self.env,