From 3906621e2468353ff8b40be25d0a2773de95c816 Mon Sep 17 00:00:00 2001 From: tmelhao Date: Mon, 3 Jun 2024 08:21:57 +0000 Subject: [PATCH] core/types: add timestamp in log marshal Signed-off-by: tmelhao --- core/types/log.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/core/types/log.go b/core/types/log.go index fe279ba863..6180bf4558 100644 --- a/core/types/log.go +++ b/core/types/log.go @@ -56,8 +56,9 @@ type Log struct { } type logMarshaling struct { - Data hexutil.Bytes - BlockNumber hexutil.Uint64 - TxIndex hexutil.Uint - Index hexutil.Uint + Data hexutil.Bytes + BlockNumber hexutil.Uint64 + TxIndex hexutil.Uint + Index hexutil.Uint + BlockTimestamp hexutil.Uint64 }