[Ethereum] Ethereum private blockchain, Gas Limit

gasprivate-blockchain

If I change the gaslimit in my genesis file does the network import the old blocks or only the new blocks? if it's yes how can I do it without modifying the genesis block ? I want to make the gaslimit higher without losting the old blocks

Best Answer

Don't change the genesis file, as it changes the dynamics of the blockchain. Geth 1.4 (develop branch) has a --targetgaslimit flag that will cause the miner to converge towards a specific number opposed to the hard coded value. 1.4 RC1 should be released this week if you don't want to use develop itself.

Related Topic