Versions in this module Expand all Collapse all v2 v2.3.2 Nov 21, 2021 Changes in this version + var ErrStoreEmpty = errors.New("Transient store is empty") + type EndorserPvtSimulationResults struct + PvtSimulationResultsWithConfig *transientstore.TxPvtReadWriteSetWithConfigInfo + ReceivedAtBlockHeight uint64 + type RWSetScanner interface + Close func() + Next func() (*EndorserPvtSimulationResults, error) + type RwsetScanner struct + func (scanner *RwsetScanner) Close() + func (scanner *RwsetScanner) Next() (*EndorserPvtSimulationResults, error) + type Store struct + func (s *Store) GetMinTransientBlkHt() (uint64, error) + func (s *Store) GetTxPvtRWSetByTxid(txid string, filter ledger.PvtNsCollFilter) (RWSetScanner, error) + func (s *Store) Persist(txid string, blockHeight uint64, ...) error + func (s *Store) PurgeBelowHeight(maxBlockNumToRetain uint64) error + func (s *Store) PurgeByTxids(txids []string) error + func (s *Store) Shutdown() + type StoreProvider interface + Close func() + OpenStore func(ledgerID string) (*Store, error) + func NewStoreProvider(path string) (StoreProvider, error) Other modules containing this package github.com/waszqt/fabric