diff --git a/common/client-libs/gateway-client/src/client.rs b/common/client-libs/gateway-client/src/client.rs index b84e761952..a27ec472ba 100644 --- a/common/client-libs/gateway-client/src/client.rs +++ b/common/client-libs/gateway-client/src/client.rs @@ -19,7 +19,9 @@ use nym_crypto::asymmetric::identity; use nym_gateway_requests::authentication::encrypted_address::EncryptedAddressBytes; use nym_gateway_requests::iv::IV; use nym_gateway_requests::registration::handshake::{client_handshake, SharedKeys}; -use nym_gateway_requests::{BinaryRequest, ClientControlRequest, ServerResponse, CURRENT_PROTOCOL_VERSION}; +use nym_gateway_requests::{ + BinaryRequest, ClientControlRequest, ServerResponse, CURRENT_PROTOCOL_VERSION, +}; use nym_network_defaults::{REMAINING_BANDWIDTH_THRESHOLD, TOKENS_TO_BURN}; use nym_sphinx::forwarding::packet::MixPacket; use nym_task::TaskClient; @@ -447,7 +449,7 @@ impl GatewayClient { // populate the negotiated protocol for future uses self.negotiated_protocol = gateway_protocol; - + Ok(()) }