Update spvblock.py

This commit is contained in:
Satoshi Nakamoto 2022-03-16 20:02:11 +01:00 committed by GitHub
parent 4eae750b2d
commit ee2f554376
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -650,9 +650,18 @@ You can decode that block in HEX and see what's inside.\033[0;37;40m""")
break
def runthenumbers():
bitcoincli = " gettxoutsetinfo"
os.system(path['bitcoincli'] + bitcoincli)
input("\nContinue...")
try:
conn = """curl -s https://get.txoutset.info/ """
a = os.popen(conn).read()
clear()
blogo()
closed()
output = render("run the numbers", colors=['yellow'], align='left', font='tiny')
print(output)
print(a)
input("\a\nContinue...")
except:
pass
def countdownblock():
bitcoinclient = f'{path["bitcoincli"]} getblockcount'