From 6c75a5bb6d1a07013d6313eed6c297b8fc1ad0d6 Mon Sep 17 00:00:00 2001 From: Rodolphe Marques Date: Tue, 23 Feb 2016 13:54:54 +0100 Subject: [PATCH] removed exception print --- bigchaindb/core.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bigchaindb/core.py b/bigchaindb/core.py index ce3c5bb7..d2c7b4ad 100644 --- a/bigchaindb/core.py +++ b/bigchaindb/core.py @@ -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'):