1
0
mirror of https://github.com/kvazar-network/crawler.git synced 2025-01-12 16:18:08 +00:00

fix txid records

This commit is contained in:
ghost 2024-02-26 12:56:15 +02:00
parent 0e2a088b20
commit bfa53960ad

View File

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