Skip to content

Commit 12fa33a

Browse files
committed
restore call to make_test_conds() taking cost as int
1 parent 092df0d commit 12fa33a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chia/_tests/core/mempool/test_mempool_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2442,7 +2442,7 @@ async def test_new_peak_ff_eviction(
24422442

24432443
bundle_add_info = await mempool_manager.add_spend_bundle(
24442444
bundle,
2445-
make_test_conds(spend_ids=[(singleton_spend.coin, ELIGIBLE_FOR_FF), (TEST_COIN, 0)], cost=uint64(1000000)),
2445+
make_test_conds(spend_ids=[(singleton_spend.coin, ELIGIBLE_FOR_FF), (TEST_COIN, 0)], cost=1000000),
24462446
bundle.name(),
24472447
first_added_height=uint32(1),
24482448
)
@@ -2530,7 +2530,7 @@ async def test_multiple_ff(use_optimization: bool) -> None:
25302530
(singleton_spend2.coin, ELIGIBLE_FOR_FF),
25312531
(TEST_COIN, 0),
25322532
],
2533-
cost=uint64(1000000),
2533+
cost=1000000,
25342534
),
25352535
bundle.name(),
25362536
first_added_height=uint32(1),

0 commit comments

Comments
 (0)