mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.3 KiB
49 lines
1.3 KiB
// Code generated by github.com/fjl/gencodec. DO NOT EDIT.
|
|
|
|
package live
|
|
|
|
import (
|
|
"encoding/json"
|
|
"math/big"
|
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
)
|
|
|
|
var _ = (*supplyInfoIssuanceMarshaling)(nil)
|
|
|
|
// MarshalJSON marshals as JSON.
|
|
func (s supplyInfoIssuance) MarshalJSON() ([]byte, error) {
|
|
type supplyInfoIssuance struct {
|
|
GenesisAlloc *hexutil.Big `json:"genesisAlloc,omitempty"`
|
|
Reward *hexutil.Big `json:"reward,omitempty"`
|
|
Withdrawals *hexutil.Big `json:"withdrawals,omitempty"`
|
|
}
|
|
var enc supplyInfoIssuance
|
|
enc.GenesisAlloc = (*hexutil.Big)(s.GenesisAlloc)
|
|
enc.Reward = (*hexutil.Big)(s.Reward)
|
|
enc.Withdrawals = (*hexutil.Big)(s.Withdrawals)
|
|
return json.Marshal(&enc)
|
|
}
|
|
|
|
// UnmarshalJSON unmarshals from JSON.
|
|
func (s *supplyInfoIssuance) UnmarshalJSON(input []byte) error {
|
|
type supplyInfoIssuance struct {
|
|
GenesisAlloc *hexutil.Big `json:"genesisAlloc,omitempty"`
|
|
Reward *hexutil.Big `json:"reward,omitempty"`
|
|
Withdrawals *hexutil.Big `json:"withdrawals,omitempty"`
|
|
}
|
|
var dec supplyInfoIssuance
|
|
if err := json.Unmarshal(input, &dec); err != nil {
|
|
return err
|
|
}
|
|
if dec.GenesisAlloc != nil {
|
|
s.GenesisAlloc = (*big.Int)(dec.GenesisAlloc)
|
|
}
|
|
if dec.Reward != nil {
|
|
s.Reward = (*big.Int)(dec.Reward)
|
|
}
|
|
if dec.Withdrawals != nil {
|
|
s.Withdrawals = (*big.Int)(dec.Withdrawals)
|
|
}
|
|
return nil
|
|
}
|
|
|