Skip to content

Commit 70958c1

Browse files
committed
Change db key names to lowercase
1 parent 0d23379 commit 70958c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/db/peerstore.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ var (
2222
// TODO: put it into a config-variable
2323
ExportLoopTime time.Duration = 1 * time.Minute
2424
// DB config-options (TODO: unnecessary so far, we just have 2 of them)
25-
BoltDBKey string = "BoltDB"
26-
MemoryKey string = "Memory"
25+
BoltDBKey string = "bolt"
26+
MemoryKey string = "memory"
2727
DBTypes map[string]string = map[string]string{
2828
BoltDBKey: "bolt",
2929
MemoryKey: "memory",

0 commit comments

Comments
 (0)