Skip to content

Commit 610229f

Browse files
committed
chore: change env variables name
1 parent e895d50 commit 610229f

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ ZKM_PROVER=local
88
# Network configuration
99
# See more: https://docs.zkm.io/dev/prover.html#network-prover
1010
ZKM_PRIVATE_KEY=
11-
CERT_PATH=
12-
KEY_PATH=
11+
SSL_CERT_PATH=
12+
SSL_KEY_PATH=

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ each of which can take varying amounts of time. Before running the prover, ensur
115115
```env
116116
ZKM_PROVER=network
117117
ZKM_PRIVATE_KEY=
118-
CERT_PATH=
119-
KEY_PATH=
118+
SSL_CERT_PATH=
119+
SSL_KEY_PATH=
120120
```
121121

122122
### Deploy the Verifier Contract

host/tool/certgen.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -e
22

3-
CN=''
3+
CN='ssl'
44
SSL_IP=''
55
SSL_DNS=''
66

@@ -158,4 +158,4 @@ openssl x509 -sha256 -req -in ${SSL_CSR} -CA ${CA_CERT} \
158158
-days ${SSL_EXPIRE} -extensions v3_req \
159159
-extfile ${SSL_CONFIG} >/dev/null || exit 1
160160

161-
echo "====> Complete"
161+
echo "====> Complete"

0 commit comments

Comments
 (0)