diff --git a/app/walletBackend/utils/walletUtils.ts b/app/walletBackend/utils/walletUtils.ts index e0981260e..326f1919f 100644 --- a/app/walletBackend/utils/walletUtils.ts +++ b/app/walletBackend/utils/walletUtils.ts @@ -81,7 +81,7 @@ export async function walletExists(): Promise { // Runs before every wallet init. A custom (off-registry) server pins migration // transmission to itself, since no registry pool applies. A registry server -// leaves it unset so the library's curated Correspondent pool, which excludes +// leaves it unset so the library's curated Destination pool, which excludes // the sync operator, routes instead. async function applyBroadcastCandidates( serverUri: string, diff --git a/rust/lib/src/lib.rs b/rust/lib/src/lib.rs index c5ed32fb7..1013841c6 100644 --- a/rust/lib/src/lib.rs +++ b/rust/lib/src/lib.rs @@ -348,7 +348,7 @@ lazy_static! { } // An optional dedicated migration-transmission endpoint, read at every client -// construction. The library owns the curated Correspondent pool and always +// construction. The library owns the curated Destination pool and always // excludes the synchronization operator (ADR 0022), so a mixnet migration works // without any app input. `Some` names one dedicated endpoint distinct from the // sync operator; `None` (the default) lets the library draw its curated pool. @@ -608,7 +608,7 @@ fn build_client_config( None => builder, }; // Point migration transmission at a dedicated endpoint when the app set - // one. Absent it, the library draws its curated Correspondent pool. + // one. Absent it, the library draws its curated Destination pool. let migration_uri = MIGRATION_TRANSMISSION_URI .read() .ok() @@ -624,7 +624,7 @@ fn build_client_config( /// client construction — `{ transmissionUri: "" }` names one endpoint /// distinct from the sync operator, while `null`, `{}`, or the legacy /// `{ candidates, allowSyncEndpoint }` shape clears it so the library's -/// embedded curated Correspondent pool, which always excludes the +/// embedded curated Destination pool, which always excludes the /// synchronization operator, routes instead. pub fn set_broadcast_candidates(candidates_json: String) -> Result { let parsed = json::parse(&candidates_json)