Skip to content

Commit

Permalink
update to CamelCase.
Browse files Browse the repository at this point in the history
Signed-off-by: Iris Simon <iris.simon@swirldslabs.com>
  • Loading branch information
iwsimon committed Nov 13, 2023
1 parent 8ec085f commit d3c7074
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
18 changes: 9 additions & 9 deletions services/dynamic_addressbook_add_node.proto
Original file line number Diff line number Diff line change
Expand Up @@ -35,43 +35,43 @@ message DynamicAddressBookAddNodeTransactionBody {
/**
* The unique entity id of the Node.
*/
int64 node_id = 1;
int64 nodeID = 1;
/**
* node account id
*/
AccountID account_id = 2;
AccountID accountID = 2;
/**
* description of the node
*/
string description = 3;
/**
* inbound ip address or FQDN
*/
string inbound_ip = 4;
string inboundIp = 4;
/**
* inbound port
*/
int32 inbound_port = 5;
int32 inboundPort = 5;
/**
* outbound ip address or FQDN
*/
string outbound_ip = 6;
string outboundIp = 6;
/**
* outbound port
*/
int32 outbound_port = 7;
int32 outboundPort = 7;
/**
* grpc ip address or FQDN
*/
string grpc_ip = 8;
string grpcIp = 8;
/**
* grpc port
*/
int32 grpc_port = 9;
int32 grpcPort = 9;
/**
* node public key
*/
Key public_key = 10;
Key publicKey = 10;
/**
* node x509 certificate
*/
Expand Down
2 changes: 1 addition & 1 deletion services/dynamic_addressbook_remove_node.proto
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ message DynamicAddressBookRemoveNodeTransactionBody {
/**
* Node identifier
*/
int64 node_id = 1;
int64 nodeID = 1;
}
18 changes: 9 additions & 9 deletions services/dynamic_addressbook_update_node.proto
Original file line number Diff line number Diff line change
Expand Up @@ -39,43 +39,43 @@ message DynamicAddressBookUpdateNodeTransactionBody {
/**
* The unique entity id of the DynamicAddress.
*/
int64 node_id = 1;
int64 nodeID = 1;
/**
* If set, the new account_id to be associated with the node
*/
AccountID account_id = 2;
AccountID accountID = 2;
/**
* If set, the new description to be associated with the node
*/
string description = 3;
/**
* If set, the new inbound_ip to be associated with the node
*/
string inbound_ip = 4;
string inboundIp = 4;
/**
* If set, the new inbound_port to be associated with the node
*/
int32 inbound_port = 5;
int32 inboundPort = 5;
/**
* If set, the new outbound_ip to be associated with the node
*/
string outbound_ip = 6;
string outboundIp = 6;
/**
*If set, the new outbound_port to be associated with the node
*/
int32 outbound_port = 7;
int32 outboundPort = 7;
/**
* If set, the new grpc_ip to be associated with the node
*/
string grpc_ip = 8;
string grpcIp = 8;
/**
* If set, the new grpc_port to be associated with the node
*/
int32 grpc_port = 9;
int32 grpcPort = 9;
/**
*If set, the new public_key to be associated with the node
*/
Key public_key = 10;
Key publicKey = 10;
/**
* If set, the new x509 certificate to be associated with the node
*/
Expand Down

0 comments on commit d3c7074

Please sign in to comment.