我有一个由3个组织和两个渠道组成的网络。
channelone :org1,org2,chaincode-fabcar
channeltwo :org1,org3,chaincode-fabphone
我想使用fabcar查询chaincode-fabphone。
答案 0 :(得分:0)
您可以使用stub.InvokeChaincode方法从另一个调用一个链码-
response := stub.InvokeChaincode(chaincodeName, invokeArgs, channelName)
if response.Status != shim.OK {
return nil
}
return response.Payload
有关更多详细信息,请参阅-https://sourcegraph.com/github.com/hyperledger/fabric/-/blob/core/chaincode/shim/interfaces.go#L62:3
答案 1 :(得分:0)
如果您使用javascript或打字稿编写链式代码,则可以使用以下代码:
const args = [functionName, ...]
const result = await ctx.stub.invokeChaincode(chaincodeName, args, channelName)
return result.payload.toString('utf8')
答案 2 :(得分:-1)
我认为这是不可能的。您只能在同一通道内调用chaincode函数。函数invokeChaincode使用与原始事务相同的事务上下文。 看看https://github.com/hyperledger-archives/fabric/blob/master/core/chaincode/shim/chaincode.go
// InvokeChaincode locally calls the specified chaincode `Invoke` using the
// same transaction context; that is, chaincode calling chaincode doesn't
// create a new transaction message.
func (stub *ChaincodeStub) InvokeChaincode(chaincodeName string, function string,
args []string) ([]byte, error) {
return handler.handleInvokeChaincode(chaincodeName, function, args, stub.UUID)
}
// QueryChaincode locally calls the specified chaincode `Query` using the
// same transaction context; that is, chaincode calling chaincode doesn't
// create a new transaction message.
func (stub *ChaincodeStub) QueryChaincode(chaincodeName string, function string, args
[]string) ([]byte, error) {
return handler.handleQueryChaincode(chaincodeName, function, args, stub.UUID)
}