From ff053249026d922c4a27aea6e3b1e9d1170c5536 Mon Sep 17 00:00:00 2001 From: "HOME-LAPTOP\\kshkulev" Date: Sun, 28 Sep 2025 16:10:12 +0900 Subject: [PATCH] Fix XML to string conversion --- Hcs.Broker/Api/Request/GostSigningMessageInspector.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hcs.Broker/Api/Request/GostSigningMessageInspector.cs b/Hcs.Broker/Api/Request/GostSigningMessageInspector.cs index e7efeac..670ac42 100644 --- a/Hcs.Broker/Api/Request/GostSigningMessageInspector.cs +++ b/Hcs.Broker/Api/Request/GostSigningMessageInspector.cs @@ -147,7 +147,7 @@ namespace Hcs.Broker.Api.Request doc.RemoveChild(doc.FirstChild); } - return doc.ToString(); + return doc.OuterXml; } private XmlReader XmlReaderFromString(string xml)