MrL
MrL

Reputation: 1720

Hyperledger Fabric v1.3 - Consensus

I have a technical doubt related to the HL Fabric consensus.

Does anyone know which is the current consensus algorithm implemented in v1.3? Can you describe it?

Where I can find more documentation about this topic?

Upvotes: 0

Views: 103

Answers (1)

Rangesh
Rangesh

Reputation: 728

Consensus can be broken into three phases in fabric from v1.0

  • Endorsment Policy - For a transaction to be valid, it has to be endorsed by respective participants. This phase is even before going to orderer service.
  • Ordering - Order the transaction in chronological order
  • Validation(Commiting peer) - Validate the correctness of state (Comparison between the transaction state and world state)

A more detail read can be found here https://www.skcript.com/svr/consensus-hyperledger-fabric/

Upvotes: 1

Related Questions