我的机器中建立了一个超级账本网络。而且我能够enrollAdmin并成功注册User。我的问题是当我尝试查询安装的链码时。我无法使用grcps连接并出现以下错误。希望有人能帮忙。谢谢。
这是我与同伴连接的方式:
//setup fabric network
var channel = fabric_client.newChannel('mychannel');
var peer = fabric_client.newPeer(
'grpcs://localhost:7051', {
pem: Buffer.from(serverCert).toString()
});
channel.addPeer(peer);
这是我如何连接到链码的方法:
// queryAllUser - requires no arguments , ex: args: [''],
const request = {
chaincodeId: 'ccId',
txId: tx_id,
fcn: 'queryAll',
args: ['']
};
// send the query proposal to the peer
return channel.queryByChaincode(request);