mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-10 18:55:38 +00:00
7 lines
132 B
Python
7 lines
132 B
Python
from hashlib import sha256
|
|
# from eth_utils import keccak
|
|
|
|
|
|
def hash(x): return sha256(x).digest()
|
|
# def hash(x): return keccak(x)
|