fullnode: broadcast in selfish mode.

This commit is contained in:
Christopher Jeffrey 2017-02-07 14:15:33 -08:00
parent 1ec49be808
commit b0b7745039
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -334,7 +334,7 @@ FullNode.prototype.sendTX = co(function* sendTX(tx) {
// We need to announce by hand if
// we're running in selfish mode.
if (this.pool.options.selfish)
this.pool.announceTX(tx);
this.pool.broadcast(tx);
});
/**