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

package core

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

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

func (g *GenesisAccount) MarshalJSON() ([]byte, error) {
    type GenesisAccountJSON struct {
        Code    hexutil.Bytes               `json:"code" optional:"true"`
        Storage map[common.Hash]common.Hash `json:"storage" optional:"true"`
        Balance *math.HexOrDecimal256       `json:"balance"`
        Nonce   *math.HexOrDecimal64        `json:"nonce" optional:"true"`
    }
    var enc GenesisAccountJSON
    if g.Code != nil {
        enc.Code = g.Code
    }
    if g.Storage != nil {
        enc.Storage = g.Storage
    }
    enc.Balance = (*math.HexOrDecimal256)(g.Balance)
    enc.Nonce = (*math.HexOrDecimal64)(&g.Nonce)
    return json.Marshal(&enc)
}

func (g *GenesisAccount) UnmarshalJSON(input []byte) error {
    type GenesisAccountJSON struct {
        Code    hexutil.Bytes               `json:"code" optional:"true"`
        Storage map[common.Hash]common.Hash `json:"storage" optional:"true"`
        Balance *math.HexOrDecimal256       `json:"balance"`
        Nonce   *math.HexOrDecimal64        `json:"nonce" optional:"true"`
    }
    var dec GenesisAccountJSON
    if err := json.Unmarshal(input, &dec); err != nil {
        return err
    }
    var x GenesisAccount
    if dec.Code != nil {
        x.Code = dec.Code
    }
    if dec.Storage != nil {
        x.Storage = dec.Storage
    }
    if dec.Balance == nil {
        return errors.New("missing required field 'balance' for GenesisAccount")
    }
    x.Balance = (*big.Int)(dec.Balance)
    if dec.Nonce != nil {
        x.Nonce = uint64(*dec.Nonce)
    }
    *g = x
    return nil
}