diff --git a/Sources/ElixxirDAppsSDK/Models/NetworkFollowerStatus.swift b/Sources/ElixxirDAppsSDK/Models/NetworkFollowerStatus.swift
index 8630aafe29e7f7f3703abb701bb5df1f4c3fc2b0..ab6996ceb184ffb98cd74051d79ab461168b3fb5 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