From 28046a468e9c7acfb72d4bd6bc351e87a0eea2ba Mon Sep 17 00:00:00 2001 From: Justin Brower Date: Sun, 6 Aug 2023 13:16:20 -0400 Subject: [PATCH] remove spurious prints --- example/src/screens/MPCWalletServiceDemo.tsx | 2 -- ios/react-native/BaseModule.swift | 1 - ios/swift/WaasSdk/MPCSdk.swift | 2 -- 3 files changed, 5 deletions(-) diff --git a/example/src/screens/MPCWalletServiceDemo.tsx b/example/src/screens/MPCWalletServiceDemo.tsx index 2c305db..a408e1b 100644 --- a/example/src/screens/MPCWalletServiceDemo.tsx +++ b/example/src/screens/MPCWalletServiceDemo.tsx @@ -77,8 +77,6 @@ export const MPCWalletServiceDemo = () => { setDeviceGroupName(createMpcWalletResponse.DeviceGroup); setShowStep5(true); - console.log(createMpcWalletResponse); - if (prepareDeviceArchiveEnforced) { await computeMPCWallet( createMpcWalletResponse.DeviceGroup, diff --git a/ios/react-native/BaseModule.swift b/ios/react-native/BaseModule.swift index 9d47cad..0f8da70 100644 --- a/ios/react-native/BaseModule.swift +++ b/ios/react-native/BaseModule.swift @@ -25,7 +25,6 @@ public class BaseModule: NSObject { Runs an operation, while taking care to retain the */ func run(_ op: AnyOperation) { - print(type(of: self)) let hashableOp = AnyHashableOperation(op) ops.insert(hashableOp) op.onFinish { diff --git a/ios/swift/WaasSdk/MPCSdk.swift b/ios/swift/WaasSdk/MPCSdk.swift index 2a1de50..defa138 100644 --- a/ios/swift/WaasSdk/MPCSdk.swift +++ b/ios/swift/WaasSdk/MPCSdk.swift @@ -90,9 +90,7 @@ public class MPCSdk: NSObject { return Future { promise in Job.background().async(execute: { do { - print("[Operation] Start computeMPCOperation") try self.sdk.computeMPCOperation(mpcData) - print("[Operation] End computeMPCOperation") promise(Result.success(())) } catch { promise(Result.failure(WaasError.mpcSdkUnspecifiedError(error)))