Skip to content

Commit

Permalink
Remove the re-export of jubjub and bls libs (#618)
Browse files Browse the repository at this point in the history
Resolves: #558
  • Loading branch information
ZER0 authored Oct 14, 2021
1 parent 5748ed8 commit 21ffc38
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,3 @@ pub mod notes {
#[doc = include_str!("../docs/notes-KZG10.md")]
pub mod kzg10_docs {}
}

pub use dusk_bls12_381 as bls12_381;
pub use dusk_jubjub as jubjub;
2 changes: 1 addition & 1 deletion src/plonkup/multiset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
//
// Copyright (c) DUSK NETWORK. All rights reserved.

use crate::bls12_381::BlsScalar;
use crate::error::Error;
use crate::fft::{EvaluationDomain, Polynomial};
use alloc::vec::Vec;
use core::ops::{Add, Mul};
use dusk_bls12_381::BlsScalar;
use dusk_bytes::{DeserializableSlice, Serializable};

/// MultiSet is struct containing vectors of scalars, which
Expand Down
2 changes: 1 addition & 1 deletion src/plonkup/table/witness_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
//
// Copyright (c) DUSK NETWORK. All rights reserved.

use crate::bls12_381::BlsScalar;
use crate::error::Error;
use crate::plonkup::MultiSet;
use crate::plonkup::{PlonkupTable3Arity, PlonkupTable4Arity};
use dusk_bls12_381::BlsScalar;

/// This witness table contains quieries
/// to a lookup table for lookup gates
Expand Down

0 comments on commit 21ffc38

Please sign in to comment.