aboutsummaryrefslogtreecommitdiffstats
path: root/dex/protocol.go
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2019-03-28 18:21:00 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-15 22:09:55 +0800
commit4efc1cf485200000420bd79638139eb5383641ae (patch)
treeae0069fd1b9ec056f1f4a39e4553bdd1f3c32c0f /dex/protocol.go
parentd2bfae48e7f490e803bf09579c021c7720159fc1 (diff)
downloadgo-tangerine-4efc1cf485200000420bd79638139eb5383641ae.tar
go-tangerine-4efc1cf485200000420bd79638139eb5383641ae.tar.gz
go-tangerine-4efc1cf485200000420bd79638139eb5383641ae.tar.bz2
go-tangerine-4efc1cf485200000420bd79638139eb5383641ae.tar.lz
go-tangerine-4efc1cf485200000420bd79638139eb5383641ae.tar.xz
go-tangerine-4efc1cf485200000420bd79638139eb5383641ae.tar.zst
go-tangerine-4efc1cf485200000420bd79638139eb5383641ae.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/protocol.go')
-rw-r--r--dex/protocol.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/dex/protocol.go b/dex/protocol.go
index 2bcb57506..4da64b604 100644
--- a/dex/protocol.go
+++ b/dex/protocol.go
@@ -156,6 +156,10 @@ type governance interface {
CRSRound() uint64
NotarySet(uint64) (map[string]struct{}, error)
+
+ PurgeNotarySet(uint64)
+
+ DKGResetCount(uint64) uint64
}
type dexconApp interface {