mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-02 01:23:45 +00:00
* Moved `vm.Transfer` to `core` package and changed execution to call `env.Transfer` instead of `core.Transfer` directly. * core/vm: byte code VM moved to jump table instead of switch * Moved `vm.Transfer` to `core` package and changed execution to call `env.Transfer` instead of `core.Transfer` directly. * Byte code VM now shares the same code as the JITVM * Renamed Context to Contract * Changed initialiser of state transition & unexported methods * Removed the Execution object and refactor `Call`, `CallCode` & `Create` in to their own functions instead of being methods. * Removed the hard dep on the state for the VM. The VM now depends on a Database interface returned by the environment. In the process the core now depends less on the statedb by usage of the env * Moved `Log` from package `core/state` to package `core/vm`. |
||
|---|---|---|
| .. | ||
| state | ||
| types | ||
| vm | ||
| .gitignore | ||
| asm.go | ||
| bad_block.go | ||
| bench_test.go | ||
| block_processor.go | ||
| block_processor_test.go | ||
| blocks.go | ||
| canary.go | ||
| chain_makers.go | ||
| chain_makers_test.go | ||
| chain_manager.go | ||
| chain_manager_test.go | ||
| chain_pow.go | ||
| chain_pow_test.go | ||
| chain_util.go | ||
| chain_util_test.go | ||
| default_genesis.go | ||
| error.go | ||
| events.go | ||
| execution.go | ||
| fees.go | ||
| filter_test.go | ||
| genesis.go | ||
| helper_test.go | ||
| manager.go | ||
| state_transition.go | ||
| transaction_pool.go | ||
| transaction_pool_test.go | ||
| transaction_util.go | ||
| vm_env.go | ||