feat: Add link for payout txs
All checks were successful
Build Docker / BuildImage (push) Successful in 51s
Check Code Quality / RuffCheck (push) Successful in 1m9s

This commit is contained in:
2026-04-04 21:13:53 +11:00
parent 74a93877b9
commit dbbba6a8eb
3 changed files with 13 additions and 3 deletions

View File

@@ -420,7 +420,7 @@ def pool_miner():
return jsonify(
{
"address": address,
"updated_at": datetime.utcnow().isoformat() + "Z",
"updated_at": datetime.now(UTC).isoformat(),
"summary": {
"matching_workers": len(matching_workers),
"hashrate": total_hashrate,
@@ -460,4 +460,4 @@ def not_found(e):
# endregion
if __name__ == "__main__":
app.run(debug=True, port=5000, host="0.0.0.0")
app.run(debug=True, port=5000, host="127.0.0.1")