plugeth/core
Jeffrey Wilcke 361082ec4b cmd/evm, core/vm, test: refactored VM and core
* 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`.
2015-10-04 01:13:54 +02:00
..
state cmd/evm, core/vm, test: refactored VM and core 2015-10-04 01:13:54 +02:00
types cmd/evm, core/vm, test: refactored VM and core 2015-10-04 01:13:54 +02:00
vm cmd/evm, core/vm, test: refactored VM and core 2015-10-04 01:13:54 +02:00
.gitignore Renamed chain => core 2014-12-04 10:28:02 +01:00
asm.go all: fix license headers one more time 2015-07-23 18:35:11 +02:00
bad_block.go all: fix license headers one more time 2015-07-23 18:35:11 +02:00
bench_test.go core, core/types: readd transactions after chain re-org 2015-09-21 20:33:28 +02:00
block_processor_test.go cmd/evm, core/vm, test: refactored VM and core 2015-10-04 01:13:54 +02:00
block_processor.go cmd/evm, core/vm, test: refactored VM and core 2015-10-04 01:13:54 +02:00
blocks.go remove 0x 2015-08-20 18:50:47 +02:00
canary.go canary update 2015-08-20 18:38:21 +02:00
chain_makers_test.go core, core/types: readd transactions after chain re-org 2015-09-21 20:33:28 +02:00
chain_makers.go core, core/state: batch-based state sync 2015-09-22 22:57:37 +02:00
chain_manager_test.go cmd/evm, core/vm, test: refactored VM and core 2015-10-04 01:13:54 +02:00
chain_manager.go core: deadlock in chainmanager after posting RemovedTransactionEvent 2015-10-02 12:20:18 +02:00
chain_pow_test.go core: separate and contain POW verifier, extensive tests 2015-09-21 10:24:49 +03:00
chain_pow.go core: separate and contain POW verifier, extensive tests 2015-09-21 10:24:49 +03:00
chain_util_test.go core: split out TD from database and all internals 2015-09-11 17:42:25 +03:00
chain_util.go all: move common.Database to package ethdb 2015-09-14 23:36:30 +02:00
default_genesis.go core: added default genesis block 2015-08-02 01:23:02 +02:00
error.go core: fix a formatting loop in BadHashError 2015-09-29 09:11:38 +03:00
events.go cmd/evm, core/vm, test: refactored VM and core 2015-10-04 01:13:54 +02:00
execution.go cmd/evm, core/vm, test: refactored VM and core 2015-10-04 01:13:54 +02:00
fees.go Merge pull request #1515 from fjl/license-fixes 2015-07-28 04:29:42 -07:00
filter_test.go all: fix license headers one more time 2015-07-23 18:35:11 +02:00
genesis.go core, core/state: batch-based state sync 2015-09-22 22:57:37 +02:00
helper_test.go all: move common.Database to package ethdb 2015-09-14 23:36:30 +02:00
manager.go all: move common.Database to package ethdb 2015-09-14 23:36:30 +02:00
state_transition.go cmd/evm, core/vm, test: refactored VM and core 2015-10-04 01:13:54 +02:00
transaction_pool_test.go core, core/types: readd transactions after chain re-org 2015-09-21 20:33:28 +02:00
transaction_pool.go core, core/types: readd transactions after chain re-org 2015-09-21 20:33:28 +02:00
transaction_util.go core, core/types: readd transactions after chain re-org 2015-09-21 20:33:28 +02:00
vm_env.go cmd/evm, core/vm, test: refactored VM and core 2015-10-04 01:13:54 +02:00