From 4444c04a97fe1ad5c4e431658ad8e231acd249c3 Mon Sep 17 00:00:00 2001 From: IronGauntlets Date: Tue, 28 Nov 2023 16:47:28 +0000 Subject: [PATCH] Add Transaction hash to Events message Co-authored-by: Krzysztof Lis --- p2p/proto/event.proto | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/p2p/proto/event.proto b/p2p/proto/event.proto index 1528f8d..94051bb 100644 --- a/p2p/proto/event.proto +++ b/p2p/proto/event.proto @@ -12,7 +12,8 @@ message EventsRequest { } message Events { - repeated Event items = 1; + Hash transaction_hash = 1; + repeated Event items = 2; } // can be several in a single reply