mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 11:39:03 +00:00
update bitcore to insight in tx_api.py
This commit is contained in:
parent
608251bece
commit
87d3688ed7
@ -51,7 +51,7 @@ def opcode_serialize(opcode):
|
||||
except:
|
||||
raise Exception('Unknown script opcode: %s' % opcode)
|
||||
|
||||
def bitcore_tx(url):
|
||||
def insight_tx(url):
|
||||
f = urllib2.urlopen(url)
|
||||
data = json.load(f)
|
||||
|
||||
@ -88,12 +88,12 @@ class TXAPIBitcoin(object):
|
||||
|
||||
@filecache(MONTH)
|
||||
def get_tx(self, txhash):
|
||||
url = 'http://live.bitcore.io/api/tx/%s' % txhash
|
||||
return bitcore_tx(url)
|
||||
url = 'https://insight.bitpay.com/api/tx/%s' % txhash
|
||||
return insight_tx(url)
|
||||
|
||||
class TXAPITestnet(object):
|
||||
|
||||
@filecache(MONTH)
|
||||
def get_tx(self, txhash):
|
||||
url = 'http://test.bitcore.io/api/tx/%s' % txhash
|
||||
return bitcore_tx(url)
|
||||
url = 'https://insight.bitpay.com/api/tx/%s' % txhash
|
||||
return insight_tx(url)
|
||||
|
Loading…
Reference in New Issue
Block a user