浏览代码

core, eth: added json tag field for proper unmarshalling

According to our own instructions the genesis config attribute should be
"config". The genesis definition in the go code, however, has a field
called `ChainConfig`. This field now has a `json:"config"` struct tag so
that the json is properly unmarshalled.

This fixes #2482
Jeffrey Wilcke 9 年之前
父节点
当前提交
c1a4dcfc87
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/genesis.go

+ 1 - 1
core/genesis.go

@@ -43,7 +43,7 @@ func WriteGenesisBlock(chainDb ethdb.Database, reader io.Reader) (*types.Block,
 	}
 
 	var genesis struct {
-		ChainConfig *ChainConfig
+		ChainConfig *ChainConfig `json:"config"`
 		Nonce       string
 		Timestamp   string
 		ParentHash  string