Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pages/consensus/ConsensusProofOfStakePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export function ConsensusProofOfStakePage() {
</h2>
<p>
<strong>Economic finality</strong> means blocks are considered final once a supermajority
of validators (2/3+1) has voted on them. Before PoS, systems relied on
of validators (2/3+1) has voted on them. Before PoS, systems relied on{' '}
<strong>probabilistic finality</strong>: treating a block as final after a certain
number of confirmations. Remnants remain. For Ethereum: 1 epoch is the &quot;safe&quot;
block (probabilistic), and 2 epochs is economic finality.
Expand Down
2 changes: 1 addition & 1 deletion src/pages/consensus/ConsensusProofOfWorkPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function ConsensusProofOfWorkPage() {
</a>
</h2>
<p>
Proof of Work solves this by forcing nodes to solve a <strong>cryptographic puzzle</strong>
Proof of Work solves this by forcing nodes to solve a <strong>cryptographic puzzle</strong>{' '}
before proposing a block. The puzzle draws on an older idea used to reduce spam: require
significant computational work. To produce a block, a node must find a <strong>nonce</strong>{" "}
(a number) such that when the block data (including the nonce) is hashed, the output
Expand Down