remove throwing assert for now.

This commit is contained in:
Christopher Jeffrey 2016-01-01 23:54:48 -08:00
parent 440933c27d
commit e04aed96d0

View File

@ -263,7 +263,7 @@ Chain.prototype.has = function has(hash, noProbe, cb) {
cb = utils.asyncify(cb);
assert(!noProbe);
// assert(!noProbe);
return cb(this.hasBlock(hash) || this.hasOrphan(hash));
};