Skip to content
Snippets Groups Projects
Commit 42913bae authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] Delete or update 'indexOfComplexeConditionForPubkeys' when removing a block

parent 8da8c7a7
No related branches found
No related tags found
1 merge request!1420[fix] Optimize access to sources by pubkey, using specific index
...@@ -129,9 +129,9 @@ export class LevelDBSindex extends LevelDBTable<SindexEntry> ...@@ -129,9 +129,9 @@ export class LevelDBSindex extends LevelDBTable<SindexEntry>
pos: number; pos: number;
}[] }[]
> { > {
const forConditions = await this.getForConditions(`SIG(${pubkey})`); const forSimpleConditions = await this.getForConditions(`SIG(${pubkey})`);
const forPubkeys = await this.getForComplexeConditionPubkey(pubkey); const forComplexConditions = await this.getForComplexeConditionPubkey(pubkey);
const reduced = Indexer.DUP_HELPERS.reduceBy(forConditions.concat(forPubkeys), [ const reduced = Indexer.DUP_HELPERS.reduceBy(forSimpleConditions.concat(forComplexConditions), [
"identifier", "identifier",
"pos", "pos",
]); ]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment