From 93f9fcb591133b592f4d219260b79e102ed042fc Mon Sep 17 00:00:00 2001 From: Hlavaty197250 <153689076+Hlavaty197250@users.noreply.github.com> Date: Sun, 9 Feb 2025 20:17:02 -0500 Subject: [PATCH] Update wif_to_hash160.py --- 30GaussJacobiMethod/wif_to_hash160.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/30GaussJacobiMethod/wif_to_hash160.py b/30GaussJacobiMethod/wif_to_hash160.py index 9d6d092..e7e7dd4 100644 --- a/30GaussJacobiMethod/wif_to_hash160.py +++ b/30GaussJacobiMethod/wif_to_hash160.py @@ -11,7 +11,7 @@ def decode_base58(address): return decoded[1:-4] if __name__ == "__main__": - address = input("Enter Bitcoin address: ") + address = input("1PWo3JeB9jrGwfHDNpdGK54CRas7fsVzXU: ") decoded_bytes = decode_base58(address) - print("Bitcoin HASH160: ", decoded_bytes.hex()) - \ No newline at end of file + print("f6f5431d25bbf7b12e8add9af5e3475c44a0a5b8: ", decoded_bytes.hex()) +