Fixed a Swift 5.10 and Swift 6.0 compilation issue found on the "init(privateKey: publicKey: )" initializer function of the GenerateHashUseCase use case in the library target. #6

Merged
javier merged 1 commits from library/spi-compilation-fix into main 2025-10-05 12:35:24 +00:00
Showing only changes of commit 620597b9ac - Show all commits
@@ -34,7 +34,7 @@ struct GenerateHashUseCase {
/// - publicKey: A public key. /// - publicKey: A public key.
init( init(
privateKey: String, privateKey: String,
publicKey: String, publicKey: String
) { ) {
self.privateKey = privateKey self.privateKey = privateKey
self.publicKey = publicKey self.publicKey = publicKey