mirror of
https://github.com/curly60e/pyblock.git
synced 2026-08-20 13:28:10 +02:00
Update spvblock.py
This commit is contained in:
parent
4eae750b2d
commit
ee2f554376
1 changed files with 12 additions and 3 deletions
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue