aboutsummaryrefslogtreecommitdiffstats
path: root/dex/downloader
Commit message (Collapse)AuthorAgeFilesLines
* dex: replace total difficulty with block number (#73)Sonic2019-06-124-87/+67
| | | | | | | In dexon, we don't "mine" and the blockchain won't and shouldn't fork, so there is no difficulty concept, just replace it with block number. Note: this commit only replace total difficulty related logic and code in dex, dex/downloader package.
* Fix lintWei-Ning Huang2019-06-122-8/+8
|
* dex/downloader: fix testsSonic2019-06-122-242/+114
|
* core, dex, downloader: refactor governanceSonic2019-06-121-109/+33
|
* core, dex, dex/downloader: restore insertChain to upstream versionSonic2019-06-121-6/+6
| | | | | Also rename InsertChain2, insertChain2, InsertHeaderChain2, ValidateHeaderChain2
* dex: implement downloader for dexSonic2019-06-127-72/+391
| | | | | | | | | | | We need governance state to verify block's signature (randomness), but in ethereum fast sync mode, eth downloader only downloads the whole state of pivot block, so we don't have governance state to verify the downloaded block that is before pivot block if we don't processing transaction. To avoid running transactions, dex downloader also downloads the governance state (merkle proof and storage) at snapshot height of each round, so that we can verify blocks in fast sync mode.
* dex: copy fetcher and downloader from ethSonic2019-06-1212-0/+5871