From 2a1851aa1ee479f8966c3d06e926443e2c69f93a Mon Sep 17 00:00:00 2001 From: z-bowen Date: Fri, 27 Jul 2018 16:47:17 +0200 Subject: [PATCH] Problem: CriticalDoubleInclusion exception was no longer used anywhere in the code Solution: Deleted it --- bigchaindb/exceptions.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bigchaindb/exceptions.py b/bigchaindb/exceptions.py index 336ce231..bb5d7c01 100644 --- a/bigchaindb/exceptions.py +++ b/bigchaindb/exceptions.py @@ -4,7 +4,3 @@ class BigchainDBError(Exception): class CriticalDoubleSpend(BigchainDBError): """Data integrity error that requires attention""" - - -class CriticalDoubleInclusion(BigchainDBError): - """Data integrity error that requires attention"""