Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tests/e2e_tests/utils/e2e_test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,13 +274,14 @@ async def async_wait_to_start_call(
if await subtensor.is_fast_blocks() is False:
in_blocks = 5

current_block = await subtensor.block

bittensor.logging.console.info(
f"Waiting for [blue]{in_blocks}[/blue] blocks before [red]start call[/red]. "
f"Current block: [blue]{subtensor.block}[/blue]."
f"Current block: [blue]{current_block}[/blue]."
)

# make sure we passed start_call limit
current_block = await subtensor.block
await subtensor.wait_for_block(current_block + in_blocks + 1)
status, message = await subtensor.start_call(
wallet=subnet_owner_wallet,
Expand Down