fix prop.
This commit is contained in:
parent
9619779426
commit
5b7ac01e84
@ -29,7 +29,7 @@ function Mempool(node, options) {
|
|||||||
this.options = options;
|
this.options = options;
|
||||||
this.node = node;
|
this.node = node;
|
||||||
this.pool = node.pool;
|
this.pool = node.pool;
|
||||||
this.storage = node.storage;
|
this.block = node.block;
|
||||||
|
|
||||||
this.txs = {};
|
this.txs = {};
|
||||||
this.spent = {};
|
this.spent = {};
|
||||||
@ -198,7 +198,7 @@ Mempool.prototype.addTX = function addTX(tx, peer, callback) {
|
|||||||
|
|
||||||
this._lockTX(tx);
|
this._lockTX(tx);
|
||||||
|
|
||||||
this.storage.fillCoin(tx, function(err) {
|
this.block.fillCoin(tx, function(err) {
|
||||||
var i, input, dup, height, ts, priority;
|
var i, input, dup, height, ts, priority;
|
||||||
|
|
||||||
self._unlockTX(tx);
|
self._unlockTX(tx);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user