mirror of
https://github.com/SChernykh/p2pool.git
synced 2024-12-23 03:49:23 +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())
|
pool_stats = json.loads(reader.read())
|
||||||
with open("/data/network/stats", "r") as reader:
|
with open("/data/network/stats", "r") as reader:
|
||||||
network_stats = json.loads(reader.read())
|
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())
|
local_stats = json.loads(reader.read())
|
||||||
return render_template(
|
return render_template(
|
||||||
"index.html",
|
"index.html",
|
||||||
|
|
Loading…
Reference in a new issue