Skip to content

Commit 39bc79b

Browse files
author
Roman
committed
fix docsctings
1 parent 4b0ff32 commit 39bc79b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

bittensor/core/async_subtensor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3995,8 +3995,8 @@ async def start_call(
39953995
wait_for_finalization: bool = False,
39963996
) -> tuple[bool, str]:
39973997
"""
3998-
Submits a `start_call` extrinsic to the blockchain, indicating that the caller wishes to begin responding
3999-
to a specific challenge on the specified subnet (`netuid`).
3998+
Submits a start_call extrinsic to the blockchain, to trigger the start call process for a subnet (used to start a
3999+
new subnet's emission mechanism).
40004000
40014001
Args:
40024002
wallet (Wallet): The wallet used to sign the extrinsic (must be unlocked).

bittensor/core/extrinsics/asyncex/start_call.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ async def start_call_extrinsic(
1616
wait_for_finalization: bool = False,
1717
) -> tuple[bool, str]:
1818
"""
19-
Submits a `start_call` extrinsic to the blockchain, indicating that the caller wishes to begin responding
20-
to a specific challenge on the specified subnet (`netuid`).
19+
Submits a start_call extrinsic to the blockchain, to trigger the start call process for a subnet (used to start a
20+
new subnet's emission mechanism).
2121
2222
Args:
2323
subtensor (Subtensor): The Subtensor client instance used for blockchain interaction.

bittensor/core/extrinsics/start_call.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ def start_call_extrinsic(
1616
wait_for_finalization: bool = False,
1717
) -> tuple[bool, str]:
1818
"""
19-
Submits a `start_call` extrinsic to the blockchain, indicating that the caller wishes to begin responding
20-
to a specific challenge on the specified subnet (`netuid`).
19+
Submits a start_call extrinsic to the blockchain, to trigger the start call process for a subnet (used to start a
20+
new subnet's emission mechanism).
2121
2222
Args:
2323
subtensor (Subtensor): The Subtensor client instance used for blockchain interaction.

bittensor/core/subtensor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3261,8 +3261,8 @@ def start_call(
32613261
wait_for_finalization: bool = False,
32623262
) -> tuple[bool, str]:
32633263
"""
3264-
Submits a `start_call` extrinsic to the blockchain, indicating that the caller wishes to begin responding
3265-
to a specific challenge on the specified subnet (`netuid`).
3264+
Submits a start_call extrinsic to the blockchain, to trigger the start call process for a subnet (used to start a
3265+
new subnet's emission mechanism).
32663266
32673267
Args:
32683268
wallet (Wallet): The wallet used to sign the extrinsic (must be unlocked).

0 commit comments

Comments
 (0)