- Add DEFAULT_NYM_API_RETRIES constant (replaces magic number 3)

- Run cargo fmt on all affected packages
- All clippy warnings resolved
This commit is contained in:
Tommy Verrall
2025-10-20 16:51:07 +02:00
parent d1cb9afaf0
commit 35ea7e4926
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -45,6 +45,7 @@ type WsConn = JSWebsocket;
const CONCURRENT_GATEWAYS_MEASURED: usize = 20;
const MEASUREMENTS: usize = 3;
const DEFAULT_NYM_API_RETRIES: usize = 3;
#[cfg(not(target_arch = "wasm32"))]
const CONN_TIMEOUT: Duration = Duration::from_millis(1500);
@@ -149,7 +150,7 @@ pub async fn gateways_for_init(
return Err(ClientCoreError::ListOfNymApisIsEmpty);
}
let retry_count = retry_count.unwrap_or(3);
let retry_count = retry_count.unwrap_or(DEFAULT_NYM_API_RETRIES);
let mut builder = nym_http_api_client::ClientBuilder::new_with_urls(nym_api_urls.clone())
.with_retries(retry_count)
.with_bincode();
@@ -256,7 +256,7 @@ fn true_to_disabled(val: bool) -> &'static str {
/// Builder for `BuilderConfig`
///
/// This provides a more convinient way to construct a `BuilderConfig` compared to the
/// This provides a more convenient way to construct a `BuilderConfig` compared to the
/// `new()` constructor with many arguments.
#[derive(Default)]
pub struct BuilderConfigBuilder {