-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
20 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# pallet-grandpa-finality-verifier | ||
License: Apache-2.0 | ||
|
||
GRANDPA finality verifier is used to verify the justifications provided within the substrate based Blocks indexing them on our DSN. | ||
GRANDPA finality verifier is used to verify the justifications provided within the substrate based blocks indexing them on our DSN. | ||
|
||
The pallet provides the following functionality | ||
- provides a basic abstraction over any substrate based chains through `Chain` trait. | ||
- decodes the block and its components. | ||
- verifies the blocks and its justifications using the current authority set the block was produced in | ||
- imports any authority set changes from the header after the verification | ||
The pallet is responsible for: | ||
- providing a basic abstraction over any substrate based chains through `Chain` trait. | ||
- decoding the block and its components. | ||
- verifying the blocks and its justifications using the current authority set the block was produced in. | ||
- importing any authority set changes from the header after the verification. | ||
|
||
This pallet does not | ||
- verifies or recognizes the forks. So this is left for the admin to reinitialize the chain state after the fork | ||
This pallet is not responsible for: | ||
- verifying or recognizing the forks. So this is left for the admin to reinitialize the chain state after the fork. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters