Files
linea-besu/docs/Consensus-Protocols/Overview-Consensus.md
MadelineMurray b5d91e0a28 Added IBFT 1.0 (#1081)
Signed-off-by: Adrian Sutton <adrian.sutton@consensys.net>
2019-03-13 10:13:47 +10:00

824 B

description: Pantheon consensus protocols

Consensus Protocols

Pantheon implements a number of consensus protocols:

The genesis file specifies the consensus protocol for a chain in the config property:

{
   "config": {
     ...
     "ethash": {
    
   } 
  },
  ...  
}
{
  "config": {
    ....
    "clique": {
      ... 
   }
  },
  ...
}
{
  "config": {
    ....
    "ibft2": {
      ...     
   }
  },
  ...
}
{
  "config": {
    ....
    "ibft": {
      ...     
   }
  },
  ...
}