Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
llbartekll committed Jun 27, 2024
1 parent 4fe67fd commit ccf37f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/WalletConnectPairing/PairingClientProtocol.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ public protocol PairingClientProtocol {
var pairingStatePublisher: AnyPublisher<Bool, Never> {get}
var pairingExpirationPublisher: AnyPublisher<Pairing, Never> {get}
func pair(uri: WalletConnectURI) async throws
func disconnect(topic: String) async throws
func disconnect(topic: String) async
func getPairings() -> [Pairing]
}
2 changes: 1 addition & 1 deletion Sources/Web3Wallet/Web3WalletClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public class Web3WalletClient {
}

public func disconnectPairing(topic: String) async {
try await pairingClient.disconnect(topic: topic)
await pairingClient.disconnect(topic: topic)
}

/// For a wallet and a dApp to terminate a session
Expand Down

0 comments on commit ccf37f8

Please sign in to comment.