Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
remove spurious prints
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrower95 committed Aug 6, 2023
1 parent e09bf8b commit 28046a4
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions example/src/screens/MPCWalletServiceDemo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ export const MPCWalletServiceDemo = () => {
setDeviceGroupName(createMpcWalletResponse.DeviceGroup);
setShowStep5(true);

console.log(createMpcWalletResponse);

if (prepareDeviceArchiveEnforced) {
await computeMPCWallet(
createMpcWalletResponse.DeviceGroup,
Expand Down
1 change: 0 additions & 1 deletion ios/react-native/BaseModule.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 0 additions & 2 deletions ios/swift/WaasSdk/MPCSdk.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down

0 comments on commit 28046a4

Please sign in to comment.