Skip to content

Commit

Permalink
Minor update to bump up dependency on secp256k1.swift (#1)
Browse files Browse the repository at this point in the history
* updated dependency for secp256k1.swift
* updated from .rawRepresentation to .dataRepresentation
  • Loading branch information
zeugmaster authored Dec 2, 2023
1 parent a495363 commit 2cbe428
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@
}
},
{
"package": "secp256k1",
"package": "secp256k1.swift",
"repositoryURL": "https://github.com/GigaBitcoin/secp256k1.swift.git",
"state": {
"branch": null,
"revision": "abe7c8232970c1fd57f4c77590bce2c868df7137",
"version": "0.5.0"
"revision": "0f5f60ee9ad739c9603c3546c726a109d2c24cbd",
"version": "0.14.0"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ let package = Package(
.package(
name: "secp256k1",
url: "https://github.com/GigaBitcoin/secp256k1.swift.git",
.exact("0.5.0")
.exact("0.14.0")
)
],
targets: [
Expand Down
4 changes: 2 additions & 2 deletions Sources/BIP32/Extensions/secp256k1+Extension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ extension secp256k1 {
try secp256k1
.Signing
.PrivateKey(
rawRepresentation: data,
dataRepresentation: data,
format: .compressed
)
.publicKey
.rawRepresentation
.dataRepresentation
}
}

0 comments on commit 2cbe428

Please sign in to comment.