From ed0f306c2cccc5ac484a303f66fa978489723ae0 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Tue, 19 May 2020 19:05:59 -0700 Subject: [PATCH] go-ipfs-config: feat: remove strict signing pubsub option. It's still possible to disable signing. However, it's no longer possible to enable signing _and_ disable strict signature verification. --- config/pubsub.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/config/pubsub.go b/config/pubsub.go index 94e03e28b..bed605847 100644 --- a/config/pubsub.go +++ b/config/pubsub.go @@ -8,11 +8,4 @@ type PubsubConfig struct { // DisableSigning disables message signing. Message signing is *enabled* // by default. DisableSigning bool - - // StrictSignatureVerification enables strict signature verification. - // When enabled, unsigned messages will be rejected. Eventually, this - // will be made the default and this option will disappear. Once this - // happens, networks will either need to completely disable or - // completely enable message signing. - StrictSignatureVerification bool }