mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-13 05:44:40 +00:00
8 lines
194 B
Nim
8 lines
194 B
Nim
import eth/common
|
|
|
|
template prevRandao*(h: BlockHeader | BlockHeaderRef): Hash256 =
|
|
h.mixDigest
|
|
|
|
template `prevRandao=`*(h: BlockHeader | BlockHeaderRef, hash: Hash256) =
|
|
h.mixDigest = hash
|