place-holder attempting compatibility

This commit is contained in:
jmwample
2025-12-05 17:09:43 -07:00
parent 26b537e256
commit b90a75266f
6 changed files with 3 additions and 13 deletions
Generated
-1
View File
@@ -5868,7 +5868,6 @@ dependencies = [
"nym-credentials-interface",
"nym-crypto",
"nym-gateway-requests",
"nym-http-api-client",
"nym-network-defaults",
"nym-pemstore",
"nym-sphinx",
+2 -2
View File
@@ -2,10 +2,10 @@
// SPDX-License-Identifier: Apache-2.0
use nym_crypto::asymmetric::ed25519;
use nym_topology::EntryDetails;
use serde::{Deserialize, Serialize};
use std::fmt::{Display, Formatter};
use time::OffsetDateTime;
use url::Url;
#[derive(Serialize, Deserialize)]
pub struct GatewayInfo {
@@ -14,7 +14,7 @@ pub struct GatewayInfo {
pub active: bool,
pub typ: String,
pub endpoint: Option<Url>,
pub endpoint: Option<EntryDetails>,
}
impl Display for GatewayInfo {
-4
View File
@@ -43,10 +43,6 @@ pub enum ClientCoreError {
#[error("Invalid Endpoint: {0}")]
InvalidEndpoint(String),
#[cfg(not(target_arch = "wasm32"))]
#[error("resolution failed: {0}")]
ResolutionFailed(#[from] nym_http_api_client::ResolveError),
#[error("no gateways on network")]
NoGatewaysOnNetwork,
@@ -27,7 +27,6 @@ nym-credential-storage = { path = "../../credential-storage" }
nym-credentials-interface = { path = "../../credentials-interface" }
nym-crypto = { path = "../../crypto" }
nym-gateway-requests = { path = "../../gateway-requests" }
nym-http-api-client = { path = "../../http-api-client" }
nym-network-defaults = { path = "../../network-defaults" }
nym-sphinx = { path = "../../nymsphinx" }
nym-statistics-common = { path = "../../statistics" }
@@ -52,10 +52,6 @@ pub enum GatewayClientError {
#[error("Invalid Endpoint: {0}")]
InvalidEndpoint(String),
#[cfg(not(target_arch = "wasm32"))]
#[error("resolution failed: {0}")]
ResolutionFailed(#[from] nym_http_api_client::ResolveError),
#[error("No shared key was provided or obtained")]
NoSharedKeyAvailable,
@@ -453,7 +453,7 @@ impl PacketPreparer {
for gateway in &gateways_to_test_details {
let recipient = self.create_packet_sender(gateway);
let gateway_identity = gateway.identity_key;
let gateway_address = gateway.ws_entry_address(false);
let gateway_address = gateway.entry;
// the unwrap here is fine as:
// 1. the topology is definitely valid (otherwise we wouldn't be here)