Skip to content

Commit

Permalink
use default port for mutinynet and signet as well
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisguida committed Oct 1, 2024
1 parent efdab67 commit 81b21b6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,13 @@ async fn main() -> Result<(), anyhow::Error> {
Some(sbp) => u16::try_from(sbp)?,
None => match network.as_str() {
"regtest" => 18443,
"signet" | "mutinynet" => 38332,
_ => 8332,
},
},
None => match network.as_str() {
"regtest" => 18443,
"signet" | "mutinynet" => 38332,
_ => 8332,
},
};
Expand Down

0 comments on commit 81b21b6

Please sign in to comment.