This commit is contained in:
Mark Qvist 2024-08-29 14:54:40 +02:00
parent 169d1921be
commit 2413add00d

View File

@ -1457,6 +1457,11 @@ class Reticulum:
rpc_connection = multiprocessing.connection.Client(self.rpc_addr, authkey=self.rpc_key)
rpc_connection.send({"get": "next_hop", "destination_hash": destination})
response = rpc_connection.recv()
# TODO: Remove this debugging function
# if not response:
# response = RNS.Transport.next_hop(destination)
return response
else: