mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-28 03:15:17 +00:00
7 lines
112 B
Python
7 lines
112 B
Python
|
from eth_typing import Hash32
|
||
|
from eth_utils import keccak
|
||
|
|
||
|
|
||
|
def hash(x: bytes) -> Hash32:
|
||
|
return keccak(x)
|