Rename crypto::keygen to crypto::poly.

This commit is contained in:
Andreas Fackler 2018-06-19 15:04:22 +02:00 committed by Vladimir Komendantskiy
parent 36c32822ed
commit 78b2a008c1
2 changed files with 2 additions and 2 deletions

4
mod.rs
View File

@ -1,11 +1,11 @@
pub mod error;
pub mod keygen;
pub mod poly;
#[cfg(feature = "serialization-protobuf")]
pub mod protobuf_impl;
#[cfg(feature = "serialization-serde")]
mod serde_impl;
use self::keygen::{Commitment, Poly};
use self::poly::{Commitment, Poly};
use std::fmt;

View File