Skip to content

Commit bf4688b

Browse files
mergify[bot]rootulpwilliambanfield
authored
fix: header link (backport tendermint#9574) (tendermint#9585)
* fix: header link (tendermint#9574) Co-authored-by: William Banfield <[email protected]> (cherry picked from commit c8f2032) # Conflicts: # spec/core/data_structures.md * fix conflict Co-authored-by: Rootul P <[email protected]> Co-authored-by: William Banfield <[email protected]>
1 parent dbf22de commit bf4688b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/core/data_structures.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ and a list of evidence of malfeasance (ie. signing conflicting votes).
4646

4747
| Name | Type | Description | Validation |
4848
|--------|-------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------|
49-
| Header | [Header](#header) | Header corresponding to the block. This field contains information used throughout consensus and other areas of the protocol. To find out what it contains, visit [header] (#header) | Must adhere to the validation rules of [header](#header) |
49+
| Header | [Header](#header) | Header corresponding to the block. This field contains information used throughout consensus and other areas of the protocol. To find out what it contains, visit [header](#header) | Must adhere to the validation rules of [header](#header) |
5050
| Data | [Data](#data) | Data contains a list of transactions. The contents of the transaction is unknown to Tendermint. | This field can be empty or populated, but no validation is performed. Applications can perform validation on individual transactions prior to block creation using [checkTx](../abci/abci.md#checktx).
5151
| Evidence | [EvidenceList](#evidence_list) | Evidence contains a list of infractions committed by validators. | Can be empty, but when populated the validations rules from [evidenceList](#evidence_list) apply |
5252
| LastCommit | [Commit](#commit) | `LastCommit` includes one vote for every validator. All votes must either be for the previous block, nil or absent. If a vote is for the previous block it must have a valid signature from the corresponding validator. The sum of the voting power of the validators that voted must be greater than 2/3 of the total voting power of the complete validator set. The number of votes in a commit is limited to 10000 (see `types.MaxVotesCount`). | Must be empty for the initial height and must adhere to the validation rules of [commit](#commit). |

0 commit comments

Comments
 (0)