Skip to content
This repository has been archived by the owner on Sep 6, 2022. It is now read-only.

Commit

Permalink
use camelCase in protos for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
yusefnapora committed Nov 25, 2019
1 parent 3e5cb09 commit 4fec275
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crypto/pb/envelope.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
2 changes: 1 addition & 1 deletion routing/pb/routing_state.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ message RoutingStateRecord {
bytes multiaddr = 1;
}

bytes peer_id = 1;
bytes peerId = 1;
uint64 seq = 2;
repeated AddressInfo addresses = 3;
}

0 comments on commit 4fec275

Please sign in to comment.