Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Support ¶
type Support interface { // Ledger returns the ledger associated with this validator Ledger() ledger.PeerLedger // MSPManager returns the MSP manager for this chain MSPManager() msp.MSPManager // Apply attempts to apply a configtx to become the new config Apply(configtx *common.ConfigEnvelope) error // GetMSPIDs returns the IDs for the application MSPs // that have been defined in the channel GetMSPIDs(cid string) []string }
Support provides all of the needed to evaluate the VSCC
type VSCCEndorsementPolicyError ¶ added in v1.0.1
type VSCCEndorsementPolicyError struct {
// contains filtered or unexported fields
}
VSCCEndorsementPolicyError error to mark transaction failed endrosement policy check
func (VSCCEndorsementPolicyError) Error ¶ added in v1.0.1
func (e VSCCEndorsementPolicyError) Error() string
Error returns reasons which lead to the failure
type VSCCExecutionFailureError ¶ added in v1.0.1
type VSCCExecutionFailureError struct {
// contains filtered or unexported fields
}
VSCCExecutionFailureError error to indicate failure during attempt of executing VSCC endorsement policy check
func (VSCCExecutionFailureError) Error ¶ added in v1.0.1
func (e VSCCExecutionFailureError) Error() string
Error returns reasons which lead to the failure
type VSCCInfoLookupFailureError ¶ added in v1.0.1
type VSCCInfoLookupFailureError struct {
// contains filtered or unexported fields
}
VSCCInfoLookupFailureError error to indicate inability to obtain VSCC information from LCCC
func (VSCCInfoLookupFailureError) Error ¶ added in v1.0.1
func (e VSCCInfoLookupFailureError) Error() string
Error returns reasons which lead to the failure
type Validator ¶
Validator interface which defines API to validate block transactions and return the bit array mask indicating invalid transactions which didn't pass validation.
func NewTxValidator ¶
NewTxValidator creates new transactions validator