From 2e3a0d4a1d0a5e55bd74b81efd4733a1ea1cbf11 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Mon, 2 Jan 2017 23:42:44 -0500 Subject: [PATCH] change URL of public relay to new DNS names These point to the same host (same IP address) as before, but the new names are tied to the project's official domain (magic-wormhole.io), rather than my personal one, so they can be managed independently. --- src/wormhole/cli/public_relay.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wormhole/cli/public_relay.py b/src/wormhole/cli/public_relay.py index e49e574..3cb0e62 100644 --- a/src/wormhole/cli/public_relay.py +++ b/src/wormhole/cli/public_relay.py @@ -1,5 +1,5 @@ # This is a relay I run on a personal server. If it gets too expensive to # run, I'll shut it down. -RENDEZVOUS_RELAY = u"ws://wormhole-relay.lothar.com:4000/v1" -TRANSIT_RELAY = u"tcp:wormhole-transit.lothar.com:4001" +RENDEZVOUS_RELAY = u"ws://relay.magic-wormhole.io:4000/v1" +TRANSIT_RELAY = u"tcp:transit.magic-wormhole.io:4001"