From 8c3ff42c4cf7572b35a3c1ef66a8d5ce9e9340d5 Mon Sep 17 00:00:00 2001 From: anish-ritual Date: Tue, 26 Nov 2024 05:33:58 -0500 Subject: [PATCH] quickfix: remove unnecessary VerificationFailed() error in Verifier --- test/zk/Verifier.sol | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/zk/Verifier.sol b/test/zk/Verifier.sol index 6ee6e7c..8d6327c 100644 --- a/test/zk/Verifier.sol +++ b/test/zk/Verifier.sol @@ -10,14 +10,6 @@ contract Verifier { bytes private constant EXPECTED_PROOF = bytes("generic-zk-proof"); - /*////////////////////////////////////////////////////////////// - ERRORS - //////////////////////////////////////////////////////////////*/ - - /// @notice Thrown by `verifyProof` if proof verification fails - /// @dev 4-byte signature: `0x439cc0cd` - error VerificationFailed(); - /*////////////////////////////////////////////////////////////// FUNCTIONS //////////////////////////////////////////////////////////////*/