Queries
subnet-start-schedule
When a registered subnet can call `start_call`.
All values are block numbers: the subnet can start once the current block
reaches earliest_start_block (registration block plus the chain's delay).
Category: Subnets
Parameters
| Parameter | Type | Description |
|---|---|---|
netuid | integer | Subnet to query. |
CLI
btcli query subnet-start-schedule --netuid <integer> --jsonPython
import bittensor as sub
async with sub.Client("finney") as client:
result = await client.read("subnet_start_schedule", netuid=1)