fix initialization

This commit is contained in:
Ivan Socolsky 2015-05-19 15:30:27 -03:00
parent f58f7eb7e4
commit 6fca11088c
1 changed files with 5 additions and 1 deletions

View File

@ -44,9 +44,13 @@ BlockchainMonitor.prototype.start = function(opts, cb) {
},
function(done) {
self.lock = new Lock(opts.lockOpts);
done();
},
], function(err) {
if (err) return cb(err);
if (err) {
log.error(err);
return cb(err);
}
self.emailService = new EmailService({
lock: self.lock,