From d2d495c43a1307e78743dc183ffc0d0889c56570 Mon Sep 17 00:00:00 2001 From: Henry Tsai Date: Mon, 6 May 2024 14:46:45 -0700 Subject: [PATCH] Fixed C&P comment --- packages/dids/src/methods/did-dht.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dids/src/methods/did-dht.ts b/packages/dids/src/methods/did-dht.ts index 5d49a35ee..8add749c0 100644 --- a/packages/dids/src/methods/did-dht.ts +++ b/packages/dids/src/methods/did-dht.ts @@ -1268,7 +1268,7 @@ export class DidDhtDocument { for (const gatewayUri of authoritativeGatewayUris || []) { nsRecords.push({ type : 'NS', - name : '_did.' + DidDhtDocument.getUniqueDidSuffix(didDocument.id) + '.', // name of a Root Record MUST end in `.` + name : '_did.' + DidDhtDocument.getUniqueDidSuffix(didDocument.id) + '.', // name of an NS record a authoritative gateway MUST end in `.` ttl : DNS_RECORD_TTL, data : gatewayUri + '.' });