Skip to content

Commit

Permalink
fix: remove extra white space
Browse files Browse the repository at this point in the history
  • Loading branch information
elribonazo committed Apr 29, 2024
1 parent 519e7b7 commit 74295dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ actual class Secp256k1Lib actual constructor() {
): Boolean {
val normalised = this.normalise(signature)
val sha = SHA256().digest(data)
if (secp256k1.verify( normalised, sha.asUint8Array(), publicKey.asUint8Array(), {})) {
if (secp256k1.verify(normalised, sha.asUint8Array(), publicKey.asUint8Array(), {})) {
return true
}
val transcoded = transcodeSignatureToBitcoin(normalised.toCompactRawBytes().asByteArray())
Expand Down

0 comments on commit 74295dc

Please sign in to comment.