chain: create a transparent module.

This commit is contained in:
Henry de Valence 2020-08-15 20:51:03 -07:00
parent e8f923ec86
commit 7298e7c636
6 changed files with 5 additions and 9 deletions

View File

@ -1,3 +0,0 @@
//! Address types.
pub mod transparent;

View File

@ -1,3 +0,0 @@
//! Key types.
pub mod transparent;

View File

@ -13,9 +13,6 @@ extern crate serde;
mod merkle_tree;
pub mod addresses;
pub mod keys;
pub mod amount;
pub mod block;
pub mod parameters;

View File

@ -1 +1,6 @@
//! Transparent (Bitcoin-inherited) functionality.
mod address;
mod keys;
pub use address::TransparentAddress;