aboutsummaryrefslogtreecommitdiffstats
path: root/core/gaspool.go
Commit message (Collapse)AuthorAgeFilesLines
* miner: avoid unnecessary work (#15883)Jim McDonald2018-01-151-0/+5
|
* all: switch gas limits from big.Int to uint64Péter Szilágyi2018-01-031-13/+16
|
* consensus, core: drop all the legacy custom core error typesPéter Szilágyi2017-04-061-1/+1
|
* all: update license informationFelix Lange2016-04-151-1/+1
|
* core, eth, rpc: split out block validator and state processorJeffrey Wilcke2015-11-181-0/+46
This removes the burden on a single object to take care of all validation and state processing. Now instead the validation is done by the `core.BlockValidator` (`types.Validator`) that takes care of both header and uncle validation through the `ValidateBlock` method and state validation through the `ValidateState` method. The state processing is done by a new object `core.StateProcessor` (`types.Processor`) and accepts a new state as input and uses that to process the given block's transactions (and uncles for rewords) to calculate the state root for the next block (P_n + 1).