Skip to content

Commit

Permalink
fix: lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyasbhat0 committed Jul 19, 2024
1 parent b16f92c commit 93ac3bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/claim/keeper/msg_server_claim_thorchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func verifySignature(thorTxMsg *types.MsgThorTxData, verifyTxDataHash, txDataHex
// create data to verify
hash := sha512.Sum512([]byte(txDataHashForVerification))

if !pubkey.VerifySignature(hash[:], proofSignatureDecoded[:]) {
if !pubkey.VerifySignature(hash[:], proofSignatureDecoded) {
return fmt.Errorf("message verification failed")
}

Expand Down

0 comments on commit 93ac3bb

Please sign in to comment.