Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aruokhai committed Jan 16, 2025
1 parent 0433a15 commit 7868f23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,9 @@ func LoadConfig() (*Config, error) {
DbDir: filepath.Join(viper.GetString(Datadir), "db"),
LogLevel: viper.GetInt(LogLevel),
Network: net,
RoundLifetime: DetermineLocktimeType(viper.GetInt64(RoundLifetime)),
UnilateralExitDelay: DetermineLocktimeType(viper.GetInt64(UnilateralExitDelay)),
BoardingExitDelay: DetermineLocktimeType(viper.GetInt64(BoardingExitDelay)),
RoundLifetime: determineLocktimeType(viper.GetInt64(RoundLifetime)),
UnilateralExitDelay: determineLocktimeType(viper.GetInt64(UnilateralExitDelay)),
BoardingExitDelay: determineLocktimeType(viper.GetInt64(BoardingExitDelay)),
EsploraURL: viper.GetString(EsploraURL),
NeutrinoPeer: viper.GetString(NeutrinoPeer),
BitcoindRpcUser: viper.GetString(BitcoindRpcUser),
Expand Down

0 comments on commit 7868f23

Please sign in to comment.