@cryptotaxi247 / kubo / commits / a7cea2ea1

style(routing/supernode/client) fix indent

Brian Tiger Chow committed Feb 6, 2015 at 10:49 UTC a7cea2ea14f23fb0cbc63ef2d4423cfc4267466d
1 file changed +4 -4
routing/supernode/proxy/standard.go
+4 -4
@@ -34,11 +34,11 @@ func Standard(h host.Host, remotes []peer.PeerInfo) Proxy {
34 }
35
36 func (px *standard) Bootstrap(ctx context.Context) error {
37 - for _, info := range px.Remotes {
38 - if err := px.Host.Connect(ctx, info); err != nil {
39 - return err // TODO
40 - }
37 + for _, info := range px.Remotes {
38 + if err := px.Host.Connect(ctx, info); err != nil {
39 + return err // TODO
40 }
41 + }
42 return nil
43 }
44