aboutsummaryrefslogtreecommitdiffstats
path: root/core/nodeset-cache_test.go
Commit message (Collapse)AuthorAgeFilesLines
* test: add test.State (#239)Mission Liao2018-10-241-1/+3
| | | | | | | | | * separate test utility and interface implementation for test.Governance. * add test.State. * integrate test.State to test.Governance. test.State is mainly used to emulate state propagation on fullnode.
* core: Add NodeSetCacheInterface (#203)Jimmy Hu2018-10-151-22/+17
|
* core: modify interface (#194)Mission Liao2018-10-121-2/+3
| | | | * Add a new method to notify full node about round cutting. * Modify interface to return error when preparing block
* core: Add round to DKG methods in gov. Change network interface name (#185)Jimmy Hu2018-10-091-4/+4
|
* core: Add DKG final message. (#181)Jimmy Hu2018-10-091-0/+2
|
* core: update config variable name grammar and remove configuration (#184)Wei-Ning Huang2018-10-081-3/+3
|
* core: Remove round from gov.ProposeCRS (#183)Jimmy Hu2018-10-081-1/+1
|
* core: Add NotarySet and DKGSet to cache (#176)Jimmy Hu2018-10-051-4/+20
|
* core: replace reliable-broadcast with shard (#159)Mission Liao2018-10-021-4/+4
|
* core: remove ProposeThresholdSignature/GetThresholdSignature (#158)Wei-Ning Huang2018-10-021-7/+0
| | | Also rename the argument name of ProposeCRS.
* core: run DKG and CRS at background. (#155)Jimmy Hu2018-10-021-1/+2
|
* core: use notarySet for BA module. (#153)Jimmy Hu2018-10-011-9/+10
|
* core: hide types.NodeID from full node. (#147)Mission Liao2018-09-281-0/+114
* Refine core.Governance interface - Remove types.NodeID from interface declaration. - All parameter should be round based. * Add core.NodeSetCache * Agreement accepts map of nodeID directly. * test.Transport.Peers method return public keys.