Skip to content

Commit

Permalink
Merge pull request #122 from cheqd/bugfix/default-home-directory
Browse files Browse the repository at this point in the history
Fix default home directory
  • Loading branch information
askolesov authored Sep 3, 2021
2 parents 7c96818 + 15776cb commit 9acfb59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func init() {
panic(err)
}

DefaultNodeHome = filepath.Join(userHomeDir, "."+Name)
DefaultNodeHome = filepath.Join(userHomeDir, ".cheqdnode")
}

// App extends an ABCI application, but with most of its parameters exported.
Expand Down

0 comments on commit 9acfb59

Please sign in to comment.