diff --git a/x/claim/keeper/msg_server_claim_thorchain.go b/x/claim/keeper/msg_server_claim_thorchain.go index c3e1adb8..1e4e439d 100644 --- a/x/claim/keeper/msg_server_claim_thorchain.go +++ b/x/claim/keeper/msg_server_claim_thorchain.go @@ -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") }