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