Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | core/state, core, miner: handle missing root error from state.New | Gustav Simonsson | 2015-10-16 | 1 | -2/+2 |
| | |||||
* | cmd/evm, core/vm, test: refactored VM and core | Jeffrey Wilcke | 2015-10-04 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | * 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`. | ||||
* | Merge pull request #1405 from fjl/lean-trie | Jeffrey Wilcke | 2015-10-01 | 1 | -4/+4 |
|\ | | | | | core, trie: new trie | ||||
| * | core, core/state: batch-based state sync | Felix Lange | 2015-09-23 | 1 | -4/+4 |
| | | |||||
* | | tests: add test for StateTests/stCallCodes.json | Gustav Simonsson | 2015-09-21 | 1 | -1/+2 |
|/ | |||||
* | tests: update common test wrappers and test files | Gustav Simonsson | 2015-09-18 | 1 | -3/+0 |
| | |||||
* | cmd/evm, core/vm, tests: changed DisableVm to EnableVm | Jeffrey Wilcke | 2015-08-12 | 1 | -3/+3 |
| | |||||
* | core/vm, tests: implemented semi-jit vm | Jeffrey Wilcke | 2015-08-07 | 1 | -0/+56 |
| | | | | * changed stack and removed stack ptr. Let go decide on slice reuse. | ||||
* | all: fix license headers one more time | Felix Lange | 2015-07-24 | 1 | -1/+1 |
| | | | | I forgot to update one instance of "go-ethereum" in commit 3f047be5a. | ||||
* | all: update license headers to distiguish GPL/LGPL | Felix Lange | 2015-07-23 | 1 | -4/+4 |
| | | | | | All code outside of cmd/ is licensed as LGPL. The headers now reflect this by calling the whole work "the go-ethereum library". | ||||
* | all: update license information | Felix Lange | 2015-07-07 | 1 | -0/+16 |
| | |||||
* | cmd,eth,rpc,tests: default coinbase | Jeffrey Wilcke | 2015-07-07 | 1 | -9/+11 |
| | |||||
* | core, miner, tests: renamed state methods | Jeffrey Wilcke | 2015-07-04 | 1 | -1/+1 |
| | | | | | | | | | | | | * Update => SyncIntermediate * Added SyncObjects SyncIntermediate only updates whatever has changed, but, as a side effect, requires much more disk space. SyncObjects will only sync whatever is required for a block and will not save intermediate state to disk. As drawback this requires more time when more txs come in. | ||||
* | tests: SetGasLimit | obscuren | 2015-06-21 | 1 | -1/+1 |
| | |||||
* | Add --skip option to CLI | Taylor Gerring | 2015-06-19 | 1 | -7/+7 |
| | | | | | Disassociates hardcoded tests to skip when running via CLI. Tests still skipped when running `go test` | ||||
* | recover test logic | Taylor Gerring | 2015-06-19 | 1 | -1/+1 |
| | |||||
* | Build error fixes | Taylor Gerring | 2015-06-19 | 1 | -5/+4 |
| | |||||
* | Add stdin option | Taylor Gerring | 2015-06-19 | 1 | -66/+100 |
| | |||||
* | Cleanup logging | Taylor Gerring | 2015-06-19 | 1 | -2/+3 |
| | |||||
* | DRY file loading | Taylor Gerring | 2015-06-19 | 1 | -7/+1 |
| | |||||
* | More consistent test interfaces + test skipping | Taylor Gerring | 2015-06-19 | 1 | -18/+18 |
| | |||||
* | Cleanup/reorg | Taylor Gerring | 2015-06-19 | 1 | -38/+1 |
| | |||||
* | Return error up stack instead of passing testing var down | Taylor Gerring | 2015-06-19 | 1 | -11/+12 |
| | |||||
* | DRY log check | Taylor Gerring | 2015-06-19 | 1 | -32/+40 |
| | |||||
* | Separate and identify tests runners | Taylor Gerring | 2015-06-19 | 1 | -0/+181 |