added timeout to performget

This commit is contained in:
Kevin Froman 2018-01-28 20:30:31 -06:00
parent 8b3a09f5af
commit aaecd0adaf
No known key found for this signature in database
GPG key ID: 0D414D0FE405B63B
2 changed files with 2 additions and 1 deletions

View file

@ -166,6 +166,7 @@ class Core:
dataHash = dataHash.decode()
blockFileName = self.blockDataLocation + dataHash + '.dat'
if os.path.exists(blockFileName):
return # to do, properly check if block is already saved elsewhere
raise Exception("Data is already set for " + dataHash)
else:
blockFile = open(blockFileName, 'w')