Unverified Commit b9825986 authored by Péter Szilágyi's avatar Péter Szilágyi Committed by GitHub

Merge pull request #21032 from karalabe/skip-announce-goroutine-eth64

eth: skip transaction announcer goroutine on eth<65
parents 292570ad 34ed2d83
......@@ -720,8 +720,9 @@ func (ps *peerSet) Register(p *peer) error {
go p.broadcastBlocks()
go p.broadcastTransactions()
go p.announceTransactions()
if p.version >= eth65 {
go p.announceTransactions()
}
return nil
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment