diff --git a/Examples/Echo.py b/Examples/Echo.py index cfe6426f..da47633e 100644 --- a/Examples/Echo.py +++ b/Examples/Echo.py @@ -158,7 +158,7 @@ def client(destination_hexhash, configpath, timeout=None): # If we do not know this destination, tell the # user to wait for an announce to arrive. RNS.log("Destination is not yet known. Requesting path...") - RNS.Transport.requestPath(destination_hash) + RNS.Transport.request_path(destination_hash) # This function is called when our reply destination # receives a proof packet. diff --git a/Examples/Filetransfer.py b/Examples/Filetransfer.py index 2f861af4..ec9e5d21 100644 --- a/Examples/Filetransfer.py +++ b/Examples/Filetransfer.py @@ -211,7 +211,7 @@ def client(destination_hexhash, configpath): # Check if we know a path to the destination if not RNS.Transport.has_path(destination_hash): RNS.log("Destination is not yet known. Requesting path and waiting for announce to arrive...") - RNS.Transport.requestPath(destination_hash) + RNS.Transport.request_path(destination_hash) while not RNS.Transport.has_path(destination_hash): time.sleep(0.1) diff --git a/Examples/Link.py b/Examples/Link.py index aeb2d50e..d4be6ca8 100644 --- a/Examples/Link.py +++ b/Examples/Link.py @@ -112,7 +112,7 @@ def client(destination_hexhash, configpath): # Check if we know a path to the destination if not RNS.Transport.has_path(destination_hash): RNS.log("Destination is not yet known. Requesting path and waiting for announce to arrive...") - RNS.Transport.requestPath(destination_hash) + RNS.Transport.request_path(destination_hash) while not RNS.Transport.has_path(destination_hash): time.sleep(0.1)