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.
Steven Allen committed
May 19, 2020 at 19:05 UTC
ed0f306c2cccc5ac484a303f66fa978489723ae0
1 file changed
-7
config/pubsub.go
-7
@@ -8,11 +8,4 @@ type PubsubConfig struct {
8
// DisableSigning disables message signing. Message signing is *enabled*
9
// by default.
10
DisableSigning bool
11
-
12
- // StrictSignatureVerification enables strict signature verification.
13
- // When enabled, unsigned messages will be rejected. Eventually, this
14
- // will be made the default and this option will disappear. Once this
15
- // happens, networks will either need to completely disable or
16
- // completely enable message signing.
17
- StrictSignatureVerification bool
11
}