Skip to content

Commit

Permalink
- bump torus version
Browse files Browse the repository at this point in the history
- update CI to use latest Xcode
  • Loading branch information
simonmcl committed Oct 24, 2024
1 parent d6cd270 commit 5902d35
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ on:
jobs:
deploy:
name: Running unit tests
runs-on: macos-14
runs-on: macos-15
steps:
- name: Select Xcode version
run: sudo xcode-select -s '/Applications/Xcode_15.2.app/Contents/Developer'
run: sudo xcode-select -s '/Applications/Xcode_16.app/Contents/Developer'

- name: Checkout repository
uses: actions/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ on:
jobs:
deploy:
name: Running unit tests
runs-on: macos-14
runs-on: macos-15
steps:
- name: Select Xcode version
#run: sudo xcode-select -s '/Applications/Xcode_14.3.1.app/Contents/Developer'
run: sudo xcode-select -s '/Applications/Xcode_15.2.app/Contents/Developer'
run: sudo xcode-select -s '/Applications/Xcode_16.app/Contents/Developer'

- name: Checkout repository
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let package = Package(
],
dependencies: [
.package(name: "KukaiCryptoSwift", url: "https://github.com/kukai-wallet/kukai-crypto-swift", from: "1.0.23" /*.branch("develop")*/),
.package(name: "CustomAuth", url: "https://github.com/torusresearch/customauth-swift-sdk", from: "10.0.1"),
.package(name: "CustomAuth", url: "https://github.com/torusresearch/customauth-swift-sdk", from: "10.0.2"),
.package(name: "SignalRClient", url: "https://github.com/moozzyk/SignalR-Client-Swift", from: "0.8.0"),
.package(url: "https://github.com/SDWebImage/SDWebImage.git", from: "5.19.3")
],
Expand Down
2 changes: 1 addition & 1 deletion Sources/KukaiCoreSwift/Models/LedgerWallet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,6 @@ public class LedgerWallet: Wallet {
*/
public func publicKeyBase58encoded() -> String {
let publicKeyData = Data(hexString: publicKey) ?? Data()
return Base58Check.encode(message: publicKeyData.bytes, prefix: Prefix.Keys.Ed25519.public)
return Base58Check.encode(message: publicKeyData.bytes(), prefix: Prefix.Keys.Ed25519.public)
}
}

0 comments on commit 5902d35

Please sign in to comment.