taldir

Directory service to resolve wallet mailboxes by messenger addresses
Log | Files | Refs | Submodules | README | LICENSE

commit 5d26139353011c22f4924b4ed94a367d2c3847ab
parent 0695f472d3030238ad3de2e673286bf1c45940a0
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date:   Sat, 21 Mar 2026 09:21:39 +0100

rename

Diffstat:
MMakefile.in | 2+-
Mcmd/taldir-cli/main.go | 5++---
2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/Makefile.in b/Makefile.in @@ -56,6 +56,6 @@ gana: ./contrib/gana_update.sh dist: - git archive --format=tar.gz -o taldir-${GITVER}.tar.gz --prefix=taldir-${GITVER}/ HEAD + git archive --format=tar.gz -o taler-directory-${GITVER}.tar.gz --prefix=taler-directory-${GITVER}/ HEAD .PHONY: all gana server tools check format uninstall install dist diff --git a/cmd/taldir-cli/main.go b/cmd/taldir-cli/main.go @@ -34,10 +34,9 @@ import ( ) var ( - version string + version string ) - // Hashes the alias with its type in a prefix-free fashion // SHA512(len(atype||alias)||atype||alias) func hashAlias(atype string, alias string) []byte { @@ -87,7 +86,7 @@ func main() { fmt.Printf("%s %s", filepath.Base(fullName), version) return } - host := _cfg.Section("taldir").Key("base_url").MustString("http://localhost") + host := _cfg.Section("taldir").Key("base_url").MustString("http://localhost") if *solveFlag { if len(*challengeFlag) == 0 || len(*pubkeyFlag) == 0 { fmt.Println("You need to provide an activation challenge and a public key to generate a solution")