1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-06-24 02:01:43 +00:00
Files
DOCKER
INSTALL
benchmarks
blockchain
cmd
config
consensus
mempool
node
proxy
rpc
scripts
state
types
README.md
block.go
block_meta.go
config.go
events.go
genesis.go
keys.go
log.go
part_set.go
part_set_test.go
priv_validator.go
proposal.go
proposal_test.go
signable.go
tx.go
validator.go
validator_set.go
validator_set_test.go
vote.go
vote_set.go
vote_set_test.go
version
.gitignore
LICENSE.md
Makefile
README.md
Vagrantfile
glide.lock
glide.yaml
tendermint/types/config.go

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
})
}