aboutsummaryrefslogtreecommitdiffstats
path: root/blockpool/errors_test.go
Commit message (Collapse)AuthorAgeFilesLines
* blockpool stability fixes:zelig2015-04-131-14/+13
| | | | | | | | | | | | - follow up locks and fix them - chainManager: call SetQueued for parentErr future blocks, uncomment TD checks, unskip test - make ErrIncorrectTD non-fatal to be forgiving to genuine mistaken nodes (temp) but demote them to guard against stuck best peers. - add purging to bounded nodeCache (config nodeCacheSize) - use nodeCache when creating blockpool entries and let non-best peers add blocks (performance boost) - minor error in addError - reduce idleBestPeerTimeout to 1 minute - correct status counts and unskip status passing status test - glogified logging
* td update from nodezelig2015-04-101-1/+1
| | | | | | | - reorg and simplify AddBlock - introduce nodeCache - TestPeerPromotionByTdOnBlock unskipped and passes - move switchC/idleC channel creation around: solves deadlock (now respects the contract with section process: either can activate or complete at any one time)
* Skipped td testobscuren2015-04-101-0/+1
|
* uncomment future block TD check, add test for skipping TD check on future blockzelig2015-04-091-2/+39
|
* fix deadlock issue in AddBlockzelig2015-04-091-1/+1
| | | | | | - add peer switch channel arg to activateChain - no peer locking within - proper locking in AddBlock - fixes deadlock issue - comment out TD check and skip incorrect TD test again for hotfix
* put back checkTD and unskip incorrectTD testzelig2015-04-091-1/+1
|
* fix TestPoolStatus test crashing, skip tests failing (due to @obscuren hotfixes)zelig2015-04-091-0/+4
|
* Skipping testobscuren2015-04-051-0/+2
| | | | @zelig this will need updating with the TD checking
* check and penalise td misreportingzelig2015-03-201-1/+27
| | | | | | - add ErrIncorrectTD - checkTD called after insertChain successful - fix tests, use blockPoolTester.tds to map block index to TD
* peer suspension to disallow reconnect after disconnect on fatal error for ↵zelig2015-03-201-1/+32
| | | | set period (PeerSuspensionInterval)
* major rewrite, reorg of blockpool + new featureszelig2015-02-251-0/+124
- 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