mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-06 21:36:26 +00:00
15 lines
182 B
Go
15 lines
182 B
Go
|
|
package mempool
|
|
|
|
import (
|
|
cfg "github.com/tendermint/go-config"
|
|
)
|
|
|
|
var config cfg.Config = nil
|
|
|
|
func init() {
|
|
cfg.OnConfig(func(newConfig cfg.Config) {
|
|
config = newConfig
|
|
})
|
|
}
|