Skip to content

Commit 071aa73

Browse files
authored
fix: field align structs (#484)
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent 9c7e085 commit 071aa73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/config/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ import (
2424
)
2525

2626
type Config struct {
27+
Tls TlsConfig `yaml:"tls"`
2728
Logging LoggingConfig `yaml:"logging"`
2829
Api ApiConfig `yaml:"api"`
2930
Metrics MetricsConfig `yaml:"metrics"`
3031
Debug DebugConfig `yaml:"debug"`
31-
Node NodeConfig `yaml:"node"`
32-
Tls TlsConfig `yaml:"tls"`
3332
Utxorpc UtxorpcConfig `yaml:"utxorpc"`
33+
Node NodeConfig `yaml:"node"`
3434
}
3535

3636
type LoggingConfig struct {

0 commit comments

Comments
 (0)