diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-19 14:36:36 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:57 +0800 |
commit | ac723d97631fa5abc66c30ad4d8143b24715af2b (patch) | |
tree | eb830882a9fbdfac3b97440ef9f574fb059c9f34 /params | |
parent | eaa4b42c9fbb7582a1cdd476b8152a952edbb320 (diff) | |
download | dexon-ac723d97631fa5abc66c30ad4d8143b24715af2b.tar dexon-ac723d97631fa5abc66c30ad4d8143b24715af2b.tar.gz dexon-ac723d97631fa5abc66c30ad4d8143b24715af2b.tar.bz2 dexon-ac723d97631fa5abc66c30ad4d8143b24715af2b.tar.lz dexon-ac723d97631fa5abc66c30ad4d8143b24715af2b.tar.xz dexon-ac723d97631fa5abc66c30ad4d8143b24715af2b.tar.zst dexon-ac723d97631fa5abc66c30ad4d8143b24715af2b.zip |
governance: implement delegate/undelegate function and add tests (#33)
Implement delegate/undelegate function to allow others to delegate it's
fund to stake on a node. Also added governance contract tests.
Diffstat (limited to 'params')
-rw-r--r-- | params/config.go | 6 | ||||
-rw-r--r-- | params/gen_dexcon_config.go | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/params/config.go b/params/config.go index 4b76d0f11..f860082ee 100644 --- a/params/config.go +++ b/params/config.go @@ -54,7 +54,7 @@ var ( LambdaBA: 250, LambdaDKG: 2500, K: 0, - PhiRatio: 667000, + PhiRatio: 0.667, NotarySetSize: 4, DKGSetSize: 4, RoundInterval: 600000, @@ -93,7 +93,7 @@ var ( LambdaBA: 250, LambdaDKG: 2500, K: 0, - PhiRatio: 667000, + PhiRatio: 0.667, NotarySetSize: 4, DKGSetSize: 4, RoundInterval: 600000, @@ -202,7 +202,7 @@ type DexconConfig struct { NumChains uint32 `json:"numChains"` LambdaBA uint64 `json:"lambdaBA"` LambdaDKG uint64 `json:"lambdaDKG"` - K int `json:"k"` + K uint32 `json:"k"` PhiRatio float32 `json:"phiRatio"` NotarySetSize uint32 `json:"notarySetSize"` DKGSetSize uint32 `json:"dkgSetSize"` diff --git a/params/gen_dexcon_config.go b/params/gen_dexcon_config.go index 6633b38f3..9cd9395cc 100644 --- a/params/gen_dexcon_config.go +++ b/params/gen_dexcon_config.go @@ -23,7 +23,7 @@ func (d DexconConfig) MarshalJSON() ([]byte, error) { NumChains uint32 `json:"numChains"` LambdaBA uint64 `json:"lambdaBA"` LambdaDKG uint64 `json:"lambdaDKG"` - K int `json:"k"` + K uint32 `json:"k"` PhiRatio float32 `json:"phiRatio"` NotarySetSize uint32 `json:"notarySetSize"` DKGSetSize uint32 `json:"dkgSetSize"` @@ -59,7 +59,7 @@ func (d *DexconConfig) UnmarshalJSON(input []byte) error { NumChains *uint32 `json:"numChains"` LambdaBA *uint64 `json:"lambdaBA"` LambdaDKG *uint64 `json:"lambdaDKG"` - K *int `json:"k"` + K *uint32 `json:"k"` PhiRatio *float32 `json:"phiRatio"` NotarySetSize *uint32 `json:"notarySetSize"` DKGSetSize *uint32 `json:"dkgSetSize"` |