Skip to content

Commit

Permalink
Update show-tps.py
Browse files Browse the repository at this point in the history
  • Loading branch information
0g-wh authored Dec 12, 2024
1 parent f1b0e78 commit 45ced9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion show-tps.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def getTPS(url):
if tps is None or gas_used is None:
row.append("")
else:
row.append(f"{tps:4}, {gas_used:.2f}%")
row.append(f"{tps:4}")
table.add_row(row)

markdown_table = "| " + " | ".join(table.field_names) + " |\n"
Expand Down

0 comments on commit 45ced9e

Please sign in to comment.