aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/gen_receipt_json.go
blob: 790ed65b5817a84be2fb253532284626a63f984e (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
// 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"
)

var _ = (*receiptMarshaling)(nil)

// MarshalJSON marshals as JSON.
func (r Receipt) MarshalJSON() ([]byte, error) {
    type Receipt struct {
        PostState         hexutil.Bytes  `json:"root"`
        Status            hexutil.Uint64 `json:"status"`
        CumulativeGasUsed hexutil.Uint64 `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.Uint64 `json:"gasUsed" gencodec:"required"`
        BlockHash         common.Hash    `json:"blockHash,omitempty"`
        BlockNumber       *hexutil.Big   `json:"blockNumber,omitempty"`
        TransactionIndex  hexutil.Uint   `json:"transactionIndex"`
    }
    var enc Receipt
    enc.PostState = r.PostState
    enc.Status = hexutil.Uint64(r.Status)
    enc.CumulativeGasUsed = hexutil.Uint64(r.CumulativeGasUsed)
    enc.Bloom = r.Bloom
    enc.Logs = r.Logs
    enc.TxHash = r.TxHash
    enc.ContractAddress = r.ContractAddress
    enc.GasUsed = hexutil.Uint64(r.GasUsed)
    enc.BlockHash = r.BlockHash
    enc.BlockNumber = (*hexutil.Big)(r.BlockNumber)
    enc.TransactionIndex = hexutil.Uint(r.TransactionIndex)
    return json.Marshal(&enc)
}

// UnmarshalJSON unmarshals from JSON.
func (r *Receipt) UnmarshalJSON(input []byte) error {
    type Receipt struct {
        PostState         *hexutil.Bytes  `json:"root"`
        Status            *hexutil.Uint64 `json:"status"`
        CumulativeGasUsed *hexutil.Uint64 `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.Uint64 `json:"gasUsed" gencodec:"required"`
        BlockHash         *common.Hash    `json:"blockHash,omitempty"`
        BlockNumber       *hexutil.Big    `json:"blockNumber,omitempty"`
        TransactionIndex  *hexutil.Uint   `json:"transactionIndex"`
    }
    var dec Receipt
    if err := json.Unmarshal(input, &dec); err != nil {
        return err
    }
    if dec.PostState != nil {
        r.PostState = *dec.PostState
    }
    if dec.Status != nil {
        r.Status = uint64(*dec.Status)
    }
    if dec.CumulativeGasUsed == nil {
        return errors.New("missing required field 'cumulativeGasUsed' for Receipt")
    }
    r.CumulativeGasUsed = uint64(*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 = uint64(*dec.GasUsed)
    if dec.BlockHash != nil {
        r.BlockHash = *dec.BlockHash
    }
    if dec.BlockNumber != nil {
        r.BlockNumber = (*big.Int)(dec.BlockNumber)
    }
    if dec.TransactionIndex != nil {
        r.TransactionIndex = uint(*dec.TransactionIndex)
    }
    return nil
}