aboutsummaryrefslogtreecommitdiffstats
path: root/dex/governance.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@cobinhood.com>2018-09-25 18:55:00 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:48 +0800
commit953e13b21b0aae335ef655a1907a8883f1ba7be2 (patch)
tree21e929fc76c53cd61593673368e5187d62eac2e0 /dex/governance.go
parentb05f0240d48ba0c0c3f9cb1fec948b05733f2ba3 (diff)
downloaddexon-953e13b21b0aae335ef655a1907a8883f1ba7be2.tar.gz
dexon-953e13b21b0aae335ef655a1907a8883f1ba7be2.tar.zst
dexon-953e13b21b0aae335ef655a1907a8883f1ba7be2.zip
Use dex.Config instead of eth.Config
Diffstat (limited to 'dex/governance.go')
-rw-r--r--dex/governance.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/dex/governance.go b/dex/governance.go
index 0ef0b56db..fd52a8697 100644
--- a/dex/governance.go
+++ b/dex/governance.go
@@ -14,7 +14,8 @@ func NewDexconGovernance() *DexconGovernance {
}
// GetValidatorSet returns the current notary set.
-func (d *DexconGovernance) GetNotarySet() map[types.NodeID]struct{} {
+func (d *DexconGovernance) GetNotarySet(
+ blockHeight uint64) map[types.NodeID]struct{} {
return make(map[types.NodeID]struct{})
}