We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be1f7ea commit 70f9b12Copy full SHA for 70f9b12
1 file changed
pactus/crypto/secp256k1/public_key.py
@@ -61,5 +61,7 @@ def verify(self, msg: bytes, sig: Signature) -> bool:
61
sig_compact = sig.raw_bytes()
62
sig_deserialized = self.pub.ecdsa_deserialize_compact(sig_compact)
63
return self.pub.ecdsa_verify(msg, sig_deserialized)
64
+
65
+ # ruff: noqa: BLE001 # unable to fix this issue
66
except Exception:
67
return False
0 commit comments