Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
Giulio2002 committed Jul 8, 2023
1 parent 6e8e2a2 commit 3cc6aa9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions engine/engine.proto
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ service Engine {

// Fetch the blobs bundle using its ID.
rpc EngineGetBlobsBundleV1(EngineGetBlobsBundleRequest) returns(types.BlobsBundleV1);
// Should be moved to execution.proto
rpc PendingBlock(google.protobuf.Empty) returns (PendingBlockReply);
}

message EngineGetPayloadRequest {
Expand Down
2 changes: 0 additions & 2 deletions execution/execution.proto
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ service Execution {
rpc GetBody(GetSegmentRequest) returns(GetBodyResponse);
rpc IsCanonicalHash(types.H256) returns(IsCanonicalResponse);
rpc GetHeaderHashNumber(types.H256) returns(GetHeaderHashNumberResponse);
// TODO(Giulio2002) do it here.
rpc PendingBlock(google.protobuf.Empty) returns (PendingBlockReply);
}

message PendingBlockReply {
Expand Down
3 changes: 3 additions & 0 deletions remote/ethbackend.proto
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ service ETHBACKEND {

// Peers collects and returns peers information from all running sentry instances.
rpc Peers(google.protobuf.Empty) returns (PeersReply);

// PendingBlock returns latest built block.
rpc PendingBlock(google.protobuf.Empty) returns (PendingBlockReply);
}

enum Event {
Expand Down

0 comments on commit 3cc6aa9

Please sign in to comment.