From 13468eb06c9e3437667188d6e731316cb56d2f8b Mon Sep 17 00:00:00 2001 From: Virgil Date: Fri, 3 Apr 2026 22:47:53 +0000 Subject: [PATCH] Refine DNS AX documentation --- action.go | 2 +- service.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.go b/action.go index b43c8d7..38bb61e 100644 --- a/action.go +++ b/action.go @@ -38,7 +38,7 @@ type ActionRegistrar interface { // ActionCaller resolves named actions from another Core surface. // -// payload, ok, err := caller.CallAction(context.Background(), "blockchain.chain.aliases", nil) +// aliases, ok, err := caller.CallAction(context.Background(), "blockchain.chain.aliases", map[string]any{}) type ActionCaller interface { CallAction(ctx context.Context, name string, values map[string]any) (any, bool, error) } diff --git a/service.go b/service.go index 88ad6ba..2047508 100644 --- a/service.go +++ b/service.go @@ -124,7 +124,7 @@ type Service struct { // Records: map[string]dns.NameRecords{ // "gateway.charon.lthn": {A: []string{"10.10.10.10"}}, // }, -// RecordTTL: 15 * time.Second, +// RecordTTL: 15 * time.Second, // HSDURL: "http://127.0.0.1:14037", // MainchainURL: "http://127.0.0.1:14037", // }) -- 2.45.3