hyperledger-labs/fabric-operations-console

Console shows incorrect approval statuses for smart contract proposal

Opened this issue · 2 comments

Screenshot 2021-10-29 123041

The error occurs when the name and id of the organization differ in configtx.yaml, e.g.

...
Organizations:
    - &Org1
        Name: Org1
        ID: Org1MSP
...

The error does not occur with test-network because the id and name of the peer organization are the same.

The status value depends on this line of code:

const signature = commited[member.id] ? 'approval_submitted' : undefined;
The keys in the commited object are the identifiers of organizations, but member.id is actually the name of the organization.
Members are passed from the ChannelDetails component and are based on the part of the channel configuration where the names of organizations are used.
const orgNodes = _.get(config, 'channel_group.groups_map.Application.groups_map');

@dkacperski97 good analysis! Yes, console currently expects both of of those to be the same... we can look to fix handle it for some of these cases where it makes sense... sounds like you may have gotten it to work by tweaking it? if so, please feel free to make a PR... otherwise we will take a look

No, I haven't tried to fix it.