mirror of
https://github.com/kvazar-network/crawler.git
synced 2025-01-09 14:48:13 +00:00
fix warning level
This commit is contained in:
parent
9fdc8a01f9
commit
8a8adebe11
@ -276,13 +276,7 @@ for ($block = $state + 1; $block <= $blocks; $block++)
|
||||
// Operation ID required to continue
|
||||
if (empty($asm[0]))
|
||||
{
|
||||
exit(
|
||||
sprintf(
|
||||
_('Undefined operation of transaction "%s" in block "%d"!'),
|
||||
$transaction,
|
||||
$block
|
||||
)
|
||||
);
|
||||
continue;
|
||||
}
|
||||
|
||||
// Detect key / value
|
||||
@ -294,7 +288,13 @@ for ($block = $state + 1; $block <= $blocks; $block++)
|
||||
// Namespace info required to continue
|
||||
if (empty($asm[1]))
|
||||
{
|
||||
continue;
|
||||
exit(
|
||||
sprintf(
|
||||
_('Undefined namespace of transaction "%s" in block "%d"!'),
|
||||
$transaction,
|
||||
$block
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
// Decode namespace
|
||||
|
Loading…
Reference in New Issue
Block a user