good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 34ed2d83 authored by Péter Szilágyi's avatar Péter Szilágyi
Browse files

eth: skip transaction announcer goroutine on eth<65

parent 933acf33
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
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