aboutsummaryrefslogtreecommitdiffstats
path: root/core/types.go
Commit message (Collapse)AuthorAgeFilesLines
* core, miner: move Backend to minerFelix Lange2016-08-171-15/+0
| | | | | This ensures that package core doesn't depend on package accounts and resolves an age-old TODO.
* eth: remove dapp database remainsFelix Lange2016-08-171-1/+0
|
* all: update license informationFelix Lange2016-04-151-1/+1
|
* core: added basic chain configurationJeffrey Wilcke2016-04-011-1/+1
| | | | | | | | | Added chain configuration options and write out during genesis database insertion. If no "config" was found, nothing is written to the database. Configurations are written on a per genesis base. This means that any chain (which is identified by it's genesis hash) can have their own chain settings.
* core: Added EVM configuration optionsJeffrey Wilcke2016-03-241-1/+1
| | | | | The EVM is now initialised with an additional configured object that allows you to turn on debugging options.
* core: various typosLeif Jurvetson2016-03-161-1/+1
|
* core: create a header chain structure shared by core.BlockChain and ↵zsfelfoldi2016-03-101-2/+10
| | | | light.LightChain
* core, eth, rpc: split out block validator and state processorJeffrey Wilcke2015-11-181-0/+70
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).