Skip to content

Commit

Permalink
fix build all
Browse files Browse the repository at this point in the history
  • Loading branch information
llbartekll committed Nov 30, 2023
1 parent 7bf4c89 commit bab4983
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Sources/Chat/ChatClientFactory.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import Foundation
public struct ChatClientFactory {

static func create(keyserverUrl: String, relayClient: RelayClient, networkingInteractor: NetworkingInteractor, syncClient: SyncClient, historyClient: HistoryClient) -> ChatClient {
let keychain = KeychainStorage(serviceIdentifier: "com.walletconnect.sdk")
fatalError("fix access group")
let keychain = KeychainStorage(serviceIdentifier: "com.walletconnect.sdk", accessGroup: "")
let keyserverURL = URL(string: keyserverUrl)!
return ChatClientFactory.create(
keyserverURL: keyserverURL,
Expand Down
3 changes: 2 additions & 1 deletion Sources/WalletConnectSync/SyncClientFactory.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import Foundation
final class SyncClientFactory {

static func create(networkInteractor: NetworkInteracting, bip44: BIP44Provider) -> SyncClient {
let keychain = KeychainStorage(serviceIdentifier: "com.walletconnect.sdk", accessGroup: groupIdentifier)
fatalError("fix access group")
let keychain = KeychainStorage(serviceIdentifier: "com.walletconnect.sdk", accessGroup: "")
return create(networkInteractor: networkInteractor, bip44: bip44, keychain: keychain)
}

Expand Down

0 comments on commit bab4983

Please sign in to comment.