From e04aed96d0a69aa13f9b38fb820e4a472946c9f8 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Fri, 1 Jan 2016 23:54:48 -0800 Subject: [PATCH] remove throwing assert for now. --- lib/bcoin/fullchain.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bcoin/fullchain.js b/lib/bcoin/fullchain.js index bdf066d1..92b6b623 100644 --- a/lib/bcoin/fullchain.js +++ b/lib/bcoin/fullchain.js @@ -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)); };