From 510f6e86078371b06fe4dd6b4d76722cc806dc9a Mon Sep 17 00:00:00 2001 From: Patrick Nagurny Date: Thu, 16 Jul 2015 16:26:43 -0400 Subject: [PATCH] getTransaction queryMempool --- lib/db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db.js b/lib/db.js index 28a2570d..990269f3 100644 --- a/lib/db.js +++ b/lib/db.js @@ -54,7 +54,7 @@ DB.prototype.putBlock = function(block, callback) { }; DB.prototype.getTransaction = function(txid, queryMempool, callback) { - this.bitcoind.getTransaction(txid, function(err, txBuffer) { + this.bitcoind.getTransaction(txid, queryMempool, function(err, txBuffer) { if(err) { return callback(err); }