aboutsummaryrefslogtreecommitdiffstats
path: root/blockpool/blockpool_util_test.go
Commit message (Collapse)AuthorAgeFilesLines
* blockpool: deletedobscuren2015-04-211-373/+0
|
* uncomment future block TD check, add test for skipping TD check on future blockzelig2015-04-091-1/+1
|
* improve documentation and move one testzelig2015-03-201-14/+22
|
* reduce logging outputzelig2015-03-201-22/+19
|
* check and penalise td misreportingzelig2015-03-201-0/+9
| | | | | | - add ErrIncorrectTD - checkTD called after insertChain successful - fix tests, use blockPoolTester.tds to map block index to TD
* use own total difficulty to limit best peerzelig2015-03-201-1/+4
| | | | | | | | | - update blockpool td by subscribing to ChainHeadEvent - if ahead of best peer, demote it - addPeer now take own td as current td - removePeer now take own td as current td - add relevant tests to peers_test - eth: backend now calls blockpool with eth.eventMux and chainManager.Td
* peer suspension to disallow reconnect after disconnect on fatal error for ↵zelig2015-03-201-12/+18
| | | | set period (PeerSuspensionInterval)
* Moved ethutil => commonobscuren2015-03-161-2/+2
|
* major rewrite, reorg of blockpool + new featureszelig2015-02-251-0/+350
- blockpool moves to its own package - uses errs pkg for its own coded errors - publicly settable config of params (time intervals and batchsizes) - test helpers in subpackage - optional TD in blocks used now to update peers chain info - major improvement in algorithm - fix fragility and sync/parallelisation bugs - implement status for reporting on sync status (peers/hashes/blocks etc) - several tests added and further corner cases covered