more odds-and-ends

This commit is contained in:
Jared Wasinger 2025-10-17 19:26:08 +08:00
parent 9f9f5af6fa
commit b44c182cbd
2 changed files with 0 additions and 7 deletions

View file

@ -183,12 +183,6 @@ type (
// StorageChangeHook is called when the storage of an account changes.
StorageChangeHook = func(addr common.Address, slot common.Hash, prev, new common.Hash)
// ColdStorageReadHook is called before a previously-unread storage slot is read.
ColdStorageReadHook = func(common.Address, common.Hash)
// ColdAccountReadHook is called before an previously-unread account is read.
ColdAccountReadHook = func(address common.Address)
SelfDestructHook = func(address common.Address)
// LogHook is called when a log is emitted.

View file

@ -77,7 +77,6 @@ type TxContext struct {
BlobHashes []common.Hash // Provides information for BLOBHASH
BlobFeeCap *big.Int // Is used to zero the blobbasefee if NoBaseFee is set
AccessEvents *state.AccessEvents // Capture all state accesses for this tx
Index uint64 // the index of the transaction within the block being executed (0 if executing a standalone call)
}
// EVM is the Ethereum Virtual Machine base object and provides