rename files

This commit is contained in:
collin 2020-08-12 12:58:32 -07:00
parent f986b21b1f
commit 251783b9bc
7 changed files with 9 additions and 9 deletions

View File

@ -7,8 +7,8 @@ pub use self::state_leaf_values::*;
pub mod state_values;
pub use self::state_values::*;
pub mod verify_local_data_commitment;
pub use self::verify_local_data_commitment::*;
pub mod local_data_commitment;
pub use self::local_data_commitment::*;
pub mod verify_record_commitment;
pub use self::verify_record_commitment::*;
pub mod record_commitment;
pub use self::record_commitment::*;

View File

@ -1,4 +1,4 @@
use crate::{record_commitment::verify_record_commitment, LocalDataVerificationError, StateLeafValues, StateValues};
use crate::{verify_record_commitment, LocalDataVerificationError, StateLeafValues, StateValues};
use leo_typed::Input as TypedInput;
use snarkos_algorithms::commitment_tree::CommitmentMerklePath;

View File

@ -4,5 +4,5 @@ pub use self::state_values::*;
pub mod state_leaf_values;
pub use self::state_leaf_values::*;
pub mod verify_local_data_commitment;
pub use self::verify_local_data_commitment::*;
pub mod local_data_commitment;
pub use self::local_data_commitment::*;

View File

@ -1,5 +1,5 @@
pub mod dpc_record_values;
pub use self::dpc_record_values::*;
pub mod verify_record_commitment;
pub use self::verify_record_commitment::*;
pub mod record_commitment;
pub use self::record_commitment::*;