Skip to content

Commit

Permalink
Merge pull request #38 from MutinyWallet/port-name-fix
Browse files Browse the repository at this point in the history
Fix port env name
  • Loading branch information
TonyGiorgio authored Jun 12, 2024
2 parents c88748f + 49e5e0d commit 5254e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ async fn main() -> anyhow::Result<()> {

// get values key from env
let pg_url = std::env::var("DATABASE_URL").expect("DATABASE_URL must be set");
let port: u16 = std::env::var("VSS_PORT")
let port: u16 = std::env::var("HERMES_PORT")
.ok()
.map(|p| p.parse::<u16>())
.transpose()?
Expand Down

0 comments on commit 5254e4b

Please sign in to comment.