From 82e21120bb5de7639905669ef631fa9c5d2bd869 Mon Sep 17 00:00:00 2001 From: IronGauntlets Date: Tue, 28 Nov 2023 16:47:28 +0000 Subject: [PATCH] Add Transaction hash to Event message Co-authored-by: Krzysztof Lis --- p2p/proto/event.proto | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/p2p/proto/event.proto b/p2p/proto/event.proto index 1528f8d..00cb57d 100644 --- a/p2p/proto/event.proto +++ b/p2p/proto/event.proto @@ -2,9 +2,10 @@ syntax = "proto3"; import "p2p/proto/common.proto"; message Event { - Felt252 from_address = 1; - repeated Felt252 keys = 2; - repeated Felt252 data = 3; + Hash transaction_hash = 1; + Felt252 from_address = 2; + repeated Felt252 keys = 3; + repeated Felt252 data = 4; } message EventsRequest {