aboutsummaryrefslogtreecommitdiffstats
path: root/dex/recovery.go
Commit message (Collapse)AuthorAgeFilesLines
* dex: skip duplicate vote to reduce gas used (#293)Wei-Ning Huang2019-03-211-27/+45
|
* consensus: dexcon: disqualify dead node (#280)Wei-Ning Huang2019-03-201-1/+1
| | | | | | | | | | Since a qualified node might fail stopped, we need to remove them from qualified nodes to maintain network integrity. We do this by inspect the previous round to see if there are dead nodes. A dead node is a notary set node that does not propose any block in the previous round. We disqualify them by fining them so their staked value is 1 wei below minStake. This make them unqualified for being notary set in the follow on rounds.
* dex: implement recovery mechanism (#258)Wei-Ning Huang2019-03-171-0/+484
* dex: implement recovery mechanism The DEXON recovery protocol allows us to use the Ethereum blockchain as a fallback consensus chain to coordinate recovery. * fix