Skip to content

Commit

Permalink
Fixed API path
Browse files Browse the repository at this point in the history
  • Loading branch information
SChernykh committed Apr 14, 2023
1 parent 6ef166b commit 80352f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose/statistics/app/p2pool_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def render():
pool_stats = json.loads(reader.read())
with open("/data/network/stats", "r") as reader:
network_stats = json.loads(reader.read())
with open("/data/local/stats", "r") as reader:
with open("/data/local/stratum", "r") as reader:
local_stats = json.loads(reader.read())
return render_template(
"index.html",
Expand Down

0 comments on commit 80352f6

Please sign in to comment.