Skip to content

Commit

Permalink
fix test change
Browse files Browse the repository at this point in the history
  • Loading branch information
almogdepaz committed Dec 2, 2024
1 parent ab3b645 commit f73b77e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/_tests/blockchain/test_augmented_chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ async def test_augmented_chain(default_10000_blocks: list[FullBlock]) -> None:
assert not await abc.get_block_record_from_db(blocks[i].header_hash)
peak_height = abc.get_peak_height()
assert peak_height is not None
assert uint32(i) <= peak_height
assert uint32(i) > peak_height

assert abc.height_to_hash(uint32(5)) is None
null.heights = {uint32(5): blocks[5].header_hash}
Expand Down

0 comments on commit f73b77e

Please sign in to comment.