aboutsummaryrefslogtreecommitdiffstats
path: root/dex
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-11-03 15:28:45 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:27:17 +0800
commit43b14136118d600f14a4ae706557fa14401047d2 (patch)
tree9595f648b2b369913d828023b458c152c7e76d33 /dex
parentd7f599a14d89e7ce1e9f2ab44a01e0d63c428f26 (diff)
downloadgo-tangerine-43b14136118d600f14a4ae706557fa14401047d2.tar
go-tangerine-43b14136118d600f14a4ae706557fa14401047d2.tar.gz
go-tangerine-43b14136118d600f14a4ae706557fa14401047d2.tar.bz2
go-tangerine-43b14136118d600f14a4ae706557fa14401047d2.tar.lz
go-tangerine-43b14136118d600f14a4ae706557fa14401047d2.tar.xz
go-tangerine-43b14136118d600f14a4ae706557fa14401047d2.tar.zst
go-tangerine-43b14136118d600f14a4ae706557fa14401047d2.zip
test: start a separate RPC node for testing block sync
Diffstat (limited to 'dex')
-rw-r--r--dex/backend.go11
-rw-r--r--dex/handler.go4
2 files changed, 5 insertions, 10 deletions
diff --git a/dex/backend.go b/dex/backend.go
index 3a50eb649..74aea8325 100644
--- a/dex/backend.go
+++ b/dex/backend.go
@@ -249,12 +249,6 @@ func (s *Dexon) Start(srvr *p2p.Server) error {
// Start the networking layer and the light server if requested
s.protocolManager.Start(srvr, maxPeers)
s.protocolManager.addSelfMeta()
-
- go func() {
- time.Sleep(10 * time.Second)
- // TODO: Run with the latest confirmed block in compaction chain.
- s.consensus.Run(&coreTypes.Block{})
- }()
return nil
}
@@ -263,9 +257,8 @@ func (s *Dexon) Stop() error {
}
func (s *Dexon) StartProposing() error {
- // TODO(sonic):
- // enable dispatch vote, agreement result, finalization result.. msg to consensus core.
- log.Debug("###############start proposing")
+ // TODO: Run with the latest confirmed block in compaction chain.
+ s.consensus.Run(&coreTypes.Block{})
return nil
}
diff --git a/dex/handler.go b/dex/handler.go
index 68c682eda..00d2fb78c 100644
--- a/dex/handler.go
+++ b/dex/handler.go
@@ -1046,7 +1046,9 @@ func (pm *ProtocolManager) peerSetLoop() {
for {
select {
- case <-pm.chainHeadCh:
+ case event := <-pm.chainHeadCh:
+ pm.BroadcastBlock(event.Block, true)
+
newRound := pm.gov.LenCRS() - 1
log.Trace("new round", "round", newRound)
if newRound == round {