Reputation: 701
I was going through the following link to understand the architecture of fabric, in which they have mentioned that "There may exist one or more special chain codes for management functions and parameters, collectively called system chain codes."
https://github.com/hyperledger/fabric/blob/master/docs/source/arch-deep-dive.rst
Kindly someone helps me to understand what is system chain code and what kind of functionaries are being performed by system chain code.
Upvotes: 1
Views: 1939
Reputation: 56
The offical docs may help you understand it.
System chaincodes are specialized chaincodes that run as part of the peer process as opposed to user chaincodes that run in separate docker containers. As such they have more access to resources in the peer and can be used for implementing features that are difficult or impossible to be implemented through user chaincodes
Existing system chaincodes:
Reference pages:
Upvotes: 4