From: ThomasV Date: Mon, 19 Nov 2012 21:20:14 +0000 (+0400) Subject: fix for strange tx X-Git-Url: https://git.novaco.in/?p=electrum-server.git;a=commitdiff_plain;h=008ceb119ded9d547bc4eaf5b87dbc6e986c74c7 fix for strange tx --- diff --git a/backends/bitcoind/deserialize.py b/backends/bitcoind/deserialize.py index 21fd9ce..60af334 100644 --- a/backends/bitcoind/deserialize.py +++ b/backends/bitcoind/deserialize.py @@ -290,10 +290,9 @@ def parse_Transaction(vds, is_coinbase): for i in xrange(n_vout): o = parse_TxOut(vds, i) - if o['address'] == "None" and o['value']==0: - print("skipping strange tx output with zero value") - continue - + #if o['address'] == "None" and o['value']==0: + # print("skipping strange tx output with zero value") + # continue # if o['address'] != "None": d['outputs'].append(o)