package acceptancedatastore import ( "github.com/kaspanet/kaspad/domain/consensus/model" "github.com/kaspanet/kaspad/infrastructure/db/dbaccess" "github.com/kaspanet/kaspad/util/daghash" ) // AcceptanceDataStore represents a store of AcceptanceData type AcceptanceDataStore struct { } // New instantiates a new AcceptanceDataStore func New() *AcceptanceDataStore { return &AcceptanceDataStore{} } // Insert inserts the given acceptanceData for the given blockHash func (ads *AcceptanceDataStore) Insert(dbTx *dbaccess.TxContext, blockHash *daghash.Hash, acceptanceData *model.BlockAcceptanceData) { } // Get gets the acceptanceData associated with the given blockHash func (ads *AcceptanceDataStore) Get(dbContext dbaccess.Context, blockHash *daghash.Hash) *model.BlockAcceptanceData { return nil }