Update definitions of block and slot
This commit is contained in:
@@ -19,13 +19,17 @@ A fraction of a [block](#block); the smallest unit sent between
|
|||||||
#### block
|
#### block
|
||||||
|
|
||||||
A contiguous set of [entries](#entry) on the ledger covered by a
|
A contiguous set of [entries](#entry) on the ledger covered by a
|
||||||
[vote](#ledger-vote). The duration of a block is some cluster-configured
|
[vote](#ledger-vote). A [leader](#leader) produces at most one block per
|
||||||
number of [ticks](#tick). Also called [voting period](#voting-period).
|
[slot](#slot).
|
||||||
|
|
||||||
#### block height
|
#### block height
|
||||||
|
|
||||||
The number of [blocks](#block) beneath the current block plus one. The [genesis
|
The number of [blocks](#block) beneath the current block. The first block after
|
||||||
block](#genesis-block), for example, has block height 1.
|
the [genesis block](#genesis block) has height zero.
|
||||||
|
|
||||||
|
#### block id
|
||||||
|
|
||||||
|
The [entry id](#entry-id) of the last entry in a [block](#block).
|
||||||
|
|
||||||
#### bootstrap leader
|
#### bootstrap leader
|
||||||
|
|
||||||
@@ -64,6 +68,13 @@ typically serves to validate and sign transactions.
|
|||||||
An entry on the [ledger](#ledger) either a [tick](#tick) or a [transactions
|
An entry on the [ledger](#ledger) either a [tick](#tick) or a [transactions
|
||||||
entry](#transactions-entry).
|
entry](#transactions-entry).
|
||||||
|
|
||||||
|
#### entry id
|
||||||
|
|
||||||
|
A globally unique identifier that is also a proof that the [entry](#entry) was
|
||||||
|
generated after a duration of time, all [transactions](#transaction) included
|
||||||
|
in the entry, and all previous entries on the [ledger](#ledger). See [Proof of
|
||||||
|
History](#proof-of-history).
|
||||||
|
|
||||||
#### epoch
|
#### epoch
|
||||||
|
|
||||||
The time, i.e. number of [slots](#slot), for which a [leader
|
The time, i.e. number of [slots](#slot), for which a [leader
|
||||||
@@ -166,7 +177,7 @@ See [Proof of History](#proof-of-history).
|
|||||||
|
|
||||||
The code that interprets [instructions](#instruction).
|
The code that interprets [instructions](#instruction).
|
||||||
|
|
||||||
#### program ID
|
#### program id
|
||||||
|
|
||||||
The public key of the [account](#account) containing a [program](#program).
|
The public key of the [account](#account) containing a [program](#program).
|
||||||
|
|
||||||
@@ -192,8 +203,8 @@ The private key of a [keypair](#keypair).
|
|||||||
|
|
||||||
#### slot
|
#### slot
|
||||||
|
|
||||||
The time (i.e. number of [blocks](#block)) for which a [leader](#leader)
|
The period of time for which a [leader](#leader) ingests transactions and
|
||||||
ingests transactions and produces [entries](#entry).
|
produces a [block](#block).
|
||||||
|
|
||||||
#### sol
|
#### sol
|
||||||
|
|
||||||
@@ -252,7 +263,3 @@ that it ran, which can then be verified in less time than it took to produce.
|
|||||||
#### vote
|
#### vote
|
||||||
|
|
||||||
See [ledger vote](#ledger-vote).
|
See [ledger vote](#ledger-vote).
|
||||||
|
|
||||||
#### voting period
|
|
||||||
|
|
||||||
The duration of a [block](#block).
|
|
||||||
|
Reference in New Issue
Block a user