Merge e13f5230aec68d3aacda4c5d3839ceba720f89a3 into 0751e39289f72406eeac658c74d6d898a20b3f84

This commit is contained in:
Simon-Pierre Vivier 2025-01-20 16:56:21 +00:00 committed by GitHub
commit 57f1a0bb7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,11 @@
syntax = "proto3";
package waku.sync.transfer.v1;
import "waku/message/v1/message.proto";
message WakuMessageAndTopic {
// Full message content and associated pubsub_topic as value
optional waku.message.v1.WakuMessage message = 1;
optional string pubsub_topic = 2;
}