X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=backends%2Fbitcoind%2Fdeserialize.py;h=75cbc3e7a9af473c62493db662d7f16a0adbd2d8;hb=86b0c5b5b0e5a3e072104d3fbde3927bb584f699;hp=c84a0090cdbb7d511e30e2bae5d6087ef91a84f6;hpb=9946c27d674e797b448c95f79e3050de50305818;p=electrum-server.git diff --git a/backends/bitcoind/deserialize.py b/backends/bitcoind/deserialize.py index c84a009..75cbc3e 100644 --- a/backends/bitcoind/deserialize.py +++ b/backends/bitcoind/deserialize.py @@ -367,8 +367,6 @@ def get_address_from_output_script(bytes): match = [ opcodes.OP_HASH160, opcodes.OP_PUSHDATA4, opcodes.OP_EQUAL ] if match_decoded(decoded, match): addr = hash_160_to_bc_address(decoded[1][1],5) - print "p2sh", addr return addr - #raise BaseException("address not found in script") see ce35795fb64c268a52324b884793b3165233b1e6d678ccaadf760628ec34d76b return "None"