Documentation ¶
Index ¶
- Constants
- func GetAdminClient() (pb.AdminClient, error)
- func GetDefaultSigner() (msp.SigningIdentity, error)
- func GetEndorserClient() (pb.EndorserClient, error)
- func GetMockEndorserClient(response *pb.ProposalResponse, err error) pb.EndorserClient
- func InitConfig(cmdRoot string) error
- func InitCrypto(mspMgrConfigDir string) error
- func SetErrorLoggingLevel() error
- type AnchorPeerParser
- type BroadcastClient
Constants ¶
View Source
const UndefinedParamValue = ""
UndefinedParamValue defines what undefined parameters in the command line will initialise to
Variables ¶
This section is empty.
Functions ¶
func GetAdminClient ¶
func GetAdminClient() (pb.AdminClient, error)
GetAdminClient returns a new admin client connection for this peer
func GetDefaultSigner ¶
func GetDefaultSigner() (msp.SigningIdentity, error)
GetDefaultSigner return a default Signer(Default/PERR) for cli
func GetEndorserClient ¶
func GetEndorserClient() (pb.EndorserClient, error)
GetEndorserClient returns a new endorser client connection for this peer
func GetMockEndorserClient ¶
func GetMockEndorserClient(response *pb.ProposalResponse, err error) pb.EndorserClient
GetMockEndorserClient return a endorser client return specified ProposalResponse and err(nil or error)
func InitCrypto ¶
InitCrypto initializes crypto for this peer
func SetErrorLoggingLevel ¶
func SetErrorLoggingLevel() error
SetErrorLoggingLevel sets the 'error' module's logger to the value in core.yaml
Types ¶
type AnchorPeerParser ¶
type AnchorPeerParser struct {
// contains filtered or unexported fields
}
func GetAnchorPeersParser ¶
func GetAnchorPeersParser(anchorPeerParam string) *AnchorPeerParser
func GetDefaultAnchorPeerParser ¶
func GetDefaultAnchorPeerParser() *AnchorPeerParser
func (*AnchorPeerParser) Parse ¶
func (app *AnchorPeerParser) Parse() ([]*peer.AnchorPeer, error)
type BroadcastClient ¶
type BroadcastClient interface { //Send data to orderer Send(env *cb.Envelope) error Close() error }
func GetBroadcastClient ¶
func GetBroadcastClient() (BroadcastClient, error)
GetBroadcastClient creates a simple instance of the BroadcastClient interface
func GetMockBroadcastClient ¶
func GetMockBroadcastClient(err error) BroadcastClient
Click to show internal directories.
Click to hide internal directories.