go-waku/waku/v2/protocol/pb/waku_message.proto
Richard Ramos 58f739765e
refactor: use int64 timestamps (#189)
* refactor: use int64 timestamps
* fix: changed PB Timestamp index to 10
2022-02-23 11:01:53 -04:00

11 lines
181 B
Protocol Buffer

syntax = "proto3";
package pb;
message WakuMessage {
bytes payload = 1;
string contentTopic = 2;
uint32 version = 3;
sint64 timestamp = 10;
bytes proof = 21;
}