We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e2f098 commit b028bc4Copy full SHA for b028bc4
tests/e2e_tests/utils/e2e_test_utils.py
@@ -274,13 +274,14 @@ async def async_wait_to_start_call(
274
if await subtensor.is_fast_blocks() is False:
275
in_blocks = 5
276
277
+ current_block = await subtensor.block
278
+
279
bittensor.logging.console.info(
280
f"Waiting for [blue]{in_blocks}[/blue] blocks before [red]start call[/red]. "
- f"Current block: [blue]{await subtensor.block}[/blue]."
281
+ f"Current block: [blue]{current_block}[/blue]."
282
)
283
284
# make sure we passed start_call limit
- current_block = await subtensor.block
285
await subtensor.wait_for_block(current_block + in_blocks + 1)
286
status, message = await subtensor.start_call(
287
wallet=subnet_owner_wallet,
0 commit comments