diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-03-19 16:22:55 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-13 18:11:42 +0800 |
commit | 52abd7878fc59776550c73b0e1c6746448c83c17 (patch) | |
tree | 5824ad4b21fd51b2bfb496914791d71de99dfceb /params/gen_dexcon_config.go | |
parent | 55e22571a1cd5ef5d27a29ab1b0ecfb1b78cb264 (diff) | |
download | go-tangerine-52abd7878fc59776550c73b0e1c6746448c83c17.tar go-tangerine-52abd7878fc59776550c73b0e1c6746448c83c17.tar.gz go-tangerine-52abd7878fc59776550c73b0e1c6746448c83c17.tar.bz2 go-tangerine-52abd7878fc59776550c73b0e1c6746448c83c17.tar.lz go-tangerine-52abd7878fc59776550c73b0e1c6746448c83c17.tar.xz go-tangerine-52abd7878fc59776550c73b0e1c6746448c83c17.tar.zst go-tangerine-52abd7878fc59776550c73b0e1c6746448c83c17.zip |
core: vm: automatically calculate notary set size (#276)
Diffstat (limited to 'params/gen_dexcon_config.go')
-rw-r--r-- | params/gen_dexcon_config.go | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/params/gen_dexcon_config.go b/params/gen_dexcon_config.go index 38753916a..dbceb1676 100644 --- a/params/gen_dexcon_config.go +++ b/params/gen_dexcon_config.go @@ -26,8 +26,8 @@ func (d DexconConfig) MarshalJSON() ([]byte, error) { BlockGasLimit uint64 `json:"blockGasLimit"` LambdaBA uint64 `json:"lambdaBA"` LambdaDKG uint64 `json:"lambdaDKG"` - NotarySetSize uint32 `json:"notarySetSize"` - DKGSetSize uint32 `json:"dkgSetSize"` + NotaryParamAlpha float32 `json:"notaryParamAlpha"` + NotaryParamBeta float32 `json:"notaryParamBeta"` RoundLength uint64 `json:"roundLength"` MinBlockInterval uint64 `json:"minBlockInterval"` FineValues []*math.HexOrDecimal256 `json:"fineValues"` @@ -44,8 +44,8 @@ func (d DexconConfig) MarshalJSON() ([]byte, error) { enc.BlockGasLimit = d.BlockGasLimit enc.LambdaBA = d.LambdaBA enc.LambdaDKG = d.LambdaDKG - enc.NotarySetSize = d.NotarySetSize - enc.DKGSetSize = d.DKGSetSize + enc.NotaryParamAlpha = d.NotaryParamAlpha + enc.NotaryParamBeta = d.NotaryParamBeta enc.RoundLength = d.RoundLength enc.MinBlockInterval = d.MinBlockInterval if d.FineValues != nil { @@ -71,8 +71,8 @@ func (d *DexconConfig) UnmarshalJSON(input []byte) error { BlockGasLimit *uint64 `json:"blockGasLimit"` LambdaBA *uint64 `json:"lambdaBA"` LambdaDKG *uint64 `json:"lambdaDKG"` - NotarySetSize *uint32 `json:"notarySetSize"` - DKGSetSize *uint32 `json:"dkgSetSize"` + NotaryParamAlpha *float32 `json:"notaryParamAlpha"` + NotaryParamBeta *float32 `json:"notaryParamBeta"` RoundLength *uint64 `json:"roundLength"` MinBlockInterval *uint64 `json:"minBlockInterval"` FineValues []*math.HexOrDecimal256 `json:"fineValues"` @@ -114,11 +114,11 @@ func (d *DexconConfig) UnmarshalJSON(input []byte) error { if dec.LambdaDKG != nil { d.LambdaDKG = *dec.LambdaDKG } - if dec.NotarySetSize != nil { - d.NotarySetSize = *dec.NotarySetSize + if dec.NotaryParamAlpha != nil { + d.NotaryParamAlpha = *dec.NotaryParamAlpha } - if dec.DKGSetSize != nil { - d.DKGSetSize = *dec.DKGSetSize + if dec.NotaryParamBeta != nil { + d.NotaryParamBeta = *dec.NotaryParamBeta } if dec.RoundLength != nil { d.RoundLength = *dec.RoundLength |