From 4adf81d8abd860739994b792a871f03989532697 Mon Sep 17 00:00:00 2001 From: Giulio Date: Sat, 8 Jul 2023 22:12:12 +0200 Subject: [PATCH] save --- engine/engine.proto | 3 --- execution/execution.proto | 3 --- remote/ethbackend.proto | 4 ++++ 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/engine/engine.proto b/engine/engine.proto index 8930878..2cc3b36 100644 --- a/engine/engine.proto +++ b/engine/engine.proto @@ -93,6 +93,3 @@ message EngineGetPayloadBodiesV1Response { repeated types.ExecutionPayloadBodyV1 bodies = 1; } -message PendingBlockReply { - bytes block_rlp = 1; -} diff --git a/execution/execution.proto b/execution/execution.proto index bc9d0a6..02ec6a3 100644 --- a/execution/execution.proto +++ b/execution/execution.proto @@ -107,7 +107,4 @@ service Execution { rpc GetHeaderHashNumber(types.H256) returns(GetHeaderHashNumberResponse); } -message PendingBlockReply { - bytes block_rlp = 1; - } \ No newline at end of file diff --git a/remote/ethbackend.proto b/remote/ethbackend.proto index bec1d94..532aa62 100644 --- a/remote/ethbackend.proto +++ b/remote/ethbackend.proto @@ -57,6 +57,10 @@ enum Event { NEW_SNAPSHOT = 3; } +message PendingBlockReply { + bytes block_rlp = 1; +} + message EtherbaseRequest {} message EtherbaseReply { types.H160 address = 1; }