mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-02-02 15:35:11 -05:00
8 lines
135 B
Python
8 lines
135 B
Python
# from hashlib import sha256
|
|
from eth_utils import keccak
|
|
|
|
|
|
# def hash(x): return sha256(x).digest()
|
|
def hash(x):
|
|
return keccak(x)
|