aboutsummaryrefslogtreecommitdiffstats
path: root/dex/handler.go
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2019-03-28 18:21:00 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:59 +0800
commit3cb8ea02990fe36da2498f5df736e2eb1d0f43b2 (patch)
treebafe34fe0dc4424ee830801aa336289f03d26dff /dex/handler.go
parent08c893f4942ea84ed13ecdd6058bcf39585a4566 (diff)
downloaddexon-3cb8ea02990fe36da2498f5df736e2eb1d0f43b2.tar.gz
dexon-3cb8ea02990fe36da2498f5df736e2eb1d0f43b2.tar.zst
dexon-3cb8ea02990fe36da2498f5df736e2eb1d0f43b2.zip
dex: rebuild connection if dkg reset, core/vm: fix gov (#308)
* dex: rebuild connection if dkg reset * core: vm: fix governance contract
Diffstat (limited to 'dex/handler.go')
-rw-r--r--dex/handler.go13
1 files changed, 11 insertions, 2 deletions
diff --git a/dex/handler.go b/dex/handler.go
index 8971ad500..6d0746d2f 100644
--- a/dex/handler.go
+++ b/dex/handler.go
@@ -1320,6 +1320,7 @@ func (pm *ProtocolManager) peerSetLoop() {
pm.peers.BuildConnection(CRSRound)
round = CRSRound
}
+ resetCount := uint64(0)
for {
select {
@@ -1334,9 +1335,12 @@ func (pm *ProtocolManager) peerSetLoop() {
if newRound == 0 {
break
}
+ reset := pm.gov.DKGResetCount(round)
- log.Debug("ProtocolManager: new round", "round", newRound)
- if newRound <= round {
+ log.Debug("ProtocolManager: new round",
+ "round", newRound,
+ "reset", reset)
+ if newRound <= round && resetCount == reset {
break
}
@@ -1345,6 +1349,10 @@ func (pm *ProtocolManager) peerSetLoop() {
if round >= 1 {
pm.peers.ForgetConnection(round - 1)
}
+ } else if newRound == round && resetCount+1 == reset {
+ pm.peers.ForgetConnection(newRound)
+ pm.gov.PurgeNotarySet(newRound)
+ pm.peers.BuildConnection(newRound)
} else {
// just forget all network connection and rebuild.
pm.peers.ForgetConnection(round)
@@ -1355,6 +1363,7 @@ func (pm *ProtocolManager) peerSetLoop() {
pm.peers.BuildConnection(newRound)
}
round = newRound
+ resetCount = reset
case <-pm.chainHeadSub.Err():
return
}