mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-10 04:15:54 +00:00
9 lines
329 B
Nim
9 lines
329 B
Nim
import unittest, ../nimbus/[genesis, config], eth/common, nimcrypto/hash
|
|
|
|
proc genesisMain*() =
|
|
suite "Genesis":
|
|
test "Correct mainnet hash":
|
|
let g = defaultGenesisBlockForNetwork(MainNet)
|
|
let b = g.toBlock
|
|
check(b.blockHash == "D4E56740F876AEF8C010B86A40D5F56745A118D0906A34E69AEC8C0DB1CB8FA3".toDigest)
|