summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/src/reactor/account.rs2
-rw-r--r--lib/src/reactor/device.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/src/reactor/account.rs b/lib/src/reactor/account.rs
index c6be1ce..59913b5 100644
--- a/lib/src/reactor/account.rs
+++ b/lib/src/reactor/account.rs
@@ -14,6 +14,6 @@ pub struct AccountReactor(GossipReactor);
impl AccountReactor {
pub(super) fn new(profile: Arc<RwLock<Profile>>) -> Self {
- Self(GossipReactor::new(profile))
+ unimplemented!()
}
}
diff --git a/lib/src/reactor/device.rs b/lib/src/reactor/device.rs
index c013db6..1014ca1 100644
--- a/lib/src/reactor/device.rs
+++ b/lib/src/reactor/device.rs
@@ -14,6 +14,6 @@ pub struct DeviceReactor(GossipReactor);
impl DeviceReactor {
pub(super) fn new(profile: Arc<RwLock<Profile>>) -> Self {
- Self(GossipReactor::new(profile))
+ unimplemented!()
}
}