Remove unused type

Signed-off-by: Alexis Sellier <alexis@radicle.xyz>
This commit is contained in:
Alexis Sellier 2022-10-18 12:37:01 +02:00
parent fbd4fd9fea
commit d3523ccf78
No known key found for this signature in database
1 changed files with 0 additions and 11 deletions

View File

@ -3,14 +3,3 @@ mod types;
pub use store::*;
pub use types::*;
#[derive(Debug)]
pub struct AddressManager<S> {
store: S,
}
impl<S: Store> AddressManager<S> {
pub fn new(store: S) -> Self {
Self { store }
}
}