forked from nervosnetwork/muta
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(consensus): joint overlord and chain (nervosnetwork#32)
* refactor consensus engine * refactor consensus provider * cargo clippy * cargo clippy * add unit test for fixed full transitions * cargo clippy * cargo fmt * cargo clippy * cargo update * impl crypto for overlord * develop update epoch * develop init
- Loading branch information
Showing
18 changed files
with
385 additions
and
156 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 +1 @@ | ||
too-many-arguments-threshold = 15 | ||
too-many-arguments-threshold = 10 |
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,4 +1,7 @@ | ||
pub use ophelia::{Crypto, CryptoError, PrivateKey, PublicKey, Signature}; | ||
pub use ophelia_bls12381::{ | ||
BLS12381PrivateKey, BLS12381PublicKey, BLS12381Signature, BLS12381Threshold, BLS12381, | ||
}; | ||
pub use ophelia_secp256k1::{ | ||
Secp256k1, Secp256k1PrivateKey, Secp256k1PublicKey, Secp256k1Signature, | ||
}; |
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
Oops, something went wrong.