You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mev-inspect-py is unable to process any blocks since the merge. The reason seems to be that the 'miner' of each block is determined by looking for a trace of type reward. Presumably since there is no block subsidy post-merge, there are no longer any traces of this type.
Accordingly _get_miner_address_from_traces returns None and so create_block_from_number fails.
This could be easily fixed by getting the 'miner' from w3.eth.get_block(block_number), which returns the fee recipient for post-merge blocks.
The text was updated successfully, but these errors were encountered:
mev-inspect-py is unable to process any blocks since the merge. The reason seems to be that the 'miner' of each block is determined by looking for a trace of type
reward
. Presumably since there is no block subsidy post-merge, there are no longer any traces of this type.Accordingly
_get_miner_address_from_traces
returnsNone
and socreate_block_from_number
fails.This could be easily fixed by getting the 'miner' from
w3.eth.get_block(block_number)
, which returns the fee recipient for post-merge blocks.The text was updated successfully, but these errors were encountered: