mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 07:12:16 +00:00
14 lines
186 B
Go
14 lines
186 B
Go
package core
|
|
|
|
import (
|
|
cfg "github.com/tendermint/tendermint/config"
|
|
)
|
|
|
|
var config cfg.Config = nil
|
|
|
|
func init() {
|
|
cfg.OnConfig(func(newConfig cfg.Config) {
|
|
config = newConfig
|
|
})
|
|
}
|