good morning!!!!

Skip to content
Snippets Groups Projects
Commit 0fa9a892 authored by Zsolt Felföldi's avatar Zsolt Felföldi Committed by Felix Lange
Browse files

les: fixed transaction sending deadlock (#3568)

parent 2a1a531b
No related branches found
No related tags found
No related merge requests found
......@@ -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)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment