hyperledger-labs / fabric-operations-console

A UI for managing Fabric peers, orderers, and CAs
Apache License 2.0
114 stars 63 forks source link

Console shows incorrect approval statuses for smart contract proposal #69

Open dkacperski97 opened 3 years ago

dkacperski97 commented 3 years ago

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: https://github.com/hyperledger-labs/fabric-operations-console/blob/f6230be047e44264e44808043db61b1588c3b89b/packages/apollo/src/components/ChaincodeModal/ChaincodeModal.js#L232 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. https://github.com/hyperledger-labs/fabric-operations-console/blob/f6230be047e44264e44808043db61b1588c3b89b/packages/apollo/src/components/ChannelDetails/ChannelDetails.js#L229

varadgit commented 3 years ago

@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

dkacperski97 commented 3 years ago

No, I haven't tried to fix it.