Rename proto NodeInfo -> NodeInfoResponse

This commit is contained in:
Paul Hauner
2019-03-26 15:04:39 +11:00
parent e702896bee
commit 3756d8d681
2 changed files with 6 additions and 7 deletions

View File

@@ -14,7 +14,7 @@ package ethereum.beacon.rpc.v1;
// Service that currently identifies a beacon node
service BeaconNodeService {
rpc Info(Empty) returns (NodeInfo);
rpc Info(Empty) returns (NodeInfoResponse);
}
/// Service that handles block production
@@ -40,7 +40,7 @@ service AttestationService {
/*
* Beacon Node Service Message
*/
message NodeInfo {
message NodeInfoResponse {
string version = 1;
Fork fork = 2;
uint32 chain_id = 3;
@@ -53,8 +53,7 @@ message Fork {
uint64 epoch = 3;
}
message Empty {
}
message Empty {}
/*