Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
0g-wh committed Nov 14, 2024
2 parents 49784c6 + 291da58 commit 4a6d56f
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 * 100:.2f}%")
row.append(f"{tps:4}, {gas_used:.2f}%")
table.add_row(row)

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

0 comments on commit 4a6d56f

Please sign in to comment.