Skip to content

Commit 1dac561

Browse files
committed
Add trailing slashes to node URLs and update comment
Appended trailing slashes to all node URLs in nodes.json for consistency. Also updated a comment in run.py for clarity.
1 parent 1814ecf commit 1dac561

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/config/nodes.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"nodes": [
3-
"https://bitcoin.atomicwallet.io/api/v2",
4-
"https://btcbook.guarda.co/api/v2",
5-
"https://btc1.trezor.io/api/v2"
3+
"https://bitcoin.atomicwallet.io/api/v2/",
4+
"https://btcbook.guarda.co/api/v2/",
5+
"https://btc1.trezor.io/api/v2/"
66
],
77
"query": {
88
"address": "address/",

run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async def start_websocket():
1717
asyncio.run(start_websocket())
1818

1919
if __name__ == '__main__':
20-
# Start WebSocket connection in a separate thread
20+
# Start a WebSocket connection in a separate thread
2121
websocket_thread = threading.Thread(target=run_websocket, daemon=True)
2222
websocket_thread.start()
2323

0 commit comments

Comments
 (0)