mirror of https://github.com/status-im/op-geth.git
781915f183
This CL makes several refactors: - Define a Tracer interface, implementing the `CaptureState` method - Add the VM environment as the first argument of `Tracer.CaptureState` - Rename existing functionality `StructLogger` an make it an implementation of `Tracer` - Delete `StructLogCollector` and make `StructLogger` collect the logs directly - Change all callers to use the new `StructLogger` where necessary and extract logs from that. - Deletes the apparently obsolete and likely nonfunctional 'TraceCall' from the eth API. Callers that only wish accumulated logs can use the `StructLogger` implementation straightforwardly. Callers that wish to efficiently capture VM traces and operate on them without excessive copying can now implement the `Tracer` interface to receive VM state at each step and do with it as they wish. This CL also removes the accumulation of logs from the vm.Environment; this was necessary as part of the refactor, but also simplifies it by removing a responsibility that doesn't directly belong to the Environment. |
||
---|---|---|
.. | ||
state | ||
types | ||
vm | ||
.gitignore | ||
asm.go | ||
bench_test.go | ||
block_validator.go | ||
block_validator_test.go | ||
blockchain.go | ||
blockchain_test.go | ||
blocks.go | ||
chain_makers.go | ||
chain_makers_test.go | ||
chain_pow.go | ||
chain_pow_test.go | ||
config.go | ||
dao.go | ||
dao_test.go | ||
database_util.go | ||
database_util_test.go | ||
default_genesis.go | ||
error.go | ||
events.go | ||
execution.go | ||
fees.go | ||
filter_test.go | ||
gaspool.go | ||
genesis.go | ||
headerchain.go | ||
helper_test.go | ||
state_processor.go | ||
state_transition.go | ||
tx_pool.go | ||
tx_pool_test.go | ||
types.go | ||
vm_env.go |