1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-10 15:30:55 +00:00

Removed debug printing

This commit is contained in:
slush0 2014-02-06 10:43:03 +01:00
parent 39f4ade40b
commit 7edf015914

View File

@ -10,8 +10,9 @@ import types_pb2 as proto_types
class BlockchainApi(object):
def _raw_tx(self, txhash):
# Download tx data from blockchain.info
f = urllib2.urlopen('http://blockchain.info/rawtx/%s?scripts=true' % txhash)
print 'got', txhash
url = 'http://blockchain.info/rawtx/%s?scripts=true' % txhash
print "Downloading", url
f = urllib2.urlopen(url)
return json.load(f)
def submit(self, tx):