From bd7c575be3aa1bbbd1ef361797c16d24948cc75a Mon Sep 17 00:00:00 2001 From: slush0 Date: Fri, 23 Jan 2015 21:24:15 +0100 Subject: [PATCH] Fixed testnet URL --- trezorlib/tx_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trezorlib/tx_api.py b/trezorlib/tx_api.py index a35a08b19..553265163 100644 --- a/trezorlib/tx_api.py +++ b/trezorlib/tx_api.py @@ -98,5 +98,5 @@ class TXAPITestnet(object): @filecache(MONTH) def get_tx(self, txhash): - url = 'https://insight.bitpay.com/api/tx/%s' % txhash + url = 'https://test-insight.bitpay.com/api/tx/%s' % txhash return insight_tx(url)