From 28d0043043400298a8ea8c658c027a358d939c5e Mon Sep 17 00:00:00 2001 From: Giulio Date: Wed, 11 Oct 2023 13:55:42 +0200 Subject: [PATCH] save --- execution/execution.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/execution/execution.proto b/execution/execution.proto index e186dfa..dc19365 100644 --- a/execution/execution.proto +++ b/execution/execution.proto @@ -163,6 +163,10 @@ message ReadyResponse { bool ready = 1; } +message FrozenBlocksResponse { + uint64 frozen_blocks = 1; +} + service Execution { // Chain Putters. rpc InsertBlocks(InsertBlocksRequest) returns(InsertionResult); @@ -188,6 +192,8 @@ service Execution { // Misc // We want to figure out whether we processed snapshots and cleanup sync cycles. rpc Ready(google.protobuf.Empty) returns(ReadyResponse); + // Frozen blocks are how many blocks are in snapshots .seg files. + rpc FrozenBlocks(google.protobuf.Empty) returns(types.FrozenBlocksResponse); } \ No newline at end of file