forked from dominant-strategies/go-quai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gen_genesis.go
118 lines (112 loc) · 5.34 KB
/
gen_genesis.go
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
// Code generated by github.com/fjl/gencodec. DO NOT EDIT.
package core
import (
"encoding/json"
"errors"
"math/big"
"github.com/spruce-solutions/go-quai/common"
"github.com/spruce-solutions/go-quai/common/hexutil"
"github.com/spruce-solutions/go-quai/common/math"
"github.com/spruce-solutions/go-quai/params"
)
var _ = (*genesisSpecMarshaling)(nil)
// MarshalJSON marshals as JSON.
func (g Genesis) MarshalJSON() ([]byte, error) {
type Genesis struct {
Config *params.ChainConfig `json:"config"`
Nonce math.HexOrDecimal64 `json:"nonce"`
Timestamp math.HexOrDecimal64 `json:"timestamp"`
ExtraData [][]byte `json:"extraData"`
GasLimit []math.HexOrDecimal64 `json:"gasLimit" gencodec:"required"`
Difficulty []*math.HexOrDecimal256 `json:"difficulty" gencodec:"required"`
Coinbase []common.Address `json:"coinbase"`
Alloc map[common.UnprefixedAddress]GenesisAccount `json:"alloc" gencodec:"required"`
Number []math.HexOrDecimal64 `json:"number"`
GasUsed []math.HexOrDecimal64 `json:"gasUsed"`
ParentHash []common.Hash `json:"parentHash"`
BaseFee []*math.HexOrDecimal256 `json:"baseFeePerGas"`
}
var enc Genesis
enc.Config = g.Config
enc.Nonce = math.HexOrDecimal64(g.Nonce)
enc.Timestamp = math.HexOrDecimal64(g.Timestamp)
enc.ExtraData = [][]byte{g.ExtraData[0], g.ExtraData[1], g.ExtraData[2]}
enc.GasLimit = []math.HexOrDecimal64{math.HexOrDecimal64(g.GasLimit[0]), math.HexOrDecimal64(g.GasLimit[1]), math.HexOrDecimal64(g.GasLimit[2])}
enc.Difficulty = []*math.HexOrDecimal256{(*math.HexOrDecimal256)(g.Difficulty[0]), (*math.HexOrDecimal256)(g.Difficulty[1]), (*math.HexOrDecimal256)(g.Difficulty[2])}
enc.Coinbase = g.Coinbase
if g.Alloc != nil {
enc.Alloc = make(map[common.UnprefixedAddress]GenesisAccount, len(g.Alloc))
for k, v := range g.Alloc {
enc.Alloc[common.UnprefixedAddress(k)] = v
}
}
enc.Number = []math.HexOrDecimal64{math.HexOrDecimal64(g.Number[0].Int64()), math.HexOrDecimal64(g.Number[1].Int64()), math.HexOrDecimal64(g.Number[3].Int64())}
enc.GasUsed = []math.HexOrDecimal64{math.HexOrDecimal64(g.GasUsed[0]), math.HexOrDecimal64(g.GasUsed[1]), math.HexOrDecimal64(g.GasUsed[2])}
enc.ParentHash = g.ParentHash
enc.BaseFee = []*math.HexOrDecimal256{(*math.HexOrDecimal256)(g.BaseFee[0]), (*math.HexOrDecimal256)(g.BaseFee[1]), (*math.HexOrDecimal256)(g.BaseFee[2])}
return json.Marshal(&enc)
}
// UnmarshalJSON unmarshals from JSON.
func (g *Genesis) UnmarshalJSON(input []byte) error {
type Genesis struct {
Config *params.ChainConfig `json:"config"`
Nonce *math.HexOrDecimal64 `json:"nonce"`
Timestamp *math.HexOrDecimal64 `json:"timestamp"`
ExtraData []*hexutil.Bytes `json:"extraData"`
GasLimit []*math.HexOrDecimal64 `json:"gasLimit" gencodec:"required"`
Difficulty []*math.HexOrDecimal256 `json:"difficulty" gencodec:"required"`
Coinbase []*common.Address `json:"coinbase"`
Alloc map[common.UnprefixedAddress]GenesisAccount `json:"alloc" gencodec:"required"`
Number []*math.HexOrDecimal64 `json:"number"`
GasUsed []*math.HexOrDecimal64 `json:"gasUsed"`
ParentHash []*common.Hash `json:"parentHash"`
BaseFee []*math.HexOrDecimal256 `json:"baseFeePerGas"`
}
var dec Genesis
if err := json.Unmarshal(input, &dec); err != nil {
return err
}
if dec.Config != nil {
g.Config = dec.Config
}
if dec.Nonce != nil {
g.Nonce = uint64(*dec.Nonce)
}
if dec.Timestamp != nil {
g.Timestamp = uint64(*dec.Timestamp)
}
if dec.ExtraData != nil {
g.ExtraData = [][]byte{*dec.ExtraData[0],*dec.ExtraData[1], *dec.ExtraData[2]}
}
if dec.GasLimit == nil {
return errors.New("missing required field 'gasLimit' for Genesis")
}
g.GasLimit = []uint64{uint64(*dec.GasLimit[0]), uint64(*dec.GasLimit[1]), uint64(*dec.GasLimit[2])}
if dec.Difficulty == nil {
return errors.New("missing required field 'difficulty' for Genesis")
}
g.Difficulty = []*big.Int{(*big.Int)(dec.Difficulty[0]), (*big.Int)(dec.Difficulty[1]), (*big.Int)(dec.Difficulty[2])}
if dec.Coinbase != nil {
g.Coinbase = []common.Address{*dec.Coinbase[0], *dec.Coinbase[1], *dec.Coinbase[2]}
}
if dec.Alloc == nil {
return errors.New("missing required field 'alloc' for Genesis")
}
g.Alloc = make(GenesisAlloc, len(dec.Alloc))
for k, v := range dec.Alloc {
g.Alloc[common.Address(k)] = v
}
if dec.Number != nil {
g.Number = []*big.Int{big.NewInt(int64(*dec.Number[0])), big.NewInt(int64(*dec.Number[1])), big.NewInt(int64(*dec.Number[2]))}
}
if dec.GasUsed != nil {
g.GasUsed = []uint64{uint64(*dec.GasUsed[0]), uint64(*dec.GasUsed[1]), uint64(*dec.GasUsed[2])}
}
if dec.ParentHash != nil {
g.ParentHash = []common.Hash{*dec.ParentHash[0], *dec.ParentHash[1], *dec.ParentHash[2]}
}
if dec.BaseFee != nil {
g.BaseFee = []*big.Int{(*big.Int)(dec.BaseFee[0]), (*big.Int)(dec.BaseFee[1]), (*big.Int)(dec.BaseFee[2])}
}
return nil
}