From 079ce56b5dd86fcd8f72a7bdf8da37ab918deed1 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 --- 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