Skip to content

Commit

Permalink
fix default testnet port
Browse files Browse the repository at this point in the history
  • Loading branch information
aspect authored and elichai committed Nov 5, 2023
1 parent 529938f commit 4e8fa5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ impl Opt {
}

fn port(&mut self) -> u16 {
*self.port.get_or_insert(if self.testnet { 16211 } else { 16110 })
*self.port.get_or_insert(if self.testnet { 16210 } else { 16110 })
}

pub fn log_level(&self) -> LevelFilter {
Expand Down

0 comments on commit 4e8fa5b

Please sign in to comment.