From 42abaf0dee796231ffb1fc29a2dea3aaa482fe2a Mon Sep 17 00:00:00 2001 From: Barry Deen Date: Tue, 29 Oct 2024 17:44:04 -0400 Subject: [PATCH] remove blossom port --- config.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/config.go b/config.go index 05bd79f..5a64c2a 100644 --- a/config.go +++ b/config.go @@ -45,7 +45,6 @@ type Config struct { BackupIntervalHours int `json:"backup_interval_hours"` BlastrRelays []string `json:"blastr_relays"` BlossomPath string `json:"blossom_path"` - BlossomPort int `json:"blossom_port"` } type AwsConfig struct { @@ -62,7 +61,6 @@ func loadConfig() Config { OwnerNpub: getEnv("OWNER_NPUB"), DBEngine: getEnvString("DB_ENGINE", "lmdb"), BlossomPath: getEnvString("BLOSSOM_PATH", "blossom"), - BlossomPort: getEnvInt("BLOSSOM_PORT", 3366), RelayURL: getEnv("RELAY_URL"), RelayPort: getEnvInt("RELAY_PORT", 3355), RelayBindAddress: getEnvString("RELAY_BIND_ADDRESS", "0.0.0.0"),