aboutsummaryrefslogtreecommitdiffstats
path: root/params/gen_dexcon_config.go
blob: 4ec55c0c9f5afe476008b096219fde2306d0ff4d (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// Code generated by github.com/fjl/gencodec. DO NOT EDIT.

package params

import (
    "encoding/json"
    "math/big"

    "github.com/dexon-foundation/dexon/common"
    "github.com/dexon-foundation/dexon/common/math"
)

var _ = (*dexconConfigSpecMarshaling)(nil)

// MarshalJSON marshals as JSON.
func (d DexconConfig) MarshalJSON() ([]byte, error) {
    type DexconConfig struct {
        GenesisCRSText   string                  `json:"genesisCRSText"`
        Owner            common.Address          `json:"owner"`
        MinStake         *math.HexOrDecimal256   `json:"minStake"`
        LockupPeriod     uint64                  `json:"lockupPeriod"`
        BlockReward      *math.HexOrDecimal256   `json:"blockReward"`
        BlockGasLimit    uint64                  `json:"blockGasLimit"`
        NumChains        uint32                  `json:"numChains"`
        LambdaBA         uint64                  `json:"lambdaBA"`
        LambdaDKG        uint64                  `json:"lambdaDKG"`
        K                uint32                  `json:"k"`
        PhiRatio         float32                 `json:"phiRatio"`
        NotarySetSize    uint32                  `json:"notarySetSize"`
        DKGSetSize       uint32                  `json:"dkgSetSize"`
        RoundInterval    uint64                  `json:"roundInterval"`
        MinBlockInterval uint64                  `json:"minBlockInterval"`
        FineValues       []*math.HexOrDecimal256 `json:"fineValues"`
    }
    var enc DexconConfig
    enc.GenesisCRSText = d.GenesisCRSText
    enc.Owner = d.Owner
    enc.MinStake = (*math.HexOrDecimal256)(d.MinStake)
    enc.LockupPeriod = d.LockupPeriod
    enc.BlockReward = (*math.HexOrDecimal256)(d.BlockReward)
    enc.BlockGasLimit = d.BlockGasLimit
    enc.NumChains = d.NumChains
    enc.LambdaBA = d.LambdaBA
    enc.LambdaDKG = d.LambdaDKG
    enc.K = d.K
    enc.PhiRatio = d.PhiRatio
    enc.NotarySetSize = d.NotarySetSize
    enc.DKGSetSize = d.DKGSetSize
    enc.RoundInterval = d.RoundInterval
    enc.MinBlockInterval = d.MinBlockInterval
    if d.FineValues != nil {
        enc.FineValues = make([]*math.HexOrDecimal256, len(d.FineValues))
        for k, v := range d.FineValues {
            enc.FineValues[k] = (*math.HexOrDecimal256)(v)
        }
    }
    return json.Marshal(&enc)
}

// UnmarshalJSON unmarshals from JSON.
func (d *DexconConfig) UnmarshalJSON(input []byte) error {
    type DexconConfig struct {
        GenesisCRSText   *string                 `json:"genesisCRSText"`
        Owner            *common.Address         `json:"owner"`
        MinStake         *math.HexOrDecimal256   `json:"minStake"`
        LockupPeriod     *uint64                 `json:"lockupPeriod"`
        BlockReward      *math.HexOrDecimal256   `json:"blockReward"`
        BlockGasLimit    *uint64                 `json:"blockGasLimit"`
        NumChains        *uint32                 `json:"numChains"`
        LambdaBA         *uint64                 `json:"lambdaBA"`
        LambdaDKG        *uint64                 `json:"lambdaDKG"`
        K                *uint32                 `json:"k"`
        PhiRatio         *float32                `json:"phiRatio"`
        NotarySetSize    *uint32                 `json:"notarySetSize"`
        DKGSetSize       *uint32                 `json:"dkgSetSize"`
        RoundInterval    *uint64                 `json:"roundInterval"`
        MinBlockInterval *uint64                 `json:"minBlockInterval"`
        FineValues       []*math.HexOrDecimal256 `json:"fineValues"`
    }
    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.MinStake != nil {
        d.MinStake = (*big.Int)(dec.MinStake)
    }
    if dec.LockupPeriod != nil {
        d.LockupPeriod = *dec.LockupPeriod
    }
    if dec.BlockReward != nil {
        d.BlockReward = (*big.Int)(dec.BlockReward)
    }
    if dec.BlockGasLimit != nil {
        d.BlockGasLimit = *dec.BlockGasLimit
    }
    if dec.NumChains != nil {
        d.NumChains = *dec.NumChains
    }
    if dec.LambdaBA != nil {
        d.LambdaBA = *dec.LambdaBA
    }
    if dec.LambdaDKG != nil {
        d.LambdaDKG = *dec.LambdaDKG
    }
    if dec.K != nil {
        d.K = *dec.K
    }
    if dec.PhiRatio != nil {
        d.PhiRatio = *dec.PhiRatio
    }
    if dec.NotarySetSize != nil {
        d.NotarySetSize = *dec.NotarySetSize
    }
    if dec.DKGSetSize != nil {
        d.DKGSetSize = *dec.DKGSetSize
    }
    if dec.RoundInterval != nil {
        d.RoundInterval = *dec.RoundInterval
    }
    if dec.MinBlockInterval != nil {
        d.MinBlockInterval = *dec.MinBlockInterval
    }
    if dec.FineValues != nil {
        d.FineValues = make([]*big.Int, len(dec.FineValues))
        for k, v := range dec.FineValues {
            d.FineValues[k] = (*big.Int)(v)
        }
    }
    return nil
}