We do not want to interfere with the timing assumptions of Tendermint consensus algorithm.
We will postulate a timing restriction, which, if satisfied, ensures that liveness is preserved.In general the local clock may drift from the global time. (It may progress faster, e.g., one second of clock time might take 1.005 seconds of real-time). As a result the local clock and the global clock may be measured in different time units. Usually, the message delay is measured in global clock time units. To estimate the correct local timeout precisely, we would need to estimate the clock time duration of a message delay taking into account the clock drift. For simplicity we ignore this, and directly postulate the message delay assumption in terms of local time.
[Time-Validity] If a correct validator decides on t then t is “OK” (we will formalize this below), even if up to 2f validators are faulty.However, the properties of Tendermint consensus algorithm are of more interest with respect to the blocks, that is, what is written into a block and when. We therefore, in the following, will give the safety and liveness properties from this block-centric viewpoint.
For this, observe that the time t decided at consensus height k will be written in the block of height k+1, and will be supported by 2f + 1PRECOMMIT messages of the same consensus round r. The time written in the block, we will denote by b.time (to distinguish it from the term bfttime used for median-based time). For this, it is important to have the following consensus algorithm property:
Note that the relation between consensus decisions, on the one hand, and blocks, on the other hand, is not immediate; in particular if we consider time: In the proposed solution,
as validators may decide in different rounds, they may decide on different times.
The proposer of the next block, may pick a commit (at least 2f + 1PRECOMMIT messages from one round), and thus it picks a decision round that is going to become “canonic”.
As a result, the proposer implicitly has a choice of one of the times that belong to rounds in which validators decided. Observe that this choice was implicitly the case already in the median-based bfttime.
However, as most consensus instances terminate within one round on the Cosmos hub, this is hardly ever observed in practice.Finally, observe that the agreement ([Agreement] and [Time-Agreement]) properties are based on the Cosmos security model CMBC-FM-2THIRDS.0 of more than 2/3 correct validators, while [Time-Validity] is based on more than 1/3 correct validators.
Here we will provide specifications that relate local time to block time. However, since we do not assume (by now) that local time is linked to real-time, these specifications also do not provide a relation between block time and real-time. Such properties are given later.For a correct validator V, let beginConsensus(V,k) be the local time when it sets its height to k, and let endConsensus(V,k) be the time when it sets its height to k + 1.Let
beginConsensus(k) be the minimum over beginConsensus(V,k), and
last-beginConsensus(k) be the maximum over beginConsensus(V,k), and
endConsensus(k) the maximum over endConsensus(V,k)
for all correct validators V.
Observe that beginConsensus(k) <= last-beginConsensus(k) and if local clocks are monotonic, then last-beginConsensus(k) <= endConsensus(k).
We assume that during one consensus instance, local clocks are not set back, in particular for each correct validator V and each height k, we have beginConsensus(V,k) < endConsensus(V,k).
[PBTS-CONSENSUS-TIME-VALID.0] is based on an analysis where the proposer is faulty (and does does not count towards beginConsensus(k) and endConsensus(k)), and we estimate the times at which correct validators receive and accept the propose message. If the proposer is correct we obtain
We want to give a property that can be exploited from the outside, that is, given a block with some time stored in it, what is the estimate at which real-time the block was generated. To do so, we need to link clock-time to real-time; which is not the case with [PBTS-CLOCK.0]. For this, we introduce the following assumption on the clocks:
There is a system parameter ACCURACY, such that for all real-times t and all correct validators V,
| C_V(t) - t | < ACCURACY.
ACCURACY is not necessarily visible at the code level. The properties below just show that the smaller
its value, the closer the block time will be to real-time
Let b be a block with a valid commit that contains at least one precommit message by a correct validator (and proposalTime is the time for the height/round propose message m that triggered the precommit). Then:propRecvTime(m) - ACCURACY - PRECISION < b.time < propRecvTime(m) + ACCURACY + PRECISION + MSGDELAY
Let b be a block with a valid commit that contains at least one precommit message by a correct validator (and proposalTime is the time for the height/round propose message m that triggered the precommit). Then, if the proposer is correct:proposalTime(m) - ACCURACY < b.time < proposalTime(m) + ACCURACY
by the algorithm at time proposalTime(m) the proposer fixes m.time <- now_p(proposalTime(m))
“triggered the PRECOMMIT” implies that the data in m and b are “matching”, that is, m proposed the values that are actually stored in b.