Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jkilpatr committed Aug 16, 2024
1 parent f122de5 commit 8061972
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
8 changes: 7 additions & 1 deletion integration_tests/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,13 @@ use rita_common::{
payment_validator::{ALTHEA_CHAIN_PREFIX, ALTHEA_CONTACT_TIMEOUT},
};
use settings::{
client::RitaClientSettings, exit::{ExitNetworkSettings, RitaExitSettingsStruct}, localization::LocalizationSettings, logging::LoggingSettings, network::NetworkSettings, operator::ExitOperatorSettings, payment::PaymentSettings
client::RitaClientSettings,
exit::{ExitNetworkSettings, RitaExitSettingsStruct},
localization::LocalizationSettings,
logging::LoggingSettings,
network::NetworkSettings,
operator::ExitOperatorSettings,
payment::PaymentSettings,
};
use std::{
collections::{HashMap, HashSet},
Expand Down
2 changes: 1 addition & 1 deletion rita_client/src/dashboard/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ use crate::dashboard::usage::*;
use actix_async::System;
use actix_web_async::{web, App, HttpServer};
use rita_common::dashboard::auth::*;
use rita_common::dashboard::operator::*;
use rita_common::dashboard::babel::*;
use rita_common::dashboard::backup_created::*;
use rita_common::dashboard::contact_info::*;
Expand All @@ -41,6 +40,7 @@ use rita_common::dashboard::localization::*;
use rita_common::dashboard::logging::*;
use rita_common::dashboard::mesh_ip::*;
use rita_common::dashboard::nickname::*;
use rita_common::dashboard::operator::*;
use rita_common::dashboard::own_info::*;
use rita_common::dashboard::remote_access::*;
use rita_common::dashboard::settings::*;
Expand Down
2 changes: 1 addition & 1 deletion rita_common/src/dashboard/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ pub mod localization;
pub mod logging;
pub mod mesh_ip;
pub mod nickname;
pub mod operator;
pub mod own_info;
pub mod remote_access;
pub mod settings;
Expand All @@ -23,4 +24,3 @@ pub mod usage;
pub mod wallet;
pub mod wg_key;
pub mod wifi;
pub mod operator;
1 change: 0 additions & 1 deletion settings/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,6 @@ pub fn check_if_client() -> bool {
}
}


/// This code checks to see if the current device/setting is an exit or not
pub fn check_if_exit() -> bool {
let netns = KI.check_integration_test_netns();
Expand Down

0 comments on commit 8061972

Please sign in to comment.