diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-02 13:25:24 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 18:55:22 +0800 |
commit | 60c6a02ebd2e95b39b388c5ff5c37df8fe4babcd (patch) | |
tree | 16f687f6af1434834affd03c4537e698e45d26aa /dex | |
parent | 4b0f4f9ad181a870bd3087ea7b1a805b384a529c (diff) | |
download | dexon-60c6a02ebd2e95b39b388c5ff5c37df8fe4babcd.tar dexon-60c6a02ebd2e95b39b388c5ff5c37df8fe4babcd.tar.gz dexon-60c6a02ebd2e95b39b388c5ff5c37df8fe4babcd.tar.bz2 dexon-60c6a02ebd2e95b39b388c5ff5c37df8fe4babcd.tar.lz dexon-60c6a02ebd2e95b39b388c5ff5c37df8fe4babcd.tar.xz dexon-60c6a02ebd2e95b39b388c5ff5c37df8fe4babcd.tar.zst dexon-60c6a02ebd2e95b39b388c5ff5c37df8fe4babcd.zip |
core: vm: add governance contract skeleton
Diffstat (limited to 'dex')
-rw-r--r-- | dex/governance.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/dex/governance.go b/dex/governance.go index 44df77361..95109690a 100644 --- a/dex/governance.go +++ b/dex/governance.go @@ -15,13 +15,13 @@ func NewDexconGovernance() *DexconGovernance { return &DexconGovernance{} } -// GetConfiguration return the total ordering K constant. -func (d *DexconGovernance) GetConfiguration(round uint64) *types.Config { +// Configuration return the total ordering K constant. +func (d *DexconGovernance) Configuration(round uint64) *types.Config { return &types.Config{} } -// GetCRS returns the CRS for a given round. -func (d *DexconGovernance) GetCRS(round uint64) coreCommon.Hash { +// CRS returns the CRS for a given round. +func (d *DexconGovernance) CRS(round uint64) coreCommon.Hash { return coreCommon.Hash{} } @@ -29,8 +29,8 @@ func (d *DexconGovernance) GetCRS(round uint64) coreCommon.Hash { func (d *DexconGovernance) ProposeCRS(round uint64, signedCRS []byte) { } -// GetValidatorSet returns the current notary set. -func (d *DexconGovernance) GetNodeSet(round uint64) []crypto.PublicKey { +// NodeSet returns the current notary set. +func (d *DexconGovernance) NodeSet(round uint64) []crypto.PublicKey { return nil } @@ -38,7 +38,7 @@ func (d *DexconGovernance) GetNodeSet(round uint64) []crypto.PublicKey { func (d *DexconGovernance) AddDKGComplaint(complaint *types.DKGComplaint) { } -// GetDKGComplaints gets all the DKGComplaints of round. +// DKGComplaints gets all the DKGComplaints of round. func (d *DexconGovernance) DKGComplaints(round uint64) []*types.DKGComplaint { return nil } |