我使用结构版本 1.4.4 在通道中创建了一个具有两个组织(Org1,Org2)的网络。我在通道中添加了一个组织。将新组织添加到通道后,我正在尝试更新锚点对等点基于此参考 https://hyperledger-fabric.readthedocs.io/en/release-1.4/channel_update_tutorial.html#updating-the-channel-config-to-include-an-org3-anchor-peer-optional。
但是在尝试使用 Org3 签署更新事务时会引发错误。
Error: got unexpected status: BAD_REQUEST -- error applying config update to existing
channel 'masterchannel': error authorizing update: error validating DeltaSet: policy for
[Group] /Channel/Application not satisfied: implicit policy evaluation failed - 1 sub-
policies were satisfied, but this policy requires 2 of the 'Admins' sub-policies to be
satisfied
我尝试使用网络中的另一个 org(org 2) 签署交易。它引发了另一个错误,如下所示。
Error: got unexpected status: BAD_REQUEST -- error applying config update to existing
channel 'mychannel': error authorizing update: error validating DeltaSet: invalid
mod_policy for element [Group] /Channel/Application/Org3: mod_policy not set
我附上了关于应用程序功能的 configtx.yaml。
Application: &ApplicationCapabilities
V1_4_2: true
V1_3: false
V1_2: false
V1_1: false
谁能帮我解决锚更新中的错误?