mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-21 06:16:45 +00:00

* fix mempool accessing, rewrite get_mempool_entries_by_addresses * fix counter, add verbose * fmt * addresses as string * Define error in case utxoEntry is missing. * fix error variable to string * stop tests from failing (see in code comment) * access both pools in the same state via parameters * get rid of todo message * fmt - very important! * perf: scriptpublickey in mempool, no txscript. * address reveiw * fmt fix * mixed up isorphan bool, pass tests now * do map preallocation in mempoolbyaddresses * no proallocation for orphanpool sending. Co-authored-by: Ori Newman <orinewman1@gmail.com>
24 lines
815 B
Go
24 lines
815 B
Go
package utxoindex
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
|
|
)
|
|
|
|
// ScriptPublicKeyString is a script public key represented as a string
|
|
// We use this type rather than just a byte slice because Go maps don't
|
|
// support slices as keys. See: UTXOChanges
|
|
type ScriptPublicKeyString string
|
|
|
|
// UTXOOutpointEntryPairs is a map between UTXO outpoints to UTXO entries
|
|
type UTXOOutpointEntryPairs map[externalapi.DomainOutpoint]externalapi.UTXOEntry
|
|
|
|
// UTXOOutpoints is a set of UTXO outpoints
|
|
type UTXOOutpoints map[externalapi.DomainOutpoint]interface{}
|
|
|
|
// UTXOChanges is the set of changes made to the UTXO index after
|
|
// a successful update
|
|
type UTXOChanges struct {
|
|
Added map[ScriptPublicKeyString]UTXOOutpointEntryPairs
|
|
Removed map[ScriptPublicKeyString]UTXOOutpointEntryPairs
|
|
}
|