aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/gen_header_json.go
blob: 860622e6eb17de64191b2c2e01b0e877978acb51 (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
// generated by github.com/fjl/gencodec, do not edit.

package types

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

    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/common/hexutil"
)

func (h *Header) MarshalJSON() ([]byte, error) {
    type HeaderJSON struct {
        ParentHash  *common.Hash    `json:"parentHash"`
        UncleHash   *common.Hash    `json:"sha3Uncles"`
        Coinbase    *common.Address `json:"miner"`
        Root        *common.Hash    `json:"stateRoot"`
        TxHash      *common.Hash    `json:"transactionsRoot"`
        ReceiptHash *common.Hash    `json:"receiptsRoot"`
        Bloom       *Bloom          `json:"logsBloom"`
        Difficulty  *hexutil.Big    `json:"difficulty"`
        Number      *hexutil.Big    `json:"number"`
        GasLimit    *hexutil.Big    `json:"gasLimit"`
        GasUsed     *hexutil.Big    `json:"gasUsed"`
        Time        *hexutil.Big    `json:"timestamp"`
        Extra       hexutil.Bytes   `json:"extraData"`
        MixDigest   *common.Hash    `json:"mixHash"`
        Nonce       *BlockNonce     `json:"nonce"`
    }
    var enc HeaderJSON
    enc.ParentHash = &h.ParentHash
    enc.UncleHash = &h.UncleHash
    enc.Coinbase = &h.Coinbase
    enc.Root = &h.Root
    enc.TxHash = &h.TxHash
    enc.ReceiptHash = &h.ReceiptHash
    enc.Bloom = &h.Bloom
    enc.Difficulty = (*hexutil.Big)(h.Difficulty)
    enc.Number = (*hexutil.Big)(h.Number)
    enc.GasLimit = (*hexutil.Big)(h.GasLimit)
    enc.GasUsed = (*hexutil.Big)(h.GasUsed)
    enc.Time = (*hexutil.Big)(h.Time)
    enc.Extra = h.Extra
    enc.MixDigest = &h.MixDigest
    enc.Nonce = &h.Nonce
    return json.Marshal(&enc)
}

func (h *Header) UnmarshalJSON(input []byte) error {
    type HeaderJSON struct {
        ParentHash  *common.Hash    `json:"parentHash"`
        UncleHash   *common.Hash    `json:"sha3Uncles"`
        Coinbase    *common.Address `json:"miner"`
        Root        *common.Hash    `json:"stateRoot"`
        TxHash      *common.Hash    `json:"transactionsRoot"`
        ReceiptHash *common.Hash    `json:"receiptsRoot"`
        Bloom       *Bloom          `json:"logsBloom"`
        Difficulty  *hexutil.Big    `json:"difficulty"`
        Number      *hexutil.Big    `json:"number"`
        GasLimit    *hexutil.Big    `json:"gasLimit"`
        GasUsed     *hexutil.Big    `json:"gasUsed"`
        Time        *hexutil.Big    `json:"timestamp"`
        Extra       hexutil.Bytes   `json:"extraData"`
        MixDigest   *common.Hash    `json:"mixHash"`
        Nonce       *BlockNonce     `json:"nonce"`
    }
    var dec HeaderJSON
    if err := json.Unmarshal(input, &dec); err != nil {
        return err
    }
    var x Header
    if dec.ParentHash == nil {
        return errors.New("missing required field 'parentHash' for Header")
    }
    x.ParentHash = *dec.ParentHash
    if dec.UncleHash == nil {
        return errors.New("missing required field 'sha3Uncles' for Header")
    }
    x.UncleHash = *dec.UncleHash
    if dec.Coinbase == nil {
        return errors.New("missing required field 'miner' for Header")
    }
    x.Coinbase = *dec.Coinbase
    if dec.Root == nil {
        return errors.New("missing required field 'stateRoot' for Header")
    }
    x.Root = *dec.Root
    if dec.TxHash == nil {
        return errors.New("missing required field 'transactionsRoot' for Header")
    }
    x.TxHash = *dec.TxHash
    if dec.ReceiptHash == nil {
        return errors.New("missing required field 'receiptsRoot' for Header")
    }
    x.ReceiptHash = *dec.ReceiptHash
    if dec.Bloom == nil {
        return errors.New("missing required field 'logsBloom' for Header")
    }
    x.Bloom = *dec.Bloom
    if dec.Difficulty == nil {
        return errors.New("missing required field 'difficulty' for Header")
    }
    x.Difficulty = (*big.Int)(dec.Difficulty)
    if dec.Number == nil {
        return errors.New("missing required field 'number' for Header")
    }
    x.Number = (*big.Int)(dec.Number)
    if dec.GasLimit == nil {
        return errors.New("missing required field 'gasLimit' for Header")
    }
    x.GasLimit = (*big.Int)(dec.GasLimit)
    if dec.GasUsed == nil {
        return errors.New("missing required field 'gasUsed' for Header")
    }
    x.GasUsed = (*big.Int)(dec.GasUsed)
    if dec.Time == nil {
        return errors.New("missing required field 'timestamp' for Header")
    }
    x.Time = (*big.Int)(dec.Time)
    if dec.Extra == nil {
        return errors.New("missing required field 'extraData' for Header")
    }
    x.Extra = dec.Extra
    if dec.MixDigest == nil {
        return errors.New("missing required field 'mixHash' for Header")
    }
    x.MixDigest = *dec.MixDigest
    if dec.Nonce == nil {
        return errors.New("missing required field 'nonce' for Header")
    }
    x.Nonce = *dec.Nonce
    *h = x
    return nil
}