-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2904 from autonomys/mmr-sync
Introduce MMR-sync and MMR-request handler.
- Loading branch information
Showing
6 changed files
with
584 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
use sp_mmr_primitives::utils::NodesUtils; | ||
use sp_mmr_primitives::{NodeIndex, INDEXING_PREFIX}; | ||
|
||
pub(crate) mod request_handler; | ||
pub(crate) mod sync; | ||
|
||
pub(crate) fn get_offchain_key(index: NodeIndex) -> Vec<u8> { | ||
NodesUtils::node_canon_offchain_key(INDEXING_PREFIX, index) | ||
} |
Oops, something went wrong.