From b77a785cd81f57e9072e8ae3bea578c4fd9c1ae8 Mon Sep 17 00:00:00 2001 From: Brian Tiger Chow Date: Wed, 17 Sep 2014 20:05:47 -0700 Subject: [PATCH] fix(dht) remove deprecated Start() call --- core/core.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/core.go b/core/core.go index ac1ace384..6712f6f83 100644 --- a/core/core.go +++ b/core/core.go @@ -117,9 +117,6 @@ func NewIpfsNode(cfg *config.Config, online bool) (*IpfsNode, error) { // TODO(brian): perform this inside NewDHT factory method dhtService.Handler = route // wire the handler to the service. - // TODO(brian): pass a context to DHT for its async operations - route.Start() - // TODO(brian): pass a context to bs for its async operations exchangeSession = bitswap.NewSession(ctx, exchangeService, local, d, route)