From 469e9c3ba3cea4228173e98309d060b59fd6d153 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Thu, 9 Apr 2020 13:24:03 -0700 Subject: [PATCH] go-ipfs-config: feat: remove Routing.PrivateType This can't be set independently at this point. We can add something back when we know the form this option should take. --- config/routing.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/config/routing.go b/config/routing.go index 341e2653a61c..c6157ec9637d 100644 --- a/config/routing.go +++ b/config/routing.go @@ -6,8 +6,4 @@ type Routing struct { // // Can be one of "dht", "dhtclient", "dhtserver", "none", or unset. Type string - - // PrivateType sets the routing mode for private networks. Can take the - // same values as Type and defaults to Type if unset. - PrivateType string }