From dd1c90f2bc85abd4142b05198df2d4ecb8f90ae2 Mon Sep 17 00:00:00 2001 From: Ivan Socolsky Date: Mon, 22 May 2017 12:40:03 -0300 Subject: [PATCH] fix arg in call to insight --- lib/blockchainexplorers/insight.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/blockchainexplorers/insight.js b/lib/blockchainexplorers/insight.js index 5c79fb5..a0bdafe 100644 --- a/lib/blockchainexplorers/insight.js +++ b/lib/blockchainexplorers/insight.js @@ -188,7 +188,7 @@ Insight.prototype.getTxidsInBlock = function(blockHash, cb) { var args = { method: 'GET', - path: this.apiPrefix + '/blocks/' + hash, + path: this.apiPrefix + '/blocks/' + blockHash, json: true, };