change failed claim from preventing tx save
This commit is contained in:
parent
78f51e89b4
commit
e5d40c7b8c
1 changed files with 0 additions and 3 deletions
|
@ -748,7 +748,6 @@ class BlockShell extends Shell {
|
||||||
|
|
||||||
if ($claim['ClaimType'] == 2 && !$claim_stream_data) {
|
if ($claim['ClaimType'] == 2 && !$claim_stream_data) {
|
||||||
echo "***claim stream data missing for streamType claim\n";
|
echo "***claim stream data missing for streamType claim\n";
|
||||||
$data_error = true;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -757,7 +756,6 @@ class BlockShell extends Shell {
|
||||||
|
|
||||||
if (!$res) {
|
if (!$res) {
|
||||||
echo "***claim could not be saved.\n";
|
echo "***claim could not be saved.\n";
|
||||||
$data_error = true;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -767,7 +765,6 @@ class BlockShell extends Shell {
|
||||||
$res = $this->ClaimStreams->save($claim_stream_entity);
|
$res = $this->ClaimStreams->save($claim_stream_entity);
|
||||||
if (!$res) {
|
if (!$res) {
|
||||||
echo "***claim stream could not be saved.\n";
|
echo "***claim stream could not be saved.\n";
|
||||||
$data_error = true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue