From 0fa9a8929c8a55d1b624479cead2bb960ada7cfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felf=C3=B6ldi=20Zsolt?= Date: Mon, 16 Jan 2017 10:51:29 +0100 Subject: [PATCH] les: fixed transaction sending deadlock (#3568) --- les/txrelay.go | 1 - 1 file changed, 1 deletion(-) diff --git a/les/txrelay.go b/les/txrelay.go index 84d049b45..76d416c57 100644 --- a/les/txrelay.go +++ b/les/txrelay.go @@ -110,7 +110,6 @@ func (self *LesTxRelay) send(txs types.Transactions, count int) { for p, list := range sendTo { cost := p.GetRequestCost(SendTxMsg, len(list)) go func(p *peer, list types.Transactions, cost uint64) { - p.fcServer.SendRequest(0, cost) p.SendTxs(cost, list) }(p, list, cost) } -- GitLab