1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-17 04:30:03 +02:00

config/config.go: fix RedisConfig.DB json tag.

This commit is contained in:
Henrik Hautakoski 2022-11-28 15:26:36 +01:00
parent 1e2dda54c8
commit 621aeedbd0

View file

@ -10,7 +10,7 @@ const NULL_BLOCK_NUMBER uint32 = 0xffffffff
type RedisConfig struct {
Addr string `json:"addr"`
Password string `json:"password"`
DB int `json:db`
DB int `json:"db"`
CacheID string `json:"cache_id"`
}