Official Go implementation of the Ethereum protocol
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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`.
9 years ago
..
state
cmd/evm, core/vm, test: refactored VM and core
9 years ago
types
cmd/evm, core/vm, test: refactored VM and core
9 years ago
vm
cmd/evm, core/vm, test: refactored VM and core
9 years ago
.gitignore
Renamed `chain` => `core`
10 years ago
asm.go
all: fix license headers one more time
9 years ago
bad_block.go
all: fix license headers one more time
9 years ago
bench_test.go
core, core/types: readd transactions after chain re-org
9 years ago
block_processor.go
cmd/evm, core/vm, test: refactored VM and core
9 years ago
block_processor_test.go
cmd/evm, core/vm, test: refactored VM and core
9 years ago
blocks.go
remove 0x
9 years ago
canary.go
canary update
9 years ago
chain_makers.go
core, core/state: batch-based state sync
9 years ago
chain_makers_test.go
core, core/types: readd transactions after chain re-org
9 years ago
chain_manager.go
core: deadlock in chainmanager after posting RemovedTransactionEvent
9 years ago
chain_manager_test.go
cmd/evm, core/vm, test: refactored VM and core
9 years ago
chain_pow.go
core: separate and contain POW verifier, extensive tests
9 years ago
chain_pow_test.go
core: separate and contain POW verifier, extensive tests
9 years ago
chain_util.go
all: move common.Database to package ethdb
9 years ago
chain_util_test.go
core: split out TD from database and all internals
9 years ago
default_genesis.go
core: added default genesis block
9 years ago
error.go
core: fix a formatting loop in BadHashError
9 years ago
events.go
cmd/evm, core/vm, test: refactored VM and core
9 years ago
execution.go
cmd/evm, core/vm, test: refactored VM and core
9 years ago
fees.go
Merge pull request #1515 from fjl/license-fixes
9 years ago
filter_test.go
all: fix license headers one more time
9 years ago
genesis.go
core, core/state: batch-based state sync
9 years ago
helper_test.go
all: move common.Database to package ethdb
9 years ago
manager.go
all: move common.Database to package ethdb
9 years ago
state_transition.go
cmd/evm, core/vm, test: refactored VM and core
9 years ago
transaction_pool.go
core, core/types: readd transactions after chain re-org
9 years ago
transaction_pool_test.go
core, core/types: readd transactions after chain re-org
9 years ago
transaction_util.go
core, core/types: readd transactions after chain re-org
9 years ago
vm_env.go
cmd/evm, core/vm, test: refactored VM and core
9 years ago