From b0b77450399d351d64b2f58b5d905ea568cd57ca Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Tue, 7 Feb 2017 14:15:33 -0800 Subject: [PATCH] fullnode: broadcast in selfish mode. --- lib/node/fullnode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node/fullnode.js b/lib/node/fullnode.js index 3ba8b9cb..7a7a21cc 100644 --- a/lib/node/fullnode.js +++ b/lib/node/fullnode.js @@ -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); }); /**