diff --git a/radicle-node/src/address.rs b/radicle-node/src/address.rs index 52ea1916..bc609522 100644 --- a/radicle-node/src/address.rs +++ b/radicle-node/src/address.rs @@ -3,14 +3,3 @@ mod types; pub use store::*; pub use types::*; - -#[derive(Debug)] -pub struct AddressManager { - store: S, -} - -impl AddressManager { - pub fn new(store: S) -> Self { - Self { store } - } -}