We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1814ecf commit 1dac561Copy full SHA for 1dac561
app/config/nodes.json
@@ -1,8 +1,8 @@
1
{
2
"nodes": [
3
- "https://bitcoin.atomicwallet.io/api/v2",
4
- "https://btcbook.guarda.co/api/v2",
5
- "https://btc1.trezor.io/api/v2"
+ "https://bitcoin.atomicwallet.io/api/v2/",
+ "https://btcbook.guarda.co/api/v2/",
+ "https://btc1.trezor.io/api/v2/"
6
],
7
"query": {
8
"address": "address/",
run.py
@@ -17,7 +17,7 @@ async def start_websocket():
17
asyncio.run(start_websocket())
18
19
if __name__ == '__main__':
20
- # Start WebSocket connection in a separate thread
+ # Start a WebSocket connection in a separate thread
21
websocket_thread = threading.Thread(target=run_websocket, daemon=True)
22
websocket_thread.start()
23
0 commit comments