Use proto3

This commit is contained in:
momo5502
2016-02-10 15:38:34 +01:00
parent 75e76226d1
commit 1359c12160
2 changed files with 14 additions and 14 deletions

View File

@ -3,7 +3,7 @@ syntax = "proto3";
package Proto;
message NodePacket {
string challenge = 1;
string signature = 2;
string publicKey = 3;
bytes challenge = 1;
bytes signature = 2;
bytes publicKey = 3;
}