From dab29401be769e8f7bb2bf218bc69c800f4b500b Mon Sep 17 00:00:00 2001 From: benedettadavico Date: Fri, 9 Feb 2024 15:32:35 +0100 Subject: [PATCH] running cargo fmt --- common/client-libs/gateway-client/src/client.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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(()) }