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

* [NOD-1494] Remove transactions from data store delete * [NOD-1494] Remove redundant underscores
13 lines
375 B
Go
13 lines
375 B
Go
package model
|
|
|
|
import "github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
|
|
|
|
// MultisetStore represents a store of Multisets
|
|
type MultisetStore interface {
|
|
Store
|
|
Stage(blockHash *externalapi.DomainHash, multiset Multiset)
|
|
IsStaged() bool
|
|
Get(dbContext DBReader, blockHash *externalapi.DomainHash) (Multiset, error)
|
|
Delete(blockHash *externalapi.DomainHash)
|
|
}
|