From 1a20295e163e606c949a95a2839decce47e2a330 Mon Sep 17 00:00:00 2001 From: Stefan Thomas Date: Tue, 23 Oct 2012 17:52:18 +0200 Subject: [PATCH] Remove tx invalid assertion - exception should be enough. Jed's words, not mine. ;) --- src/SerializedTransaction.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/SerializedTransaction.cpp b/src/SerializedTransaction.cpp index dbe3ffbf20..a7c26357a1 100644 --- a/src/SerializedTransaction.cpp +++ b/src/SerializedTransaction.cpp @@ -25,7 +25,6 @@ SerializedTransaction::SerializedTransaction(const STObject& object) : STObject( throw std::runtime_error("invalid transaction type"); if (!setType(mFormat->elements)) { - assert(false); throw std::runtime_error("transaction not valid"); } }