From 248d1a5d50ec3fb3773d3e8975ddb6fd025e38d2 Mon Sep 17 00:00:00 2001 From: bbaktaeho Date: Fri, 12 Sep 2025 11:15:33 +0900 Subject: [PATCH] fix: update comment in log to reflect EIP-7702 changes --- core/types/log.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/types/log.go b/core/types/log.go index f0e6a3a745..706d91c082 100644 --- a/core/types/log.go +++ b/core/types/log.go @@ -29,6 +29,9 @@ import ( type Log struct { // Consensus fields: // address of the contract that generated the event + // + // After Prague upgrade (EIP-7702), this can also be an EOA + // with delegated code that generated the event Address common.Address `json:"address" gencodec:"required"` // list of topics provided by the contract. Topics []common.Hash `json:"topics" gencodec:"required"`