aboutsummaryrefslogtreecommitdiffstats
path: root/core/blockchain_test.go
Commit message (Collapse)AuthorAgeFilesLines
* eth/filters: ✨ pending logs ✨Jeffrey Wilcke2016-02-131-2/+2
| | | | | | Pending logs are now filterable through the Go API. Filter API changed such that each filter type has it's own bucket and adding filter explicitly requires you specify the bucket to put it in.
* core: added a new RemovedLogEventJeffrey Wilcke2015-12-011-0/+43
| | | | | | When a chain reorganisation occurs we collect the logs that were deleted during the chain reorganisation. The removed logs are posted to the event mux indicating that those were deleted during the reorg.
* cmd, common, core, eth, node, rpc, tests, whisper, xeth: use protocol stacksPéter Szilágyi2015-11-271-4/+4
|
* core, eth, miner, xeth: clean up tx/receipt db accessorsPéter Szilágyi2015-11-191-4/+4
|
* core, eth, rpc: split out block validator and state processorJeffrey Wilcke2015-11-181-64/+75
| | | | | | | | | | | | 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).
* core, eth, trie: fix data races and merge/review issuesPéter Szilágyi2015-10-211-1/+1
|
* core, eth: roll back uncertain headers in failed fast syncsPéter Szilágyi2015-10-191-2/+13
|
* eth/downloader: concurrent receipt and state processingPéter Szilágyi2015-10-191-10/+19
|
* core, eth: receipt chain reconstructionPéter Szilágyi2015-10-191-5/+157
|
* core: support inserting pure header chainsPéter Szilágyi2015-10-191-235/+352
|
* core: fixed head write on block insertionJeffrey Wilcke2015-10-051-0/+13
| | | | | Due to a rebase this probably got overlooked / ignored. This fixes the issue of a block insertion never writing the last block.
* cmd/geth, cmd/utils, core, rpc: renamed to blockchainJeffrey Wilcke2015-10-041-0/+652
* Renamed ChainManager to BlockChain * Checkpointing is no longer required and never really properly worked when the state was corrupted.