Merge pull request #759 from embark-framework/bug_fix/ens-crash
Don't crash if ENS contracts don't deploy
This commit is contained in:
commit
43945f6a49
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue