mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-09-15 05:50:10 +00:00

* Add VirtualUTXODiff and VirtualParents to block insertion result * Add GetVirtualUTXOs * Add OnPruningPointUTXOSetOverrideHandler * Add recovery to UTXO index * Add UTXO set override notification * Fix compilation error * Fix iterators in UTXO index and fix TestUTXOIndex * Change Dialing to DEBUG * Change LogBlock location * Rename StopNotify to StopNotifying * Add sanity check * Add comment * Remove receiver from serialization functions Co-authored-by: Elichai Turkel <elichai.turkel@gmail.com>
10 lines
240 B
Go
10 lines
240 B
Go
package externalapi
|
|
|
|
// ReadOnlyUTXOSetIterator is an iterator over all entries in a
|
|
// ReadOnlyUTXOSet
|
|
type ReadOnlyUTXOSetIterator interface {
|
|
First() bool
|
|
Next() bool
|
|
Get() (outpoint *DomainOutpoint, utxoEntry UTXOEntry, err error)
|
|
}
|