Consensus Round
Pronunciation: kun-SEN-sus ROWND
Definition
A consensus round is one attempt within a block height or decision instance to propose data, collect votes, and reach quorum. Network delay, an unavailable proposer, invalid data, or divided votes can prevent quorum. Advancing the round changes proposer or timing context without necessarily changing the target block height. Messages must include round information to prevent replay and confusion. Operators should monitor repeated round changes as a liveness warning and maintain accurate time and connectivity.
Overview
A consensus round organizes an attempt to decide a proposal. Round-based Byzantine fault tolerant protocols often choose a proposer, broadcast a candidate, collect staged votes, and either commit the value or advance to a higher round after a timeout. Network delay, an unavailable proposer, invalid data, or divided votes can prevent quorum. Advancing the round changes proposer or timing context without necessarily changing the target block height. Messages must include round information to prevent replay and confusion.
Operators should monitor repeated round changes as a liveness warning and maintain accurate time and connectivity. Indexers and payment systems should treat proposals and partial votes as transient until the protocol produces the required commit or finality certificate. Assessment should trace the complete decision process: who may propose data, how other participants validate it, how competing histories are ranked, and what evidence makes an outcome difficult or impossible to reverse. A mechanism’s label does not define those details across every implementation. Safety, liveness, and accountability should be assessed separately under partitions and coordinated failures. The security model depends on the resource or authority used to influence consensus, participant concentration, network timing, client behavior, and the cost of equivocation, censorship, or history revision.
Payment applications relying on Consensus Round need network-specific confirmation and finality policies. Observing a block locally does not establish settlement. The system should confirm canonicality, execution success, and the network’s strongest finality evidence before irreversible fulfillment.
Technical takeaway: A consensus round is one bounded decision attempt; only a quorum-backed commit turns its proposal into accepted history.
Key Takeaway
A consensus round is one bounded decision attempt; only a quorum-backed commit turns its proposal into accepted history.
Sources
- Ethereum Documentation: Consensus Mechanisms — Ethereum Foundation (2026-07-30)
- Bitcoin Developer Guide: Block Chain — Bitcoin.org (2026-07-30)