Skip to content

Commit 795b29e

Browse files
committed
fix ci
1 parent 66631f9 commit 795b29e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chia/_tests/util/full_sync.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import zstd
1515
from chia_rs import FullBlock
1616
from chia_rs.sized_bytes import bytes32
17-
from chia_rs.sized_ints import uint16
17+
from chia_rs.sized_ints import uint16, uint32
1818

1919
from chia._tests.util.constants import test_constants as TEST_CONSTANTS
2020
from chia.cmds.init_funcs import chia_init
@@ -143,7 +143,7 @@ async def run_sync_test(
143143

144144
if test_constants:
145145
# this allows all blocks have compressed generators
146-
constants = TEST_CONSTANTS.replace(HARD_FORK_HEIGHT=0)
146+
constants = TEST_CONSTANTS.replace(HARD_FORK_HEIGHT=uint32(0))
147147
else:
148148
overrides = config["network_overrides"]["constants"][config["selected_network"]]
149149
constants = replace_str_to_bytes(DEFAULT_CONSTANTS, **overrides)

0 commit comments

Comments
 (0)