Make `block_number` configurable in genesis header again
fselmo opened this issue · 4 comments
What is wrong?
- After London changes, certain genesis header params became unconfigurable. Introduce back the ability to configure
block_number
. See eth-tester issue #225.
How can it be fixed
-
fill_header_params_from_parent()
needs the ability to pass in ablock_number
kwarg to be configurable again. This call is made from the create_header_from_parent() method in the header classes. -
block_number
should be a parameter in the fill_header_params_from_parent() method that can be configured but should still keep the current default toGENESIS_BLOCK_NUMBER
if the parent is None or to the parentblock_number
+ 1 if the parent exists.
At a quick glance I believe this is the only change necessary. Testing should be added as well.
Only question here is whether or not we should be passing the parent_hash
too when block_number
is specified. Is this correct?
@catoenm I'd be curious to hear your use-case for this change. It would be strange to me to provide a block_number
and have a parent OR not assume the parent is the genesis header. And in that case we don't need to provide the parent hash.
In other words... if the header to be configured has a parent, then the block_number
shouldn't be configurable; it should be parent.block_number + 1
. If the header to be configured does not have a parent, then it should be assumed to be genesis.
In this sense something like this might make the most sense ? :
if parent is None:
parent_hash = GENESIS_PARENT_HASH
block_number = block_number if block_number else GENESIS_BLOCK_NUMBER
if state_root is None:
state_root = BLANK_ROOT_HASH
else:
parent_hash = parent.hash
if block_number:
raise PyEVMError("block_number cannot be configured if a parent header exists.")
block_number = BlockNumber(parent.block_number + 1)
if state_root is None:
state_root = parent.state_root
Let me know if I'm missing anything. @Pet3ris I'd be curious on your input here and use-case as well.
edit: This validation also makes sense to me considering the original issue and the validation already in place, as outlined in this comment: ethereum/eth-tester#225 (comment)