ContentTopic is now uint32 as per spec

This commit is contained in:
Franck Royer 2021-03-18 20:00:41 +11:00
parent 5c29394937
commit 1797bde72d
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@ package waku.v2;
message WakuMessage {
optional bytes payload = 1;
optional uint32 content_topic = 2; // Follow nim-waku implementation and not the spec
optional uint32 content_topic = 2;
optional uint32 version = 3;
}