mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
29a7a587cf
* Fix old MD links * Revert * Merge branch 'master' into clean-up-old-mds
10 lines
532 B
Go
10 lines
532 B
Go
/*
|
|
Package forkchoice implements the Latest Message Driven GHOST (Greediest Heaviest Observed
|
|
Sub-Tree) algorithm as the Ethereum Serenity beacon chain fork choice rule. This algorithm is designed to
|
|
properly detect the canonical chain based on validator votes even in the presence of high network
|
|
latency, network partitions, and many conflicting blocks. To read more about fork choice, read the
|
|
official accompanying document:
|
|
https://github.com/ethereum/eth2.0-specs/blob/v0.9.3/specs/core/0_fork-choice.md
|
|
*/
|
|
package forkchoice
|