Skip to content

Commit

Permalink
Merge pull request #230 from ElrondNetwork/feat/change-json-files-path
Browse files Browse the repository at this point in the history
changed the path of the .json files in config folder
  • Loading branch information
iulianpascalau committed Jun 25, 2019
2 parents 0543638 + 33b8809 commit c9d7ca8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions cmd/node/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ VERSION:
genesisFile = cli.StringFlag{
Name: "genesis-file",
Usage: "The node will extract bootstrapping info from the genesis.json",
Value: "genesis.json",
Value: "./config/genesis.json",
}
// nodesFile defines a flag for the path of the initial nodes file.
nodesFile = cli.StringFlag{
Name: "nodesSetup-file",
Usage: "The node will extract initial nodes info from the nodesSetup.json",
Value: "nodesSetup.json",
Value: "./config/nodesSetup.json",
}
// txSignSk defines a flag for the path of the single sign private key used when starting the node
txSignSk = cli.StringFlag{
Expand Down Expand Up @@ -196,7 +196,7 @@ func main() {
app := cli.NewApp()
cli.AppHelpTemplate = nodeHelpTemplate
app.Name = "Elrond Node CLI App"
app.Version = "v0.0.1"
app.Version = "v1.0.4"
app.Usage = "This is the entry point for starting a new Elrond node - the app will start after the genesis timestamp"
app.Flags = []cli.Flag{
genesisFile,
Expand Down

0 comments on commit c9d7ca8

Please sign in to comment.