Browse Source

fix txid records

main
ghost 4 months ago
parent
commit
bfa53960ad
  1. 6
      src/index.php

6
src/index.php

@ -321,7 +321,7 @@ for ($block = $state + 1; $block <= $blocks; $block++)
$record['height'] === $block $record['height'] === $block
&& &&
// Skip processed transactions for this namespace // Skip processed transactions for this namespace
!in_array($raw['txid'], $transactions) !in_array($record['txid'], $transactions)
) { ) {
// Register new transaction // Register new transaction
$index->add( $index->add(
@ -329,14 +329,14 @@ for ($block = $state + 1; $block <= $blocks; $block++)
$raw['size'], $raw['size'],
$block, $block,
$namespace, $namespace,
$raw['txid'], $record['txid'],
$asm[0], $asm[0],
$record['key'], $record['key'],
$record['value'] $record['value']
); );
// Register processed transaction // Register processed transaction
$transactions[] = $raw['txid']; $transactions[] = $record['txid'];
} }
} }

Loading…
Cancel
Save