Skip to content

Commit

Permalink
revert async extension bump and rename iOS method
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasbzurovski committed Sep 20, 2024
1 parent 836e545 commit 646edac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/sideeffect-io/AsyncExtensions",
"state" : {
"revision" : "3442d3d046800f1974bda096faaf0ac510b21154",
"version" : "0.5.3"
"revision" : "1f0729e4f1f6c7166acfac3cec43b3cbe83be0e6",
"version" : "0.5.2"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ let package = Package(
.package(url: "https://github.com/SwiftyJSON/SwiftyJSON", from: "5.0.2"),

// Multicast / Share of notifications in EventBus
.package(url: "https://github.com/sideeffect-io/AsyncExtensions", exact: "0.5.3"),
.package(url: "https://github.com/sideeffect-io/AsyncExtensions", exact: "0.5.2"),
],
targets: [
binaryTarget,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ extension TransactionManifest {
transactionManifestSummary(manifest: self)
}

public func executionSummary(encodedReceipt: Data) throws -> ExecutionSummary {
public func executionSummary(engineToolkitReceipt: Data) throws -> ExecutionSummary {
try transactionManifestExecutionSummary(
manifest: self,
encodedReceipt: encodedReceipt
engineToolkitReceipt: engineToolkitReceipt
)
}
}

0 comments on commit 646edac

Please sign in to comment.