consensus: move redjubjub to new primitives module
This will let it sit alongside a groth16 verifier.
This commit is contained in:
parent
a987394782
commit
8d4f154c9f
|
@ -20,6 +20,6 @@ pub mod chain;
|
||||||
pub mod checkpoint;
|
pub mod checkpoint;
|
||||||
pub mod mempool;
|
pub mod mempool;
|
||||||
pub mod parameters;
|
pub mod parameters;
|
||||||
pub mod redjubjub;
|
mod primitives;
|
||||||
mod script;
|
mod script;
|
||||||
mod transaction;
|
mod transaction;
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
//! Asynchronous verification of cryptographic primitives.
|
||||||
|
|
||||||
|
pub mod redjubjub;
|
Loading…
Reference in New Issue