remove comment from log
authorThomasV <thomasv@gitorious>
Thu, 31 Jan 2013 09:53:42 +0000 (13:53 +0400)
committerThomasV <thomasv@gitorious>
Thu, 31 Jan 2013 09:53:42 +0000 (13:53 +0400)
backends/bitcoind/deserialize.py

index c84a009..75cbc3e 100644 (file)
@@ -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"