From 804a12d1bd23cf2a49f6ded80c15ad707dc60af2 Mon Sep 17 00:00:00 2001 From: Niels Andriesse Date: Fri, 14 Jun 2019 11:41:25 +1000 Subject: [PATCH] Reduce initial PoW difficulty --- SignalServiceKit/src/Loki/API/LokiAPI.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SignalServiceKit/src/Loki/API/LokiAPI.swift b/SignalServiceKit/src/Loki/API/LokiAPI.swift index 00205c0cf..54c962b83 100644 --- a/SignalServiceKit/src/Loki/API/LokiAPI.swift +++ b/SignalServiceKit/src/Loki/API/LokiAPI.swift @@ -12,7 +12,7 @@ public final class LokiAPI : NSObject { private static let defaultTimeout: TimeInterval = 20 private static let longPollingTimeout: TimeInterval = 40 public static let defaultMessageTTL: UInt64 = 24 * 60 * 60 * 1000 - internal static var powDifficulty: UInt = 100 + internal static var powDifficulty: UInt = 10 // MARK: Types public typealias RawResponse = Any