From 6c6a29ee10f6e59bc7ea1ddc47242ffc979396bb Mon Sep 17 00:00:00 2001 From: Hassan Malik Date: Wed, 21 Aug 2024 12:05:27 -0400 Subject: [PATCH] fix example --- SIPS/sip-12.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SIPS/sip-12.md b/SIPS/sip-12.md index 1f171dd..41e5b06 100644 --- a/SIPS/sip-12.md +++ b/SIPS/sip-12.md @@ -87,7 +87,7 @@ export const onNameLookup: OnNameLookupHandler = async ({ if (domain) { - resolution = { protocol: /* Domain protocol */ , resolvedAddress: /* Get domain resolution */ }; + resolution = { protocol: /* Domain protocol */ , resolvedAddress: /* Get domain resolution */, domainName: /* Domain name that the resolved address matches against */ }; return { resolvedAddresses: [resolution] }; }