mirror of
https://github.com/logos-messaging/go-libp2p-pubsub.git
synced 2026-01-05 22:33:10 +00:00
forbid sign strict without signing enabled
This commit is contained in:
parent
107b3bdc97
commit
7303abae4b
@ -177,6 +177,10 @@ func NewPubSub(ctx context.Context, h host.Host, rt PubSubRouter, opts ...Option
|
||||
}
|
||||
}
|
||||
|
||||
if ps.signStrict && ps.signKey == nil {
|
||||
return nil, fmt.Errorf("strict signature verification enabled but message signing is disabled")
|
||||
}
|
||||
|
||||
rt.Attach(ps)
|
||||
|
||||
for _, id := range rt.Protocols() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user