From 514a7643f54f5a604b34c3a72c9f0613f3c764fb Mon Sep 17 00:00:00 2001 From: slush0 Date: Mon, 27 Jun 2016 17:11:43 +0200 Subject: [PATCH] Bridge uses wallet.trezor.io for config file. --- trezorlib/transport_bridge.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trezorlib/transport_bridge.py b/trezorlib/transport_bridge.py index 75ce071..3f554d9 100644 --- a/trezorlib/transport_bridge.py +++ b/trezorlib/transport_bridge.py @@ -7,7 +7,7 @@ from . import messages_pb2 as proto from .transport import Transport TREZORD_HOST = 'https://localback.net:21324' -CONFIG_URL = 'https://mytrezor.com/data/plugin/config_signed.bin' +CONFIG_URL = 'https://wallet.trezor.io/data/config_signed.bin' def get_error(resp): return ' (error=%d str=%s)' % (resp.status_code, resp.json()['error']) @@ -26,7 +26,7 @@ class BridgeTransport(Transport): @staticmethod def configure(): - r = requests.get(CONFIG_URL) + r = requests.get(CONFIG_URL, verify=False) if r.status_code != 200: raise Exception('Could not fetch config from %s' % CONFIG_URL)