Manoj Indian
Manoj Indian

Reputation: 101

How MSP,Consensus, Ordering service is pluggable in Hyperledger Fabric?

As Hyperledger Fabric architecture is modular, How can I plug in the modules like MSP, Consensus and Ordering Service.

Upvotes: 2

Views: 397

Answers (1)

yacovm
yacovm

Reputation: 5140

For MSP all you need to do is implement your own MSP implementation and make it implement the MSP interface

For Consensus/Ordering service, you need to have a gRPC service that provides the AtomicBroadcast service.

Upvotes: 2

Related Questions