File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ within the application.
5050
5151Cardano node configuration:
5252` CARDANO_NETWORK ` - Use a named Cardano network (default: mainnet)
53- ` CARDANO_NODE_ADDRESS ` - Address to Cardano node NtC via TCP (default: unset)
54- ` CARDANO_NODE_PORT ` - Port to Cardano node NtC via TCP (default: unset)
5553` CARDANO_NODE_NETWORK_MAGIC ` - Cardano network magic (default: automatically determined from named network)
5654` CARDANO_NODE_SOCKET_PATH ` - Socket path to Cardano node NtC via UNIX socket (default: /node-ipc/node.socket)
55+ ` CARDANO_NODE_SOCKET_TCP_HOST ` - Address to Cardano node NtC via TCP (default: unset)
56+ ` CARDANO_NODE_SOCKET_TCP_PORT ` - Port to Cardano node NtC via TCP (default: unset)
Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ type MetricsConfig struct {
3939type NodeConfig struct {
4040 Network string `yaml:"network" envconfig:"CARDANO_NETWORK"`
4141 NetworkMagic uint32 `yaml:"networkMagic" envconfig:"CARDANO_NODE_NETWORK_MAGIC"`
42- Address string `yaml:"address" envconfig:"CARDANO_NODE_ADDRESS "`
43- Port uint `yaml:"port" envconfig:"CARDANO_NODE_PORT "`
42+ Address string `yaml:"address" envconfig:"CARDANO_NODE_SOCKET_TCP_HOST "`
43+ Port uint `yaml:"port" envconfig:"CARDANO_NODE_SOCKET_TCP_PORT "`
4444 SocketPath string `yaml:"socketPath" envconfig:"CARDANO_NODE_SOCKET_PATH"`
4545}
4646
You can’t perform that action at this time.
0 commit comments