Reputation: 101
As Hyperledger Fabric architecture is modular, How can I plug in the modules like MSP, Consensus and Ordering Service.
Upvotes: 2
Views: 397
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