mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
swarm/pss: travis error fix (style)
This commit is contained in:
parent
5b30d7850f
commit
87c9d7c7d8
1 changed files with 1 additions and 1 deletions
|
|
@ -471,7 +471,7 @@ func (p *Pss) process(pssmsg *PssMsg, raw bool, prox bool) error {
|
|||
func (p *Pss) getHandlers(topic Topic) (ret []*handler) {
|
||||
p.handlersMu.RLock()
|
||||
defer p.handlersMu.RUnlock()
|
||||
for k, _ := range p.handlers[topic] {
|
||||
for k := range p.handlers[topic] {
|
||||
ret = append(ret, k)
|
||||
}
|
||||
return ret
|
||||
|
|
|
|||
Loading…
Reference in a new issue