blockchain/indexers: fix dropped error

This commit is contained in:
Lars Lehtonen 2026-02-16 18:14:00 -08:00 committed by Olaoluwa Osuntokun
parent 6cfd7172ea
commit ad3b10d196

View file

@ -668,6 +668,9 @@ func dropIndex(db database.DB, idxKey []byte, idxName string, interrupt <-chan s
}
return bucket.DeleteBucket(bucketName[len(bucketName)-1])
})
if err != nil {
return err
}
}
// Call extra index specific deinitialization for the transaction index.