aboutsummaryrefslogtreecommitdiffstats
path: root/core/utils_test.go
Commit message (Collapse)AuthorAgeFilesLines
* core: refine VerifyAgreementResult (#553)Mission Liao2019-04-081-10/+13
| | | | | | | | * Pass notary set directly to VerifyAgreementResult * Fix core.Consensus * Fix syncer
* core: first few round will not have DKG (#455)Jimmy Hu2019-03-041-1/+1
| | | | | | | | | | | | | | * core: Add DKGDelayRound constant * core: use constant value * core, utils: set DKGDelayRound for utils. * test: add dkgDelayRound to state * core: do not run dkg and crs for round < DKGDelayRound * fix test
* core: switch round by block height (#450)Mission Liao2019-02-201-3/+2
|
* core: Fix BA3.0 implmenetation (#426)Jimmy Hu2019-01-211-1/+1
| | | | | | | | | | | | | | | | * types: Add vote type * core: remove stateFastRollback * core: rename lockRound to lockIter * core: Implement real ba3.0 * core: Add test for confirm * Fix VoteFastCom in agreement result * lockIter will always increase
* core: Fix stuffs (#422)Jimmy Hu2019-01-181-0/+81
| | | | | | * core: reduce syncing ba msg * core: fix checking period of agreement result
* utils: move authenticator to utils package (#378)Mission Liao2018-12-221-22/+0
|
* Rename repo to dexon-consensusWei-Ning Huang2018-11-021-8/+8
|
* core: Add BlockSkeleton and Verify functions (#271)Jimmy Hu2018-10-291-0/+39
|
* core: total ordering with chain ID (#100)Mission Liao2018-09-121-6/+6
|
* core: tune total ordering performance (#81)Mission Liao2018-08-301-0/+27
- Replace map with slice Compared to slice, accessing to map is slower and the memory usage is inefficient.