mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-22 23:07:04 +00:00

* Add recoverability for UTXO index * Add comment * Rename UTXOOutpointPair->OutpointUTXOPair * Get rid of the db transaction on resetStore and collect all keys before deleting * Use VirtualSelectedParent instead of selected tip * Fix error
8 lines
157 B
Go
8 lines
157 B
Go
package externalapi
|
|
|
|
// OutpointUTXOPair is a pair of outpoint and UTXO entry
|
|
type OutpointUTXOPair struct {
|
|
Outpoint *DomainOutpoint
|
|
Entry UTXOEntry
|
|
}
|