From c241c9b6a3bde045f1e521cc0f7e48bd0ecc65f5 Mon Sep 17 00:00:00 2001 From: Peter <> Date: Tue, 9 Jul 2019 19:43:58 +0400 Subject: [PATCH] Remove legacy fields --- .../LightweightAccountData/Sources/SharedAccountInfo.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/submodules/LightweightAccountData/Sources/SharedAccountInfo.swift b/submodules/LightweightAccountData/Sources/SharedAccountInfo.swift index 561698c909..846aada6a6 100644 --- a/submodules/LightweightAccountData/Sources/SharedAccountInfo.swift +++ b/submodules/LightweightAccountData/Sources/SharedAccountInfo.swift @@ -50,15 +50,13 @@ public struct AccountProxyConnection: Codable { public let username: String? public let password: String? public let secret: Data? - public let secretHost: String? - public init(host: String, port: Int32, username: String?, password: String?, secret: Data?, secretHost: String?) { + public init(host: String, port: Int32, username: String?, password: String?, secret: Data?) { self.host = host self.port = port self.username = username self.password = password self.secret = secret - self.secretHost = secretHost } }