mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-02-02 06:15:15 -05:00
5 lines
68 B
Python
5 lines
68 B
Python
from hashlib import sha256
|
|
|
|
|
|
def hash(x): return sha256(x).digest()
|