Skip to content

Commit 1e55a84

Browse files
committed
Changed network password to remote.xrp
1 parent a17533b commit 1e55a84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

XRPLib/webserver.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ def __init__(self):
3333

3434
def start_server(self, robot_number:int):
3535
"""
36-
Start the webserver. The network password is the same as the name
36+
Start the webserver. The network password is "remote.xrp"
3737
3838
:param robot_number: The number of the robot, used to generate the access point name
3939
:type robot_number: int
4040
"""
41-
self.access_point = access_point(f"XRP_{robot_number}", f"XRP_{robot_number}")
41+
self.access_point = access_point(f"XRP_{robot_number}", "remote.xrp")
4242
self.ip = network.WLAN(network.AP_IF).ifconfig()[0]
4343
logging.info(f"Starting DNS Server at {self.ip}")
4444
dns.run_catchall(self.ip)

0 commit comments

Comments
 (0)