微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

打印结果不输出,找不到错误

如何解决打印结果不输出,找不到错误

此脚本会生成一个哈希,但是在某个地方它未正确在函数中写入内容

from bitcoin import *
import os
import hashlib
import base58
 

while True:
    priv =  random_key()
    pubkey = privtopub(priv)
    compress_pubkey = False
    
 
    if (compress_pubkey):
        if (ord(pubkey[-2:].decode('hex')) % 2 == 0):
            pubkey_compressed = '02'
        else:
            pubkey_compressed = '03'
        pubkey_compressed += pubkey[2:66]
        hex_str = bytearray.fromhex(pubkey_compressed)
    else:
        hex_str = bytearray.fromhex(pubkey)
 
key_hash = hash160(hex_str)

def hash160(hex_str):
    sha = hashlib.sha256()
    rip = hashlib.new('ripemd160')
    sha.update(hex_str)
    rip.update( sha.digest() )
    print ( "key_hash = \t" + rip.hexdigest() )
    return rip.hexdigest()  # .hexdigest() is hex ASCII

我检查了脚本能否正常工作。 print (pubkey)做过。结果显示了公用密钥,但是我不需要获取key_hash。不幸的是,当我print ("key_hash = \ t" + rip.hexdigest ())

未执行结果!我不知道编程。帮助修复代码

解决方法

代码重新排列后:

from bitcoin import *
import os
import hashlib
import base58

def hash160(hex_str):
    sha = hashlib.sha256()
    rip = hashlib.new('ripemd160')
    sha.update(hex_str)
    rip.update(sha.digest())
    print("key_hash = \t" + rip.hexdigest())
    return rip.hexdigest()  # .hexdigest() is hex ASCII

while True:
    priv = random_key()
    pubkey = privtopub(priv)
    compress_pubkey = False

    if (compress_pubkey):
        if (ord(pubkey[-2:].decode('hex')) % 2 == 0):
            pubkey_compressed = '02'
        else:
            pubkey_compressed = '03'
        pubkey_compressed += pubkey[2:66]
        hex_str = bytearray.fromhex(pubkey_compressed)
    else:
        hex_str = bytearray.fromhex(pubkey)

    key_hash = hash160(hex_str)

输出:

key_hash =  b0ac6f690633331af487f594dd3c42c6c67ce085
key_hash =  de735b3046545f63c8cb2f7d44b7f24a8b769ad7
key_hash =  49b0ae2b541832797680b977ca9e374d1a621787
key_hash =  ea3e1d9762331e791412e96b2a67f418cfd6ca2c
key_hash =  e5ff3affd4ba7eb2bb343548f587bde9dbdace6b
key_hash =  b1a952405516abe494e7e32610a3eaf85d7914f2
key_hash =  a0050e1f18b2d0738c458e237a447bd8f2810fec
key_hash =  23eeca93355ba511bdf28c475b5e62d2da64546b
key_hash =  cc5904bae39ee51b75097c95ad0307a21ecef1bc
... And So On

请注意,存在无限循环(while True),请考虑用特定数量的迭代代替。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。