aboutsummaryrefslogtreecommitdiffstats
path: root/dex/handler_test.go
Commit message (Collapse)AuthorAgeFilesLines
* dex: Add a flag to GetBlockHeadersMsg and GetBlockBodiesMsg (#188)Sonic2019-04-091-4/+4
| | | | | | | | | * dex: Add a flag to GetBlockHeadersMsg and GetBlockBodiesMsg So that we can dispatch the response msg to fetcher or downloader easily. * fixup! dex: Add a flag to GetBlockHeadersMsg and GetBlockBodiesMsg
* Fix lintWei-Ning Huang2019-04-091-4/+4
|
* dex: fix testsWei-Ning Huang2019-04-091-2/+3
|
* dex: use dex/downloader in dexSonic2019-04-091-1/+1
| | | | | To compatible with ethereum code base, make Downloader a interface in internal/ethapi
* dex: redesign p2p network topologySonic2019-04-091-0/+445
- Let p2p server support direct connection and group connection. - Introduce node meta table to maintain IP of all nodes in node set, in memory and let nodes in the network can sync this table. - Let peerSet able to manage direct connections to notary set and dkg set. The mechanism to refresh the network topology when configuration round change is not done yet.