aboutsummaryrefslogtreecommitdiffstats
path: root/dex/governance.go
blob: cb696e42cba667a536e958cf2c711a399b883dd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package dex

import (
    "github.com/dexon-foundation/dexon-consensus-core/core/types"
)

type DexconGovernance struct {
}

// GetValidatorSet returns the current notary set.
func (d *DexconGovernance) GetNotarySet() map[types.ValidatorID]struct{} {
}

// GetTotalOrderingK return the total ordering K constant.
func (d *DexconGovernance) GetCCP() types.CCP {
}

// AddDKGComplaint adds a DKGComplaint.
func (d *DexconGovernance) AddDKGComplaint(complaint *types.DKGComplaint) {
}

// GetDKGComplaints gets all the DKGComplaints of round.
func (d *DexconGovernance) DKGComplaints(round uint64) []*types.DKGComplaint {
}

// AddDKGMasterPublicKey adds a DKGMasterPublicKey.
func (d *DexconGovernance) AddDKGMasterPublicKey(masterPublicKey *types.DKGMasterPublicKey) {
}

// DKGMasterPublicKeys gets all the DKGMasterPublicKey of round.
func (d *DexconGovernance) DKGMasterPublicKeys(round uint64) []*types.DKGMasterPublicKey {
}