From e5d40c7b8cef5327b781fa0b37f4b8b51844ca97 Mon Sep 17 00:00:00 2001 From: Akinwale Ariwodola Date: Thu, 15 Jun 2017 23:34:50 +0100 Subject: [PATCH] change failed claim from preventing tx save --- src/Shell/BlockShell.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Shell/BlockShell.php b/src/Shell/BlockShell.php index ea1aa4e..f722be3 100644 --- a/src/Shell/BlockShell.php +++ b/src/Shell/BlockShell.php @@ -748,7 +748,6 @@ class BlockShell extends Shell { if ($claim['ClaimType'] == 2 && !$claim_stream_data) { echo "***claim stream data missing for streamType claim\n"; - $data_error = true; break; } @@ -757,7 +756,6 @@ class BlockShell extends Shell { if (!$res) { echo "***claim could not be saved.\n"; - $data_error = true; break; } @@ -767,7 +765,6 @@ class BlockShell extends Shell { $res = $this->ClaimStreams->save($claim_stream_entity); if (!$res) { echo "***claim stream could not be saved.\n"; - $data_error = true; } } }