diff options
author | Felix Lange <fjl@twurst.com> | 2017-03-27 17:52:39 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2017-03-27 19:29:01 +0800 |
commit | aa9a78e4639e8594849be3fa0f92d7f91f67d528 (patch) | |
tree | d1e84875024142fb9535c27cf6aa168c042f279a /core/genesis.go | |
parent | 7419d0c38291236ecc4e54b1a905d5cbcbe065a4 (diff) | |
download | go-tangerine-aa9a78e4639e8594849be3fa0f92d7f91f67d528.tar go-tangerine-aa9a78e4639e8594849be3fa0f92d7f91f67d528.tar.gz go-tangerine-aa9a78e4639e8594849be3fa0f92d7f91f67d528.tar.bz2 go-tangerine-aa9a78e4639e8594849be3fa0f92d7f91f67d528.tar.lz go-tangerine-aa9a78e4639e8594849be3fa0f92d7f91f67d528.tar.xz go-tangerine-aa9a78e4639e8594849be3fa0f92d7f91f67d528.tar.zst go-tangerine-aa9a78e4639e8594849be3fa0f92d7f91f67d528.zip |
core, core/types: use non-pointer receiver for Marshal* methods
Regenerated with fjl/gencodec@1a75a2161009
Also add ,omitempty to optional GenesisAccount fields.
Diffstat (limited to 'core/genesis.go')
-rw-r--r-- | core/genesis.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/genesis.go b/core/genesis.go index 08d4ae2d1..34725241e 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -58,10 +58,10 @@ type GenesisAlloc map[common.Address]GenesisAccount // GenesisAccount is an account in the state of the genesis block. type GenesisAccount struct { - Code []byte `json:"code" optional:"true"` - Storage map[common.Hash]common.Hash `json:"storage" optional:"true"` + Code []byte `json:"code,omitempty" optional:"true"` + Storage map[common.Hash]common.Hash `json:"storage,omitempty" optional:"true"` Balance *big.Int `json:"balance"` - Nonce uint64 `json:"nonce" optional:"true"` + Nonce uint64 `json:"nonce,omitempty" optional:"true"` } // field type overrides for gencodec |