diff --git a/Package.resolved b/Package.resolved index 5c2f00a9c..f4ba2be49 100644 --- a/Package.resolved +++ b/Package.resolved @@ -1,14 +1,5 @@ { "pins" : [ - { - "identity" : "csqlite", - "kind" : "remoteSourceControl", - "location" : "https://github.com/stephencelis/CSQLite.git", - "state" : { - "revision" : "9106e983d5e3d5149ee35281ec089484b0def018", - "version" : "0.0.3" - } - }, { "identity" : "grpc-swift", "kind" : "remoteSourceControl", @@ -113,7 +104,7 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/zcash-hackworks/zcash-light-client-ffi", "state" : { - "revision" : "728cede1b36eb24c5c6a41e509a0358c1bd97f9c" + "revision" : "6a53c9e32520b46f8c70597e27b335105fabfc21" } } ], diff --git a/Package.swift b/Package.swift index 447013c7a..57e978003 100644 --- a/Package.swift +++ b/Package.swift @@ -16,7 +16,7 @@ let package = Package( dependencies: [ .package(url: "https://github.com/grpc/grpc-swift.git", from: "1.14.0"), .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.14.1"), - .package(url: "https://github.com/zcash-hackworks/zcash-light-client-ffi", revision: "728cede1b36eb24c5c6a41e509a0358c1bd97f9c") + .package(url: "https://github.com/zcash-hackworks/zcash-light-client-ffi", revision: "6a53c9e32520b46f8c70597e27b335105fabfc21") ], targets: [ .target( diff --git a/Sources/ZcashLightClientKit/Block/CompactBlockProcessor.swift b/Sources/ZcashLightClientKit/Block/CompactBlockProcessor.swift index aa08f09fd..6ac7247a7 100644 --- a/Sources/ZcashLightClientKit/Block/CompactBlockProcessor.swift +++ b/Sources/ZcashLightClientKit/Block/CompactBlockProcessor.swift @@ -725,7 +725,7 @@ extension CompactBlockProcessor { """ ) await self.start() - } else if await hasRetryAttempt() { + } else if await self.hasRetryAttempt() { await self.failure(ZcashError.compactBlockProcessorMaxAttemptsReached(self.config.retries)) } } else {