mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-23 14:54:45 +00:00
Rename proto NodeInfo -> NodeInfoResponse
This commit is contained in:
@@ -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 {}
|
||||
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user