File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -99,17 +99,18 @@ type ChainConfig struct {
99
99
ChainId * big.Int `json:"chainId"` // Chain id identifies the current chain and is used for replay protection
100
100
101
101
HomesteadBlock * big.Int `json:"homesteadBlock,omitempty"` // Homestead switch block (nil = no fork, 0 = already homestead)
102
+
102
103
DAOForkBlock * big.Int `json:"daoForkBlock,omitempty"` // TheDAO hard-fork switch block (nil = no fork)
103
104
DAOForkSupport bool `json:"daoForkSupport,omitempty"` // Whether the nodes supports or opposes the DAO hard-fork
104
105
105
106
// EIP150 implements the Gas price changes (https://github.com/ethereum/EIPs/issues/150)
106
107
EIP150Block * big.Int `json:"eip150Block,omitempty"` // EIP150 HF block (nil = no fork)
107
- EIP150Hash common.Hash `json:"eip150Hash,omitempty"` // EIP150 HF hash (fast sync aid )
108
+ EIP150Hash common.Hash `json:"eip150Hash,omitempty"` // EIP150 HF hash (needed for header only clients as only gas pricing changed )
108
109
109
110
EIP155Block * big.Int `json:"eip155Block,omitempty"` // EIP155 HF block
110
111
EIP158Block * big.Int `json:"eip158Block,omitempty"` // EIP158 HF block
111
112
112
- ByzantiumBlock * big.Int `json:"byzantiumBlock,omitempty"` // Byzantium switch block (nil = no fork, 0 = alraedy on homestead )
113
+ ByzantiumBlock * big.Int `json:"byzantiumBlock,omitempty"` // Byzantium switch block (nil = no fork, 0 = already on byzantium )
113
114
114
115
// Various consensus engines
115
116
Ethash * EthashConfig `json:"ethash,omitempty"`
You can’t perform that action at this time.
0 commit comments