From 9d1293ea03bce2a2a172a64a8086c95f8c50ebbc Mon Sep 17 00:00:00 2001 From: "Rene V. Vergara" Date: Fri, 20 Dec 2024 12:31:01 -0500 Subject: [PATCH] rvv001 - zenith.cfg updated and commented for package distribution. --- zcash-haskell | 2 +- zenith.cfg | 33 ++++++++++++++++++++++++++++++++- 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/zcash-haskell b/zcash-haskell index d45bd7d..7d3ae36 160000 --- a/zcash-haskell +++ b/zcash-haskell @@ -1 +1 @@ -Subproject commit d45bd7dcf3c3cf4e893900a1774d24b14bf56591 +Subproject commit 7d3ae36d2b48b8ed91a70e40a77fb7efe57765a0 diff --git a/zenith.cfg b/zenith.cfg index efedae5..f10ab4c 100644 --- a/zenith.cfg +++ b/zenith.cfg @@ -1,5 +1,36 @@ +# +# Zenith Configuration File +# +# ------------------------------------------------------------- +# nodeUser - +# ------------------------------------------------------------- nodeUser = "user" +# ------------------------------------------------------------- +# nodePwd - nodePwd = "superSecret" -dbFilePath = "zenith.db" +# ------------------------------------------------------------- +# dbFileName - contains the SQLite database name used for +# keeping all Zenith's data +# default = zenith.db +# +dbFileName = "zenith.db" +# ------------------------------------------------------------- +# zebraHost - Zebra IP +# Default - "127.0.0.1" zebraHost = "127.0.0.1" +# ------------------------------------------------------------- +# zebraPort - Port used for access Zebra API endpoints +# must be the same port configured for your +# Zebra node zebraPort = 18232 +# ------------------------------------------------------------- +# currencyCode - ISO 4217 currency code +# example of currency codes are: +# United States -> currencyCode = "usd" +# Canada -> currencyCode = "cnd" +# Australia -> currencyCode = "aud" +# Euro Region -> currencyCode = "eur" +# Great Britain -> currencyCode = "gbp" +# Japan -> currencyCode = "jpy" +# +currencyCode = "usd"