aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/gen_receipt_json.go
blob: eb2e5d42b4210f1fdc4ce20dfbdb36285da68d39 (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
// Code 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 (r Receipt) MarshalJSON() ([]byte, error) {
    type Receipt struct {
        PostState         hexutil.Bytes  `json:"root"`
        CumulativeGasUsed *hexutil.Big   `json:"cumulativeGasUsed" gencodec:"required"`
        Bloom             Bloom          `json:"logsBloom"         gencodec:"required"`
        Logs              []*Log         `json:"logs"              gencodec:"required"`
        TxHash            common.Hash    `json:"transactionHash" gencodec:"required"`
        ContractAddress   common.Address `json:"contractAddress"`
        GasUsed           *hexutil.Big   `json:"gasUsed" gencodec:"required"`
    }
    var enc Receipt
    enc.PostState = r.PostState
    enc.CumulativeGasUsed = (*hexutil.Big)(r.CumulativeGasUsed)
    enc.Bloom = r.Bloom
    enc.Logs = r.Logs
    enc.TxHash = r.TxHash
    enc.ContractAddress = r.ContractAddress
    enc.GasUsed = (*hexutil.Big)(r.GasUsed)
    return json.Marshal(&enc)
}

func (r *Receipt) UnmarshalJSON(input []byte) error {
    type Receipt struct {
        PostState         hexutil.Bytes   `json:"root"`
        CumulativeGasUsed *hexutil.Big    `json:"cumulativeGasUsed" gencodec:"required"`
        Bloom             *Bloom          `json:"logsBloom"         gencodec:"required"`
        Logs              []*Log          `json:"logs"              gencodec:"required"`
        TxHash            *common.Hash    `json:"transactionHash" gencodec:"required"`
        ContractAddress   *common.Address `json:"contractAddress"`
        GasUsed           *hexutil.Big    `json:"gasUsed" gencodec:"required"`
    }
    var dec Receipt
    if err := json.Unmarshal(input, &dec); err != nil {
        return err
    }
    if dec.PostState != nil {
        r.PostState = dec.PostState
    }
    if dec.CumulativeGasUsed == nil {
        return errors.New("missing required field 'cumulativeGasUsed' for Receipt")
    }
    r.CumulativeGasUsed = (*big.Int)(dec.CumulativeGasUsed)
    if dec.Bloom == nil {
        return errors.New("missing required field 'logsBloom' for Receipt")
    }
    r.Bloom = *dec.Bloom
    if dec.Logs == nil {
        return errors.New("missing required field 'logs' for Receipt")
    }
    r.Logs = dec.Logs
    if dec.TxHash == nil {
        return errors.New("missing required field 'transactionHash' for Receipt")
    }
    r.TxHash = *dec.TxHash
    if dec.ContractAddress != nil {
        r.ContractAddress = *dec.ContractAddress
    }
    if dec.GasUsed == nil {
        return errors.New("missing required field 'gasUsed' for Receipt")
    }
    r.GasUsed = (*big.Int)(dec.GasUsed)
    return nil
}