remove process.exits

This commit is contained in:
Jonathan Rainville 2018-10-03 11:09:12 -04:00
parent 7c74f14b71
commit beea030c18
1 changed files with 1 additions and 3 deletions

View File

@ -99,7 +99,7 @@ class ENS {
if (isKnownNetwork || !shouldRegisterSubdomain) {
return cb();
}
process.exit();
self.registerConfigDomains(config, cb);
});
}
@ -246,8 +246,6 @@ class ENS {
self.events.request('blockchain:networkId', (networkId) => {
if (ENS_CONTRACTS_CONFIG[networkId]) {
self.ensConfig = utils.recursiveMerge(self.ensConfig, ENS_CONTRACTS_CONFIG[networkId]);
} else {
process.exit();
}
async.waterfall([