mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-02-20 22:38:11 +00:00
fix block data root type, thanks @ericsson49
This commit is contained in:
parent
a019b03ae0
commit
bc35dc410b
2
setup.py
2
setup.py
@ -228,7 +228,7 @@ PHASE1_SUNDRY_FUNCTIONS = '''
|
||||
def get_block_data_merkle_root(data: ByteList) -> Root:
|
||||
# To get the Merkle root of the block data, we need the Merkle root without the length mix-in
|
||||
# The below implements this in the Remerkleable framework
|
||||
return data.get_backing().get_left().merkle_root()
|
||||
return Root(data.get_backing().get_left().merkle_root())
|
||||
|
||||
|
||||
_get_start_shard = get_start_shard
|
||||
|
Loading…
x
Reference in New Issue
Block a user