getTransaction queryMempool

This commit is contained in:
Patrick Nagurny 2015-07-16 16:26:43 -04:00
parent 69f51c749b
commit 510f6e8607
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}