Skip to content

Commit

Permalink
fix: update macos runner
Browse files Browse the repository at this point in the history
Signed-off-by: Ricky Saechao <[email protected]>
  • Loading branch information
RickyLB committed Oct 9, 2024
1 parent 1b221ea commit 61552e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/swift-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:

jobs:
format:
runs-on: macos-12
runs-on: macos-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
Expand Down
4 changes: 2 additions & 2 deletions Sources/Hedera/Token/TokenAirdropTransaction.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ extension TokenAirdropTransaction: ToProtobuf {

internal func toProtobuf() -> Protobuf {
.with { proto in
let sorted_transfers = sortTransfers()
let sortedTransfers = sortTransfers()

proto.tokenTransfers = sorted_transfers.toProtobuf()
proto.tokenTransfers = sortedTransfers.toProtobuf()
}
}
}

0 comments on commit 61552e6

Please sign in to comment.