mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-24 15:02:32 +00:00

* [NOD-1223] Move all network stuff into a new network package. * [NOD-1223] Delete the unused package testutil. * [NOD-1223] Move infrastructure stuff into a new instrastructure package. * [NOD-1223] Move domain stuff into a new domain package.
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
package dbaccess
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/infrastructure/database"
|
|
)
|
|
|
|
var (
|
|
utxoBucket = database.MakeBucket([]byte("utxo"))
|
|
)
|
|
|
|
func utxoKey(outpointKey []byte) *database.Key {
|
|
return utxoBucket.Key(outpointKey)
|
|
}
|
|
|
|
// AddToUTXOSet adds the given outpoint-utxoEntry pair to
|
|
// the database's UTXO set.
|
|
func AddToUTXOSet(context Context, outpointKey []byte, utxoEntry []byte) error {
|
|
accessor, err := context.accessor()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
key := utxoKey(outpointKey)
|
|
return accessor.Put(key, utxoEntry)
|
|
}
|
|
|
|
// RemoveFromUTXOSet removes the given outpoint from the
|
|
// database's UTXO set.
|
|
func RemoveFromUTXOSet(context Context, outpointKey []byte) error {
|
|
accessor, err := context.accessor()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
key := utxoKey(outpointKey)
|
|
return accessor.Delete(key)
|
|
}
|
|
|
|
// UTXOSetCursor opens a cursor over all the UTXO entries
|
|
// that have been previously added to the database.
|
|
func UTXOSetCursor(context Context) (database.Cursor, error) {
|
|
accessor, err := context.accessor()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return accessor.Cursor(utxoBucket)
|
|
}
|