From 7eb042df793f2750977cbac8f1cc55de97c2de88 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Sat, 1 Mar 2025 17:33:13 +0000 Subject: [PATCH] modified: Test-Suite.md --- Test-Suite.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Test-Suite.md b/Test-Suite.md index d55934c..c4b9ea3 100644 --- a/Test-Suite.md +++ b/Test-Suite.md @@ -157,9 +157,14 @@ $ cd .. $ sudo apt-get install golang # skip this if Go is already installed $ git clone https://github.com/FiloSottile/zcash-mini $ cd zcash-mini +$ sed -e "s@github.com/FiloSottile/@@" -i main.go +$ sed -e "s@github.com/FiloSottile/@@" -i zcash/address.go +$ sed -e "s@github.com/btcsuite@zcash-mini@" -i zcash/address.go +$ sed -e "s@golang.org/x@zcash-mini@" -i zcash/address.go +$ mv vendor/github.com/btcsuite/btcutil . +$ mv vendor/golang.org/x/crypto . $ go mod init zcash-mini -$ go mod tidy -$ go build -mod=mod # or just ’go build’ +$ go build -mod=mod $ sudo install --strip ./zcash-mini /usr/local/bin $ cd .. ```