Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
arnetheduck committed Oct 2, 2024
1 parent 140190a commit ff970e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/common/test_eth_types.nim
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ suite "BlockHashOrNumber":
suite "Block encodings":
test "EIP-4399 prevRandao field":
var blk: BlockHeader
blk.prevRandao = testHash
blk.prevRandao = Bytes32 testHash
let res = blk.prevRandao
check testHash == res
check Bytes32(testHash) == res

test "EIP-4788 parentBeaconBlockRoot field":
let header = BlockHeader(
Expand Down

0 comments on commit ff970e8

Please sign in to comment.