tordam

A library for peer discovery inside the Tor network
git clone https://git.parazyd.org/tordam
Log | Files | Refs | README | LICENSE

commit 6ead90df16d53a7699efb5405129c053ef538d1f
parent 53f4dc327a13a5dc72ab93d34717dbb6d7a3d396
Author: parazyd <parazyd@dyne.org>
Date:   Fri,  8 Dec 2017 18:06:18 +0100

Use dirauth.py from $PATH

Diffstat:
Mpkg/lib/helpers.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/lib/helpers.go b/pkg/lib/helpers.go @@ -34,7 +34,7 @@ func FetchHSPubkey(addr string) string { log.Println("Fetching pubkey for:", addr) - cmd := exec.Command("./dirauth.py", addr) + cmd := exec.Command("dirauth.py", addr) cmd.Stdout = &outb cmd.Stderr = &errb