Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrect block metadata documentation #378

Merged
merged 1 commit into from
Dec 8, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions docs/source/ledger/ledger.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,11 +234,13 @@ sections

* **Block Metadata**

This section contains the time when the block was written, as well as the
certificate, public key and signature of the block writer. Subsequently, the
block committer also adds a valid/invalid indicator for every transaction,
though this information is not included in the hash, as that is created when
the block is created.
This section contains the certificate and signature of the block creator which is used to verify
the block by network nodes.
Subsequently, the block committer adds a valid/invalid indicator for every transaction into
a bitmap that also resides in the block metadata, as well as a hash of the cumulative state updates
up until and including that block, in order to detect a state fork.
Unlike the block data and header fields, this section is not an input to the block hash computation.


## Transactions

Expand Down