Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SWvheerden committed Oct 8, 2024
1 parent 51ab818 commit a3be689
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/src/configuration/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ impl Default for Network {
#[cfg(tari_target_network_mainnet)]
fn default() -> Self {
match std::env::var("TARI_NETWORK") {
Ok(network) => Network::from_str(network.as_str()).unwrap_or(Network::Mainnet),
Err(_) => Network::Mainnet,
Ok(network) => Network::from_str(network.as_str()).unwrap_or(Network::MainNet),
Err(_) => Network::MainNet,
}
}

Expand Down

0 comments on commit a3be689

Please sign in to comment.