Reputation: 1897
I need to implement a permissioned blockchain where nodes can be changed, based on a selection in a white list. Is there a way to implement this? I am reviewing hyperledger fabric, but I can't understand if I can change nodes after deployment.
Upvotes: 0
Views: 51
Reputation: 138
Fabric allows for the use of a certificate authority which can provide x.509 certificates to new nodes joining the network. This allows for nodes to be added after deployment. See this part of the docs Nodes on your whitelist can be authorised/de-authorised by the Membership Service Provider(MSP)
Upvotes: 2