diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-10-19 16:31:44 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 3af359c1680a260bac6729bcc6c5a85ded247109 (patch) | |
tree | b9a15cefad13e6b52db5daeabaa0a608ce2a076e /params/gen_dexcon_config.go | |
parent | b69f7b9987d0e373c34a1bf7bfd7fa93e1dc5b88 (diff) | |
download | dexon-3af359c1680a260bac6729bcc6c5a85ded247109.tar dexon-3af359c1680a260bac6729bcc6c5a85ded247109.tar.gz dexon-3af359c1680a260bac6729bcc6c5a85ded247109.tar.bz2 dexon-3af359c1680a260bac6729bcc6c5a85ded247109.tar.lz dexon-3af359c1680a260bac6729bcc6c5a85ded247109.tar.xz dexon-3af359c1680a260bac6729bcc6c5a85ded247109.tar.zst dexon-3af359c1680a260bac6729bcc6c5a85ded247109.zip |
core: vm: add blockReward to governance
Diffstat (limited to 'params/gen_dexcon_config.go')
-rw-r--r-- | params/gen_dexcon_config.go | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/params/gen_dexcon_config.go b/params/gen_dexcon_config.go index e53560e47..f81951140 100644 --- a/params/gen_dexcon_config.go +++ b/params/gen_dexcon_config.go @@ -15,8 +15,9 @@ var _ = (*dexconConfigSpecMarshaling)(nil) // MarshalJSON marshals as JSON. func (d DexconConfig) MarshalJSON() ([]byte, error) { type DexconConfig struct { - Owner common.Address `json:"owner"` GenesisCRSText string `json:"genesisCRSText"` + Owner common.Address `json:"owner"` + BlockReward *math.HexOrDecimal256 `json:"blockReward"` NumChains uint32 `json:"numChains"` LambdaBA uint64 `json:"lambdaBA"` LambdaDKG uint64 `json:"lambdaDKG"` @@ -27,11 +28,11 @@ func (d DexconConfig) MarshalJSON() ([]byte, error) { RoundInterval uint64 `json:"roundInterval"` MinBlockInterval uint64 `json:"minBlockInterval"` MaxBlockInterval uint64 `json:"maxBlockInterval"` - BlockReward *math.HexOrDecimal256 `json:"blockReward"` } var enc DexconConfig - enc.Owner = d.Owner enc.GenesisCRSText = d.GenesisCRSText + enc.Owner = d.Owner + enc.BlockReward = (*math.HexOrDecimal256)(d.BlockReward) enc.NumChains = d.NumChains enc.LambdaBA = d.LambdaBA enc.LambdaDKG = d.LambdaDKG @@ -42,15 +43,15 @@ func (d DexconConfig) MarshalJSON() ([]byte, error) { enc.RoundInterval = d.RoundInterval enc.MinBlockInterval = d.MinBlockInterval enc.MaxBlockInterval = d.MaxBlockInterval - enc.BlockReward = (*math.HexOrDecimal256)(d.BlockReward) return json.Marshal(&enc) } // UnmarshalJSON unmarshals from JSON. func (d *DexconConfig) UnmarshalJSON(input []byte) error { type DexconConfig struct { - Owner *common.Address `json:"owner"` GenesisCRSText *string `json:"genesisCRSText"` + Owner *common.Address `json:"owner"` + BlockReward *math.HexOrDecimal256 `json:"blockReward"` NumChains *uint32 `json:"numChains"` LambdaBA *uint64 `json:"lambdaBA"` LambdaDKG *uint64 `json:"lambdaDKG"` @@ -61,17 +62,19 @@ func (d *DexconConfig) UnmarshalJSON(input []byte) error { RoundInterval *uint64 `json:"roundInterval"` MinBlockInterval *uint64 `json:"minBlockInterval"` MaxBlockInterval *uint64 `json:"maxBlockInterval"` - BlockReward *math.HexOrDecimal256 `json:"blockReward"` } var dec DexconConfig if err := json.Unmarshal(input, &dec); err != nil { return err } + if dec.GenesisCRSText != nil { + d.GenesisCRSText = *dec.GenesisCRSText + } if dec.Owner != nil { d.Owner = *dec.Owner } - if dec.GenesisCRSText != nil { - d.GenesisCRSText = *dec.GenesisCRSText + if dec.BlockReward != nil { + d.BlockReward = (*big.Int)(dec.BlockReward) } if dec.NumChains != nil { d.NumChains = *dec.NumChains @@ -103,8 +106,5 @@ func (d *DexconConfig) UnmarshalJSON(input []byte) error { if dec.MaxBlockInterval != nil { d.MaxBlockInterval = *dec.MaxBlockInterval } - if dec.BlockReward != nil { - d.BlockReward = (*big.Int)(dec.BlockReward) - } return nil } |