mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-27 05:12:58 +00:00
more odds-and-ends
This commit is contained in:
parent
9f9f5af6fa
commit
b44c182cbd
2 changed files with 0 additions and 7 deletions
|
|
@ -183,12 +183,6 @@ type (
|
||||||
// StorageChangeHook is called when the storage of an account changes.
|
// StorageChangeHook is called when the storage of an account changes.
|
||||||
StorageChangeHook = func(addr common.Address, slot common.Hash, prev, new common.Hash)
|
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)
|
SelfDestructHook = func(address common.Address)
|
||||||
|
|
||||||
// LogHook is called when a log is emitted.
|
// LogHook is called when a log is emitted.
|
||||||
|
|
|
||||||
|
|
@ -77,7 +77,6 @@ type TxContext struct {
|
||||||
BlobHashes []common.Hash // Provides information for BLOBHASH
|
BlobHashes []common.Hash // Provides information for BLOBHASH
|
||||||
BlobFeeCap *big.Int // Is used to zero the blobbasefee if NoBaseFee is set
|
BlobFeeCap *big.Int // Is used to zero the blobbasefee if NoBaseFee is set
|
||||||
AccessEvents *state.AccessEvents // Capture all state accesses for this tx
|
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
|
// EVM is the Ethereum Virtual Machine base object and provides
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue