use camelCase in protos for consistency

This commit is contained in:
Yusef Napora 2019-11-25 11:58:50 -06:00
parent ff5ddb3846
commit fb521c6433
2 changed files with 3 additions and 3 deletions

View File

@ -5,8 +5,8 @@ package crypto.pb;
import "crypto.proto";
message SignedEnvelope {
PublicKey public_key = 1;
bytes payload_type = 2;
PublicKey publicKey = 1;
bytes payloadType = 2;
bytes payload = 3;
bytes signature = 4;
}

View File

@ -6,7 +6,7 @@ message RoutingStateRecord {
bytes multiaddr = 1;
}
bytes peer_id = 1;
bytes peerId = 1;
uint64 seq = 2;
repeated AddressInfo addresses = 3;
}