mirror of
https://github.com/SChernykh/p2pool.git
synced 2024-12-22 19:39:22 +00:00
Fixed API path
This commit is contained in:
parent
6ef166ba33
commit
80352f6b30
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue