mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 01:47:55 +00:00
a30092ab42
* Add markdown linting - add linter default rules - adapt rules to current code - fix the code for linting to pass - add CI check fix #1243 * Fix markdown for Substrate * Fix tooling install * Fix workflow * Add documentation * Remove trailing spaces * Update .github/.markdownlint.yaml Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix mangled markdown/lists * Fix captalization issues on known words
16 lines
635 B
Markdown
16 lines
635 B
Markdown
Aura (Authority-round) consensus in Substrate.
|
|
|
|
Aura works by having a list of authorities A who are expected to roughly
|
|
agree on the current time. Time is divided up into discrete slots of t
|
|
seconds each. For each slot s, the author of that slot is A[s % |A|].
|
|
|
|
The author is allowed to issue one block but not more during that slot,
|
|
and it will be built upon the longest valid chain that has been seen.
|
|
|
|
Blocks from future steps will be either deferred or rejected depending on how
|
|
far in the future they are.
|
|
|
|
NOTE: Aura itself is designed to be generic over the crypto used.
|
|
|
|
License: GPL-3.0-or-later WITH Classpath-exception-2.0
|