Official Go implementation of the Ethereum protocol
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.
|
|
|
// Code generated by github.com/fjl/gencodec. DO NOT EDIT.
|
|
|
|
|
|
|
|
package native
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"math/big"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = (*accountMarshaling)(nil)
|
|
|
|
|
|
|
|
// MarshalJSON marshals as JSON.
|
|
|
|
func (a account) MarshalJSON() ([]byte, error) {
|
|
|
|
type account struct {
|
|
|
|
Balance *hexutil.Big `json:"balance,omitempty"`
|
|
|
|
Code hexutil.Bytes `json:"code,omitempty"`
|
|
|
|
Nonce uint64 `json:"nonce,omitempty"`
|
|
|
|
Storage map[common.Hash]common.Hash `json:"storage,omitempty"`
|
|
|
|
}
|
|
|
|
var enc account
|
|
|
|
enc.Balance = (*hexutil.Big)(a.Balance)
|
|
|
|
enc.Code = a.Code
|
|
|
|
enc.Nonce = a.Nonce
|
|
|
|
enc.Storage = a.Storage
|
|
|
|
return json.Marshal(&enc)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalJSON unmarshals from JSON.
|
|
|
|
func (a *account) UnmarshalJSON(input []byte) error {
|
|
|
|
type account struct {
|
|
|
|
Balance *hexutil.Big `json:"balance,omitempty"`
|
|
|
|
Code *hexutil.Bytes `json:"code,omitempty"`
|
|
|
|
Nonce *uint64 `json:"nonce,omitempty"`
|
|
|
|
Storage map[common.Hash]common.Hash `json:"storage,omitempty"`
|
|
|
|
}
|
|
|
|
var dec account
|
|
|
|
if err := json.Unmarshal(input, &dec); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if dec.Balance != nil {
|
|
|
|
a.Balance = (*big.Int)(dec.Balance)
|
|
|
|
}
|
|
|
|
if dec.Code != nil {
|
|
|
|
a.Code = *dec.Code
|
|
|
|
}
|
|
|
|
if dec.Nonce != nil {
|
|
|
|
a.Nonce = *dec.Nonce
|
|
|
|
}
|
|
|
|
if dec.Storage != nil {
|
|
|
|
a.Storage = dec.Storage
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|