aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/noop.go
Commit message (Collapse)AuthorAgeFilesLines
* core, params: polish net gas metering PR a bitPéter Szilágyi2018-09-181-72/+0
|
* core,state: finish implementing Eip 1283Martin Holst Swende2018-09-181-0/+1
|
* core, state: initial implementation of Eip-1283Martin Holst Swende2018-09-181-0/+1
|
* all: switch gas limits from big.Int to uint64Péter Szilágyi2018-01-031-2/+2
|
* core, core/state, core/vm: remove exported account getters (#3618)Jeffrey Wilcke2017-02-231-23/+23
| | | | Removed exported statedb object accessors, reducing the chance for nasty bugs to creep in. It's also ugly and unnecessary to have these methods.
* cmd/geth, core: add support for recording SHA3 preimages (#3543)Nick Johnson2017-01-171-0/+1
|
* core/vm: move Log to core/typesFelix Lange2017-01-061-1/+2
| | | | | | | | This significantly reduces the dependency closure of ethclient, which no longer depends on core/vm as of this change. All uses of vm.Logs are replaced by []*types.Log. NewLog is gone too, the constructor simply returned a literal.
* core, core/vm: implemented a generic environment (#3348)Jeffrey Wilcke2016-12-061-0/+68
Environment is now a struct (not an interface). This reduces a lot of tech-debt throughout the codebase where a virtual machine environment had to be implemented in order to test or run it. The new environment is suitable to be used en the json tests, core consensus and light client.