mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 05:36:46 +00:00
fix: update comment in log to reflect EIP-7702 changes
This commit is contained in:
parent
8a19582c8d
commit
248d1a5d50
1 changed files with 3 additions and 0 deletions
|
|
@ -29,6 +29,9 @@ import (
|
||||||
type Log struct {
|
type Log struct {
|
||||||
// Consensus fields:
|
// Consensus fields:
|
||||||
// address of the contract that generated the event
|
// 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"`
|
Address common.Address `json:"address" gencodec:"required"`
|
||||||
// list of topics provided by the contract.
|
// list of topics provided by the contract.
|
||||||
Topics []common.Hash `json:"topics" gencodec:"required"`
|
Topics []common.Hash `json:"topics" gencodec:"required"`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue