From 33910fb3499544e6bc5629faf2c99b20afc465da Mon Sep 17 00:00:00 2001 From: Bartosz Rozwarski Date: Mon, 24 Oct 2022 10:32:33 +0200 Subject: [PATCH] add debug availability for cleanup method --- Sources/WalletConnectPairing/PairingInteracting.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Sources/WalletConnectPairing/PairingInteracting.swift b/Sources/WalletConnectPairing/PairingInteracting.swift index 90b85bd51..631d6e4f5 100644 --- a/Sources/WalletConnectPairing/PairingInteracting.swift +++ b/Sources/WalletConnectPairing/PairingInteracting.swift @@ -13,6 +13,8 @@ public protocol PairingInteracting { func ping(topic: String) async throws func disconnect(topic: String) async throws - + +#if DEBUG func cleanup() throws +#endif }