Rename `mont` to `ecc` in circuit code.

This commit is contained in:
Sean Bowe 2018-02-20 18:18:29 -07:00
parent a1c749e6a0
commit c221bc9126
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
3 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ pub mod uint32;
pub mod blake2s;
pub mod num;
pub mod lookup;
pub mod mont;
pub mod ecc;
pub mod pedersen_hash;
use bellman::SynthesisError;

View File

@ -1,5 +1,5 @@
use super::*;
use super::mont::{
use super::ecc::{
MontgomeryPoint,
EdwardsPoint
};