From e2d816defb21d206af0e1cd057fbfc2f3b8b91e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Tue, 24 Oct 2023 09:57:53 +0100 Subject: [PATCH] fixed fmt::Display impl for GatewayNetworkRequesterDetails (#4033) --- common/types/src/gateway.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/types/src/gateway.rs b/common/types/src/gateway.rs index a26fea053f..c57dee8001 100644 --- a/common/types/src/gateway.rs +++ b/common/types/src/gateway.rs @@ -143,6 +143,6 @@ impl fmt::Display for GatewayNetworkRequesterDetails { writeln!(f, "\tsends statistics: {}", self.enabled_statistics)?; writeln!(f, "\tallow list path: {}", self.allow_list_path)?; - writeln!(f, "\tunknown list path: {}", self.allow_list_path) + writeln!(f, "\tunknown list path: {}", self.unknown_list_path) } }