- Remove dev/scripts/check-file-organization.sh (obsolete organization checker) - Remove dev/scripts/community_onboarding.py (unused 559-line automation script) - Update gpu_miner_host.py log path from /home/oib/windsurf/aitbc to /opt/aitbc - Add service status and standardization badges to README.md
8 lines
264 B
Python
8 lines
264 B
Python
with open("/home/oib/windsurf/aitbc/test_multi_chain.py", "r") as f:
|
|
content = f.read()
|
|
|
|
content = content.replace("127.0.0.1:8181/rpc/health", "127.0.0.1:8181/health")
|
|
|
|
with open("/home/oib/windsurf/aitbc/test_multi_chain.py", "w") as f:
|
|
f.write(content)
|