| 31 | } |
| 32 | |
| 33 | type ChainChainmakerClient struct { |
| 34 | ChainConfig *ChainConfig `json:"chain_config"` |
| 35 | ContractName string `json:"contract_name"` |
| 36 | ContractMethod string `json:"contract_method"` |
| 37 | Data string `json:"data"` |
| 38 | TxId string `json:"txId"` |
| 39 | } |
| 40 | |
| 41 | func newChainChainmakerClient(nodeAddr, authType, orgId, chainId, chainmakerEndpoint, UserKey, UserCert, SignKey, SignCert, ContractName, ContractMethod string) (*ChainChainmakerClient, error) { |
| 42 | chainConfig := &ChainConfig{ |
nothing calls this directly
no outgoing calls
no test coverage detected