consensus: move redjubjub to new primitives module

This will let it sit alongside a groth16 verifier.
This commit is contained in:
Henry de Valence 2020-08-04 14:01:55 -07:00
parent a987394782
commit 8d4f154c9f
4 changed files with 4 additions and 1 deletions

View File

@ -20,6 +20,6 @@ pub mod chain;
pub mod checkpoint;
pub mod mempool;
pub mod parameters;
pub mod redjubjub;
mod primitives;
mod script;
mod transaction;

View File

@ -0,0 +1,3 @@
//! Asynchronous verification of cryptographic primitives.
pub mod redjubjub;