|
@ -12,6 +12,7 @@ type Config struct { |
|
|
BaseConfig `mapstructure:",squash"` |
|
|
BaseConfig `mapstructure:",squash"` |
|
|
|
|
|
|
|
|
// Options for services
|
|
|
// Options for services
|
|
|
|
|
|
RPC *RPCConfig `mapstructure:"rpc"` |
|
|
P2P *P2PConfig `mapstructure:"p2p"` |
|
|
P2P *P2PConfig `mapstructure:"p2p"` |
|
|
Mempool *MempoolConfig `mapstructure:"mempool"` |
|
|
Mempool *MempoolConfig `mapstructure:"mempool"` |
|
|
Consensus *ConsensusConfig `mapstructure:"consensus"` |
|
|
Consensus *ConsensusConfig `mapstructure:"consensus"` |
|
@ -20,6 +21,7 @@ type Config struct { |
|
|
func DefaultConfig() *Config { |
|
|
func DefaultConfig() *Config { |
|
|
return &Config{ |
|
|
return &Config{ |
|
|
BaseConfig: DefaultBaseConfig(), |
|
|
BaseConfig: DefaultBaseConfig(), |
|
|
|
|
|
RPC: DefaultRPCConfig(), |
|
|
P2P: DefaultP2PConfig(), |
|
|
P2P: DefaultP2PConfig(), |
|
|
Mempool: DefaultMempoolConfig(), |
|
|
Mempool: DefaultMempoolConfig(), |
|
|
Consensus: DefaultConsensusConfig(), |
|
|
Consensus: DefaultConsensusConfig(), |
|
@ -29,6 +31,7 @@ func DefaultConfig() *Config { |
|
|
func TestConfig() *Config { |
|
|
func TestConfig() *Config { |
|
|
return &Config{ |
|
|
return &Config{ |
|
|
BaseConfig: TestBaseConfig(), |
|
|
BaseConfig: TestBaseConfig(), |
|
|
|
|
|
RPC: TestRPCConfig(), |
|
|
P2P: TestP2PConfig(), |
|
|
P2P: TestP2PConfig(), |
|
|
Mempool: DefaultMempoolConfig(), |
|
|
Mempool: DefaultMempoolConfig(), |
|
|
Consensus: TestConsensusConfig(), |
|
|
Consensus: TestConsensusConfig(), |
|
@ -38,12 +41,16 @@ func TestConfig() *Config { |
|
|
// Set the RootDir for all Config structs
|
|
|
// Set the RootDir for all Config structs
|
|
|
func (cfg *Config) SetRoot(root string) *Config { |
|
|
func (cfg *Config) SetRoot(root string) *Config { |
|
|
cfg.BaseConfig.RootDir = root |
|
|
cfg.BaseConfig.RootDir = root |
|
|
|
|
|
cfg.RPC.RootDir = root |
|
|
cfg.P2P.RootDir = root |
|
|
cfg.P2P.RootDir = root |
|
|
cfg.Mempool.RootDir = root |
|
|
cfg.Mempool.RootDir = root |
|
|
cfg.Consensus.RootDir = root |
|
|
cfg.Consensus.RootDir = root |
|
|
return cfg |
|
|
return cfg |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
// BaseConfig
|
|
|
|
|
|
|
|
|
// BaseConfig struct for a Tendermint node
|
|
|
// BaseConfig struct for a Tendermint node
|
|
|
type BaseConfig struct { |
|
|
type BaseConfig struct { |
|
|
// The root directory for all data.
|
|
|
// The root directory for all data.
|
|
@ -92,13 +99,6 @@ type BaseConfig struct { |
|
|
|
|
|
|
|
|
// Database directory
|
|
|
// Database directory
|
|
|
DBPath string `mapstructure:"db_dir"` |
|
|
DBPath string `mapstructure:"db_dir"` |
|
|
|
|
|
|
|
|
// TCP or UNIX socket address for the RPC server to listen on
|
|
|
|
|
|
RPCListenAddress string `mapstructure:"rpc_laddr"` |
|
|
|
|
|
|
|
|
|
|
|
// TCP or UNIX socket address for the gRPC server to listen on
|
|
|
|
|
|
// NOTE: This server only supports /broadcast_tx_commit
|
|
|
|
|
|
GRPCListenAddress string `mapstructure:"grpc_laddr"` |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func DefaultBaseConfig() BaseConfig { |
|
|
func DefaultBaseConfig() BaseConfig { |
|
@ -108,15 +108,13 @@ func DefaultBaseConfig() BaseConfig { |
|
|
Moniker: "anonymous", |
|
|
Moniker: "anonymous", |
|
|
ProxyApp: "tcp://127.0.0.1:46658", |
|
|
ProxyApp: "tcp://127.0.0.1:46658", |
|
|
ABCI: "socket", |
|
|
ABCI: "socket", |
|
|
LogLevel: "info", |
|
|
|
|
|
|
|
|
LogLevel: "state:info,*:error", |
|
|
ProfListenAddress: "", |
|
|
ProfListenAddress: "", |
|
|
FastSync: true, |
|
|
FastSync: true, |
|
|
FilterPeers: false, |
|
|
FilterPeers: false, |
|
|
TxIndex: "kv", |
|
|
TxIndex: "kv", |
|
|
DBBackend: "leveldb", |
|
|
DBBackend: "leveldb", |
|
|
DBPath: "data", |
|
|
DBPath: "data", |
|
|
RPCListenAddress: "tcp://0.0.0.0:46657", |
|
|
|
|
|
GRPCListenAddress: "", |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -126,8 +124,6 @@ func TestBaseConfig() BaseConfig { |
|
|
conf.ProxyApp = "dummy" |
|
|
conf.ProxyApp = "dummy" |
|
|
conf.FastSync = false |
|
|
conf.FastSync = false |
|
|
conf.DBBackend = "memdb" |
|
|
conf.DBBackend = "memdb" |
|
|
conf.RPCListenAddress = "tcp://0.0.0.0:36657" |
|
|
|
|
|
conf.GRPCListenAddress = "tcp://0.0.0.0:36658" |
|
|
|
|
|
return conf |
|
|
return conf |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -143,6 +139,42 @@ func (b BaseConfig) DBDir() string { |
|
|
return rootify(b.DBPath, b.RootDir) |
|
|
return rootify(b.DBPath, b.RootDir) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
// RPCConfig
|
|
|
|
|
|
|
|
|
|
|
|
type RPCConfig struct { |
|
|
|
|
|
RootDir string `mapstructure:"home"` |
|
|
|
|
|
|
|
|
|
|
|
// TCP or UNIX socket address for the RPC server to listen on
|
|
|
|
|
|
ListenAddress string `mapstructure:"laddr"` |
|
|
|
|
|
|
|
|
|
|
|
// TCP or UNIX socket address for the gRPC server to listen on
|
|
|
|
|
|
// NOTE: This server only supports /broadcast_tx_commit
|
|
|
|
|
|
GRPCListenAddress string `mapstructure:"grpc_laddr"` |
|
|
|
|
|
|
|
|
|
|
|
// Activate unsafe RPC commands like /dial_seeds and /unsafe_flush_mempool
|
|
|
|
|
|
Unsafe bool `mapstructure:"unsafe"` |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func DefaultRPCConfig() *RPCConfig { |
|
|
|
|
|
return &RPCConfig{ |
|
|
|
|
|
ListenAddress: "tcp://0.0.0.0:46657", |
|
|
|
|
|
GRPCListenAddress: "", |
|
|
|
|
|
Unsafe: false, |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func TestRPCConfig() *RPCConfig { |
|
|
|
|
|
conf := DefaultRPCConfig() |
|
|
|
|
|
conf.ListenAddress = "tcp://0.0.0.0:36657" |
|
|
|
|
|
conf.GRPCListenAddress = "tcp://0.0.0.0:36658" |
|
|
|
|
|
conf.Unsafe = true |
|
|
|
|
|
return conf |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
// P2PConfig
|
|
|
|
|
|
|
|
|
type P2PConfig struct { |
|
|
type P2PConfig struct { |
|
|
RootDir string `mapstructure:"home"` |
|
|
RootDir string `mapstructure:"home"` |
|
|
ListenAddress string `mapstructure:"laddr"` |
|
|
ListenAddress string `mapstructure:"laddr"` |
|
@ -174,6 +206,9 @@ func (p *P2PConfig) AddrBookFile() string { |
|
|
return rootify(p.AddrBook, p.RootDir) |
|
|
return rootify(p.AddrBook, p.RootDir) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
// MempoolConfig
|
|
|
|
|
|
|
|
|
type MempoolConfig struct { |
|
|
type MempoolConfig struct { |
|
|
RootDir string `mapstructure:"home"` |
|
|
RootDir string `mapstructure:"home"` |
|
|
Recheck bool `mapstructure:"recheck"` |
|
|
Recheck bool `mapstructure:"recheck"` |
|
@ -195,6 +230,9 @@ func (m *MempoolConfig) WalDir() string { |
|
|
return rootify(m.WalPath, m.RootDir) |
|
|
return rootify(m.WalPath, m.RootDir) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
// ConsensusConfig
|
|
|
|
|
|
|
|
|
// ConsensusConfig holds timeouts and details about the WAL, the block structure,
|
|
|
// ConsensusConfig holds timeouts and details about the WAL, the block structure,
|
|
|
// and timeouts in the consensus protocol.
|
|
|
// and timeouts in the consensus protocol.
|
|
|
type ConsensusConfig struct { |
|
|
type ConsensusConfig struct { |
|
@ -286,6 +324,9 @@ func (c *ConsensusConfig) SetWalFile(walFile string) { |
|
|
c.walFile = walFile |
|
|
c.walFile = walFile |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
// Utils
|
|
|
|
|
|
|
|
|
// helper function to make config creation independent of root dir
|
|
|
// helper function to make config creation independent of root dir
|
|
|
func rootify(path, root string) string { |
|
|
func rootify(path, root string) string { |
|
|
if filepath.IsAbs(path) { |
|
|
if filepath.IsAbs(path) { |
|
|