fix stupid fucking comment that keagan won't let go

This commit is contained in:
Aiden McClelland
2021-02-04 14:55:25 -07:00
committed by Aiden McClelland
parent 540868220d
commit 9503f754ad

View File

@@ -178,7 +178,8 @@ pub async fn write_services(hidden_services: &ServicesMap) -> Result<(), Error>
}
f.write_all(b"\n").await?;
}
write_lan_services(hidden_services).await?; // I know this doesn't belong here
write_lan_services(hidden_services).await?; // I know this doesn't belong here, should be abstracted along with `write_services`.
// This whole module should be refactored as its no longer just managing tor.
Ok(())
}
@@ -206,6 +207,7 @@ pub async fn write_lan_services(hidden_services: &ServicesMap) -> Result<(), Err
)
.await?;
}
Ok(())
}