我已将参与者定义为:
参与者 SupplierChainParticipant 由参与者 ID {
o String participantId
o String identity
o String type
o String secret
}
我还使用 composer-rest-sever 环回 API 创建了参与者,参与者创建了:
{
"$class": "org.suppchain.SupplierChainParticipant",
"participantId": "Deepak",
"identityName": "Parmar",
"type": "OEM",
"secret": "not defined"
}
现在,我正在尝试使用 composer cli 使用命令来发布身份:
作曲家身份问题 -n 'supplychain-network' -p hlfv1 -i admin -s adminpw -u dvparmar -a "org.suppchain.SupplierChainParticipant#Deepak"
但是,我收到以下错误:
错误:fabric-ca request register failed with errors [[{"code":0,"message":"User 'dvparmar' is already registered"}]] 命令失败。
任何输入/建议都会有所帮助。