Skip to content

Commit

Permalink
iOS build fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
5eeman committed Dec 20, 2024
1 parent 7f55cb7 commit 9e0f403
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ios/CircomWitnesscalcProxy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ public class CircomWitnesscalcProxy : NSObject {
) throws -> NSString {
do {
let witness = try calculateWitness(
inputs: inputs as Data,
graph: graph as Data
inputs: inputs as! Data,

Check failure on line 15 in ios/CircomWitnesscalcProxy.swift

View workflow job for this annotation

GitHub Actions / build-ios

cannot convert value of type 'Data' to expected argument type 'NSData'
graph: graph as! Data

Check failure on line 16 in ios/CircomWitnesscalcProxy.swift

View workflow job for this annotation

GitHub Actions / build-ios

cannot convert value of type 'Data' to expected argument type 'NSData'
)

return witness.base64EncodedString as NSString
Expand Down

0 comments on commit 9e0f403

Please sign in to comment.