You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
3.3 KiB

  1. ---
  2. order: 2
  3. ---
  4. # BFT Time
  5. Tendermint provides a deterministic, Byzantine fault-tolerant, source of time.
  6. Time in Tendermint is defined with the Time field of the block header.
  7. It satisfies the following properties:
  8. - Time Monotonicity: Time is monotonically increasing, i.e., given
  9. a header H1 for height h1 and a header H2 for height `h2 = h1 + 1`, `H1.Time < H2.Time`.
  10. - Time Validity: Given a set of Commit votes that forms the `block.LastCommit` field, a range of
  11. valid values for the Time field of the block header is defined only by
  12. Precommit messages (from the LastCommit field) sent by correct processes, i.e.,
  13. a faulty process cannot arbitrarily increase the Time value.
  14. In the context of Tendermint, time is of type int64 and denotes UNIX time in milliseconds, i.e.,
  15. corresponds to the number of milliseconds since January 1, 1970. Before defining rules that need to be enforced by the
  16. Tendermint consensus protocol, so the properties above holds, we introduce the following definition:
  17. - median of a Commit is equal to the median of `Vote.Time` fields of the `Vote` messages,
  18. where the value of `Vote.Time` is counted number of times proportional to the process voting power. As in Tendermint
  19. the voting power is not uniform (one process one vote), a vote message is actually an aggregator of the same votes whose
  20. number is equal to the voting power of the process that has casted the corresponding votes message.
  21. Let's consider the following example:
  22. - we have four processes p1, p2, p3 and p4, with the following voting power distribution (p1, 23), (p2, 27), (p3, 10)
  23. and (p4, 10). The total voting power is 70 (`N = 3f+1`, where `N` is the total voting power, and `f` is the maximum voting
  24. power of the faulty processes), so we assume that the faulty processes have at most 23 of voting power.
  25. Furthermore, we have the following vote messages in some LastCommit field (we ignore all fields except Time field):
  26. - (p1, 100), (p2, 98), (p3, 1000), (p4, 500). We assume that p3 and p4 are faulty processes. Let's assume that the
  27. `block.LastCommit` message contains votes of processes p2, p3 and p4. Median is then chosen the following way:
  28. the value 98 is counted 27 times, the value 1000 is counted 10 times and the value 500 is counted also 10 times.
  29. So the median value will be the value 98. No matter what set of messages with at least `2f+1` voting power we
  30. choose, the median value will always be between the values sent by correct processes.
  31. We ensure Time Monotonicity and Time Validity properties by the following rules:
  32. - let rs denotes `RoundState` (consensus internal state) of some process. Then
  33. `rs.ProposalBlock.Header.Time == median(rs.LastCommit) &&
  34. rs.Proposal.Timestamp == rs.ProposalBlock.Header.Time`.
  35. - Furthermore, when creating the `vote` message, the following rules for determining `vote.Time` field should hold:
  36. - if `rs.LockedBlock` is defined then
  37. `vote.Time = max(rs.LockedBlock.Timestamp + time.Millisecond, time.Now())`, where `time.Now()`
  38. denotes local Unix time in milliseconds
  39. - else if `rs.Proposal` is defined then
  40. `vote.Time = max(rs.Proposal.Timestamp + time.Millisecond,, time.Now())`,
  41. - otherwise, `vote.Time = time.Now())`. In this case vote is for `nil` so it is not taken into account for
  42. the timestamp of the next block.