From 924e52177c96aae5a6f7e5bc6295033423f201b3 Mon Sep 17 00:00:00 2001 From: Dariusz Rybicki <dariusz@elixxir.io> Date: Wed, 27 Jul 2022 15:18:15 +0100 Subject: [PATCH] Update NetworkFollowerStatus model --- Sources/ElixxirDAppsSDK/Models/NetworkFollowerStatus.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/Sources/ElixxirDAppsSDK/Models/NetworkFollowerStatus.swift b/Sources/ElixxirDAppsSDK/Models/NetworkFollowerStatus.swift index 8630aafe..ab6996ce 100644 --- a/Sources/ElixxirDAppsSDK/Models/NetworkFollowerStatus.swift +++ b/Sources/ElixxirDAppsSDK/Models/NetworkFollowerStatus.swift @@ -1,6 +1,5 @@ public enum NetworkFollowerStatus: Equatable { case stopped - case starting case running case stopping case unknown(code: Int) @@ -10,7 +9,6 @@ extension NetworkFollowerStatus { public init(rawValue: Int) { switch rawValue { case 0: self = .stopped - case 1_000: self = .starting case 2_000: self = .running case 3_000: self = .stopping case let code: self = .unknown(code: code) @@ -20,7 +18,6 @@ extension NetworkFollowerStatus { public var rawValue: Int { switch self { case .stopped: return 0 - case .starting: return 1_000 case .running: return 2_000 case .stopping: return 3_000 case .unknown(let code): return code -- GitLab