fix prop.

This commit is contained in:
Christopher Jeffrey 2016-02-16 01:36:44 -08:00
parent 9619779426
commit 5b7ac01e84

View File

@ -29,7 +29,7 @@ function Mempool(node, options) {
this.options = options;
this.node = node;
this.pool = node.pool;
this.storage = node.storage;
this.block = node.block;
this.txs = {};
this.spent = {};
@ -198,7 +198,7 @@ Mempool.prototype.addTX = function addTX(tx, peer, callback) {
this._lockTX(tx);
this.storage.fillCoin(tx, function(err) {
this.block.fillCoin(tx, function(err) {
var i, input, dup, height, ts, priority;
self._unlockTX(tx);