aboutsummaryrefslogtreecommitdiffstats
path: root/core/block_processor_test.go
Commit message (Collapse)AuthorAgeFilesLines
* core: settable genesis nonceobscuren2015-06-091-1/+6
| | | | | | | You can set the nonce of the block with `--genesisnonce`. When the genesis nonce changes and it doesn't match with the first block in your database it will fail. A new `datadir` must be given if the nonce of the genesis block changes.
* core: don't remove transactions after block processingFelix Lange2015-06-041-1/+1
| | | | | The transaction pool drops processed transactions on its own during pool maintenance.
* core: fixed an issue with storing receiptsobscuren2015-05-281-0/+32
|
* core: fixed testsobscuren2015-05-191-3/+3
|
* Improved chain manager, improved block processor, fixed testsobscuren2015-04-041-1/+2
| | | | | | * ChainManager allows cached future blocks for later processing * BlockProcessor allows a 4 second window on future blocks * Fixed tests
* core: fix testsFelix Lange2015-03-181-2/+3
|
* Add additional extra database for non-protocol related dataobscuren2015-03-121-1/+1
| | | | * Add transaction to extra database after a successful block process
* Fixed testsobscuren2015-03-071-4/+5
|
* Added GetBlock GetUncle with OOB guardobscuren2015-02-181-0/+34