From 1438996ec2514495e17298a772a3d11b798339f9 Mon Sep 17 00:00:00 2001 From: Jake Taylor <jake@elixxir.io> Date: Wed, 6 Jul 2022 12:43:08 -0500 Subject: [PATCH] move mainnet crt to shared directory --- connectClient/main.go | 2 +- connectClient/mainnet.crt => mainnet.crt | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename connectClient/mainnet.crt => mainnet.crt (100%) diff --git a/connectClient/main.go b/connectClient/main.go index 581204a..5000ed2 100644 --- a/connectClient/main.go +++ b/connectClient/main.go @@ -32,7 +32,7 @@ func main() { // but it is actually a marshalled file with a cryptographic signature attached. // This may change in the future. ndfURL := "https://elixxir-bins.s3.us-west-1.amazonaws.com/ndf/mainnet.json" - certificatePath := "mainnet.crt" + certificatePath := "../mainnet.crt" ndfPath := "ndf.json" // Check if state exists diff --git a/connectClient/mainnet.crt b/mainnet.crt similarity index 100% rename from connectClient/mainnet.crt rename to mainnet.crt -- GitLab