p2p: fix whitespace

This commit is contained in:
Felix Lange 2020-04-01 16:25:50 +02:00 committed by GitHub
parent 72a377704b
commit b7e2867a55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -886,9 +886,9 @@ func (srv *Server) listenLoop() {
srv.log.Trace("Accepted connection", "addr", fd.RemoteAddr()) srv.log.Trace("Accepted connection", "addr", fd.RemoteAddr())
} }
go func() { go func() {
srv.SetupConn(fd, inboundConn, nil) srv.SetupConn(fd, inboundConn, nil)
slots <- struct{}{} slots <- struct{}{}
}() }()
} }
} }