Skip to content

Commit

Permalink
feat(): fix sqlite db file name
Browse files Browse the repository at this point in the history
  • Loading branch information
zyjblockchain committed Dec 1, 2022
1 parent 3776c41 commit 7299974
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/wdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
)

const (
sqliteName = "seed.db"
sqliteName = "seed.sqlite"
)

var log = common.NewLog("config")
Expand Down
2 changes: 1 addition & 1 deletion wdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

const (
sqliteName = "seed.db"
sqliteName = "seed.sqlite"
)

type Wdb struct {
Expand Down

0 comments on commit 7299974

Please sign in to comment.