mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-07-03 03:12:30 +00:00
Generate and store extended filters in ConnectBlock()
This commit is contained in:
parent
cdb3d44fa8
commit
0a841fefcf
@ -160,7 +160,15 @@ func (idx *CfIndex) ConnectBlock(dbTx database.Tx, block *btcutil.Block,
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return dbStoreBasicEntry(dbTx, block.Hash(), f)
|
err = dbStoreBasicEntry(dbTx, block.Hash(), f)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
f, err = makeExtendedFilterForBlock(block)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return dbStoreExtendedEntry(dbTx, block.Hash(), f)
|
||||||
}
|
}
|
||||||
|
|
||||||
// DisconnectBlock is invoked by the index manager when a block has been
|
// DisconnectBlock is invoked by the index manager when a block has been
|
||||||
|
Loading…
x
Reference in New Issue
Block a user