Skip to content

Commit

Permalink
lol (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
Giulio2002 authored Aug 5, 2023
1 parent 09807b0 commit 6a724fa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions execution/execution.proto
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ message GetAssembledBlockResponse {
bool busy = 2;
}

message ReadyResponse {
bool ready = 1;
}

service Execution {
// Chain Putters.
rpc InsertHeaders(InsertHeadersRequest) returns(InsertionResult);
Expand All @@ -159,6 +163,9 @@ service Execution {
rpc IsCanonicalHash(types.H256) returns(IsCanonicalResponse);
rpc GetHeaderHashNumber(types.H256) returns(GetHeaderHashNumberResponse);
rpc GetForkChoice(google.protobuf.Empty) returns(ForkChoice);
// Misc
// We want to figure out whether we processed snapshots and cleanup sync cycles.
rpc Ready(google.protobuf.Empty) returns(ReadyResponse);
}


0 comments on commit 6a724fa

Please sign in to comment.