diff --git a/client/core/core.go b/client/core/core.go index 013a88a068..f42bf89566 100644 --- a/client/core/core.go +++ b/client/core/core.go @@ -7543,10 +7543,7 @@ func checkSigS256(msg, pkBytes, sigBytes []byte) error { } hash := sha256.Sum256(msg) if !signature.Verify(hash[:], pubKey) { - // Might be an older buggy server. (V0PURGE) - if !signature.Verify(msg, pubKey) { - return fmt.Errorf("secp256k1 signature verification failed") - } + return fmt.Errorf("secp256k1 signature verification failed") } return nil }