aboutsummaryrefslogtreecommitdiffstats
path: root/core/utils/utils_test.go
Commit message (Collapse)AuthorAgeFilesLines
* core: add report bad peer interface to network (#559)Jimmy Hu2019-04-121-7/+9
|
* core/crypto/dkg: concurrent access for gpk (#548)Jimmy Hu2019-04-041-1/+1
| | | | | * core/crypto/dkg: add benchmark * core/crypto/dkg: concurrent access for gpk
* core/utils: fix verifyDKGComplaint bug (#472)Jimmy Hu2019-03-081-2/+2
| | | | | | * core/utils: fix verifydkgcomplaint bug * fix test
* syncer: fix issues when switching to core.Consensus (#418)Mission Liao2019-01-111-0/+60
| | | | | | | | | | | | | | | | - when confirmed blocks passed to core.Consensus aren't continuous in position in some chain, the pulling would skip those missing blocks. - fix: when some block is missing, avoid adding it and all blocks after it to core.Consensus. - we need to avoid the receive channel of network module full. - fix: during switching to core.Consensus, we need to launch a dummy receiver to receive from receive channel of network module. - fix: between the period during core.Consensus created and before running, a dummy receiver is also required to receive from receive channel of network module.
* core/utils: Add Penalty checker and VerifyDKGComplaint (#393)Jimmy Hu2019-01-041-0/+116
* Add Util for checking penalty * Add VerifyDKGComplaints * Fixup and rename * Happy New Year!