You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bittensor_cli/cli.py
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6343,7 +6343,7 @@ def best_connection(
6343
6343
f"""
6344
6344
This command will give you the latency of all finney-like network in additional to any additional networks you specify via the {arg__("--network")} flag
6345
6345
6346
-
The results are two-fold. One column is the overall time to initialise a connection, send a request, and wait for the result. The second column measures single ping-pong speed once connected.
6346
+
The results are three-fold. One column is the overall time to initialise a connection, send the requests, and wait for the results. The second column measures single ping-pong speed once connected. The third makes a real world call to fetch the chain head.
6347
6347
6348
6348
EXAMPLE
6349
6349
@@ -6366,11 +6366,18 @@ def best_connection(
6366
6366
Column("Network"),
6367
6367
Column("End to End Latency", style="cyan"),
6368
6368
Column("Single Request Ping", style="cyan"),
6369
+
Column("Chain Head Request Latency", style="cyan"),
0 commit comments