From cb5a7828563a9d9a27d9709918ee9918c94c0279 Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs <473256+jazzz@users.noreply.github.com> Date: Mon, 27 Apr 2026 13:49:37 -0700 Subject: [PATCH] Add removal todo --- core/conversations/src/account.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/conversations/src/account.rs b/core/conversations/src/account.rs index a843345..b6d5bde 100644 --- a/core/conversations/src/account.rs +++ b/core/conversations/src/account.rs @@ -13,9 +13,9 @@ pub struct LogosAccount { } impl LogosAccount { - /// Create an LogosAccount using a pre-defined identifier. - /// This should only be used in test scenarios where the identifiers can be chosen - /// to ensure no conflicts between instances. Not suitable for production use. + /// Create a test LogosAccount using a pre-defined identifier. + /// This should only be used during MLS integration. Not suitable for production use. + /// TODO: (P1) Remove once implementation is ready. pub fn new_test(explicit_id: impl Into) -> Self { let signing_key = Ed25519SigningKey::generate(); let verifying_key = signing_key.verifying_key();