-
Notifications
You must be signed in to change notification settings - Fork 21
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 #43 from orochi-network/feature/kzg_setup_and_comm…
…it_trace_record Add setup + commit + misc methods
- Loading branch information
Showing
6 changed files
with
129 additions
and
148 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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
/// Merkle tree module | ||
pub struct MerkleCommitmentScheme; | ||
pub struct MerkleCommitmentScheme; |
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,6 +1,6 @@ | ||
/// KZG commitment scheme | ||
pub mod kzg; | ||
/// Commitment scheme using Merkle Tree | ||
pub mod merkle_tree; | ||
/// Commitment scheme using Verkle Tree | ||
pub mod verkle_tree; | ||
/// Commitment scheme using Merkle Tree | ||
pub mod merkle_tree; |
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,2 +1,2 @@ | ||
/// Verkle tree module | ||
pub struct VerkleCommitmentScheme; | ||
pub struct VerkleCommitmentScheme; |
Oops, something went wrong.