Make zcash_primitives::JUBJUB the canonical instantiation of JubjubBls12

This commit is contained in:
Jack Grigg
2018-09-14 09:00:27 +01:00
parent 6b43b2d0d6
commit 09a20aacfe
5 changed files with 8 additions and 19 deletions

View File

@@ -15,5 +15,5 @@ mod serialize;
pub mod transaction;
lazy_static! {
static ref JUBJUB: JubjubBls12 = { JubjubBls12::new() };
pub static ref JUBJUB: JubjubBls12 = { JubjubBls12::new() };
}