Merge pull request #210 from curly60e/curly60e-patch-132

Upgraded Clock of Blocks [Remote]
This commit is contained in:
curly60e 2020-10-16 18:37:52 -03:00 committed by GitHub
commit 0ebb4480b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -90,15 +90,13 @@ def remotegetblock():
b = rpc('getblockcount')
c = str(b)
if c > a:
print("\033[1;32;40m")
tprint(c, font="rnd-large")
print("\a\033[0;37;40m")
output = render(str(c), colors=['red', 'yellow'], align='center')
print("\a" + output)
t.sleep(10)
break
elif c == a:
print("\033[1;32;40m")
tprint(c, font="rnd-large")
print("\033[0;37;40m")
output = render(str(c), colors=['red', 'yellow'], align='center')
print(output)
t.sleep(10)
clear()
closed()