2017-03-27 09:52:39 +00:00
|
|
|
// Code generated by github.com/fjl/gencodec. DO NOT EDIT.
|
2017-03-02 13:03:33 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
)
|
|
|
|
|
2017-03-27 09:52:39 +00:00
|
|
|
func (g GenesisAccount) MarshalJSON() ([]byte, error) {
|
2017-03-02 13:03:33 +00:00
|
|
|
type GenesisAccountJSON struct {
|
2017-03-27 09:52:39 +00:00
|
|
|
Code hexutil.Bytes `json:"code,omitempty" optional:"true"`
|
|
|
|
Storage map[common.Hash]common.Hash `json:"storage,omitempty" optional:"true"`
|
2017-03-02 13:03:33 +00:00
|
|
|
Balance *math.HexOrDecimal256 `json:"balance"`
|
2017-03-27 09:52:39 +00:00
|
|
|
Nonce math.HexOrDecimal64 `json:"nonce,omitempty" optional:"true"`
|
2017-03-02 13:03:33 +00:00
|
|
|
}
|
|
|
|
var enc GenesisAccountJSON
|
2017-03-27 09:52:39 +00:00
|
|
|
enc.Code = g.Code
|
|
|
|
enc.Storage = g.Storage
|
2017-03-02 13:03:33 +00:00
|
|
|
enc.Balance = (*math.HexOrDecimal256)(g.Balance)
|
2017-03-27 09:52:39 +00:00
|
|
|
enc.Nonce = math.HexOrDecimal64(g.Nonce)
|
2017-03-02 13:03:33 +00:00
|
|
|
return json.Marshal(&enc)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GenesisAccount) UnmarshalJSON(input []byte) error {
|
|
|
|
type GenesisAccountJSON struct {
|
2017-03-27 09:52:39 +00:00
|
|
|
Code hexutil.Bytes `json:"code,omitempty" optional:"true"`
|
|
|
|
Storage map[common.Hash]common.Hash `json:"storage,omitempty" optional:"true"`
|
2017-03-02 13:03:33 +00:00
|
|
|
Balance *math.HexOrDecimal256 `json:"balance"`
|
2017-03-27 09:52:39 +00:00
|
|
|
Nonce *math.HexOrDecimal64 `json:"nonce,omitempty" optional:"true"`
|
2017-03-02 13:03:33 +00:00
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|