diff options
Diffstat (limited to 'dex/governance.go')
-rw-r--r-- | dex/governance.go | 3 |
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{}) } |