removed exception print

This commit is contained in:
Rodolphe Marques 2016-02-23 13:54:54 +01:00
parent 4326c863ac
commit 6c75a5bb6d

View File

@ -466,8 +466,7 @@ class Bigchain(object):
try:
self.validate_block(block)
return True
except Exception as e:
print(e)
except Exception:
return False
def write_block(self, block, durability='soft'):