mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-06 00:38:08 +08:00
It's still possible to disable signing. However, it's no longer possible to enable signing _and_ disable strict signature verification.
12 lines
264 B
Go
12 lines
264 B
Go
package config
|
|
|
|
type PubsubConfig struct {
|
|
// Router can be either floodsub (legacy) or gossipsub (new and
|
|
// backwards compatible).
|
|
Router string
|
|
|
|
// DisableSigning disables message signing. Message signing is *enabled*
|
|
// by default.
|
|
DisableSigning bool
|
|
}
|