You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Signature of async publish(topic: TopicStr, data: Uint8Array) could be changed to topics: TopicStr[] to publish to multiple topics. Or add an option to disable checking for duplicate messages
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days if no further activity occurs. Thank you for your contributions.
Ethereum beacon chain requires to publish the same SyncCommitteeSignature to multiple topics on small networks.
Currently gossipsub prevents doing that by throwing
PublishError.Duplicate
js-libp2p-gossipsub/src/index.ts
Line 1858 in 17c25a1
Signature of
async publish(topic: TopicStr, data: Uint8Array)
could be changed totopics: TopicStr[]
to publish to multiple topics. Or add an option to disable checking for duplicate messagesThe text was updated successfully, but these errors were encountered: