Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type State ¶
type State interface { // GetPrivateDataMultipleKeys gets the values for the multiple private data items in a single call GetPrivateDataMultipleKeys(namespace, collection string, keys []string) ([][]byte, error) // GetStateMultipleKeys gets the values for multiple keys in a single call GetStateMultipleKeys(namespace string, keys []string) ([][]byte, error) // GetTransientByTXID gets the values private data associated with the given txID GetTransientByTXID(txID string) ([]*rwset.TxPvtReadWriteSet, error) // Done releases resources occupied by the State Done() }
State defines interaction with the world state
type StateFetcher ¶
type StateFetcher interface { endorsement.Dependency // FetchState fetches state FetchState() (State, error) }
StateFetcher retrieves an instance of a state
Click to show internal directories.
Click to hide internal directories.