1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-05-08 04:52:15 +00:00

14 lines
179 B
Go
Raw Normal View History

package types
import (
cfg "github.com/tendermint/go-config"
)
var config cfg.Config = nil
func init() {
cfg.OnConfig(func(newConfig cfg.Config) {
config = newConfig
})
}