Skip to content

Commit

Permalink
fix: use 0.0.0.0 instead of 127.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stringhandler committed Mar 6, 2024
1 parent df76ab9 commit a19699c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Processes/dan_wallet_daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,10 @@ def __init__(self, dan_wallet_id: int, indexer_jrpc_port: int, signaling_server_
super().__init__("AssetWallet", dan_wallet_id)
self.json_rpc_port = super().get_port("JRPC")
self.json_connect_address = f"{local_ip}:{self.json_rpc_port}"
self.json_listen_address = f"127.0.0.1:{self.json_rpc_port}"
self.json_listen_address = f"0.0.0.0:{self.json_rpc_port}"
self.http_port = self.get_port("HTTP")
self.http_connect_address = f"{local_ip}:{self.http_port}"
self.http_listen_address = f"127.0.0.1:{self.http_port}"
self.http_listen_address = f"0.0.0.0:{self.http_port}"
if USE_BINARY_EXECUTABLE:
run = [os.path.join(TARI_DAN_BINS_FOLDER, "tari_dan_wallet_daemon")]
else:
Expand Down

0 comments on commit a19699c

Please sign in to comment.