removed realtime hash prints

This commit is contained in:
Daxeel Soni 2018-01-31 12:20:52 +05:30
parent 017595ecd2
commit 88b2487a80
1 changed files with 0 additions and 2 deletions

View File

@ -27,8 +27,6 @@ class Block:
while self.hash[:difficulty] != "0"*difficulty:
self.nonce += 1
self.hash = self.calculateHash()
sys.stdout.write(self.hash)
sys.stdout.flush()
endTime = time.time()
print Back.BLUE + "[ Info ] Time Elapsed : " + str(endTime - startTime) + " seconds."