aboutsummaryrefslogtreecommitdiffstats
path: root/core/ticker.go
Commit message (Collapse)AuthorAgeFilesLines
* core: replace reliable-broadcast with shard (#159)Mission Liao2018-10-021-3/+3
|
* core: run DKG and CRS at background. (#155)Jimmy Hu2018-10-021-3/+6
|
* core: run first DKG at startup. (#129)Jimmy Hu2018-09-231-4/+20
|
* core: refine governance interface to reduce Get* methods (#114)Wei-Ning Huang2018-09-181-1/+1
| | | | | Since we have a bunch of static configurations in the governance contract, instead of using a Get* method for each of them, we instead implement a GetConfiguration() method to return a structure of the configurations.
* core: remove ticker parameter from NewConsensusMission Liao2018-09-181-0/+58
- remove BlockProposingInterval, it's replaced by lambda. - remove ticker parameter of NewConsensus, ticker would be derived from governance. - leave a backdoor to hook the construction of ticker. - move 'Lambda' config from to consensus.