Add new config parameter for Zebra port
This commit is contained in:
parent
e86e4c73ab
commit
3ccee4ecb6
2 changed files with 3 additions and 1 deletions
|
@ -202,6 +202,7 @@ main = do
|
|||
dbName <- require config "dbName"
|
||||
nodeUser <- require config "nodeUser"
|
||||
nodePwd <- require config "nodePwd"
|
||||
zebraPort <- require config "zebraPort"
|
||||
if not (null args)
|
||||
then do
|
||||
case head args of
|
||||
|
@ -215,7 +216,7 @@ main = do
|
|||
" ______ _ _ _ \n |___ / (_) | | | \n / / ___ _ __ _| |_| |__ \n / / / _ \\ '_ \\| | __| '_ \\ \n / /_| __/ | | | | |_| | | |\n /_____\\___|_| |_|_|\\__|_| |_|\n Zcash Full Node CLI v0.4.0"
|
||||
}
|
||||
(root nodeUser nodePwd)
|
||||
"cli" -> runZenithCLI dbName
|
||||
"cli" -> runZenithCLI zebraPort dbName
|
||||
_ -> printUsage
|
||||
else printUsage
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
nodeUser = "user"
|
||||
nodePwd = "superSecret"
|
||||
dbName = "zenith.db"
|
||||
zebraPort = 18232
|
||||
|
|
Loading…
Reference in a new issue