From d7d390afb90154b47e75031bb02335e8396fee15 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 29 Mar 2018 21:56:34 -0700 Subject: [PATCH] Revert "Fix confirmations not found" This reverts commit e59ed00b57ad9c117f0931c602cb7ffc621b71d7. --- lib/http/server.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/http/server.js b/lib/http/server.js index 23fb3d97..b38d7534 100644 --- a/lib/http/server.js +++ b/lib/http/server.js @@ -279,7 +279,6 @@ HTTPServer.prototype.initRouter = function initRouter() { } const height = await this.chain.getHeight(hash); - const confirmations = this.chain.height - height; res.send(200, block.getJSON(this.network, view, height, confirmations)); });