From be91d486168ac240ee075202b6a777c146e21396 Mon Sep 17 00:00:00 2001 From: xhad Date: Thu, 7 Mar 2024 00:44:37 -0500 Subject: [PATCH] Fix the function name for the cancel signature --- src/Common.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common.sol b/src/Common.sol index defb3b2..5448561 100644 --- a/src/Common.sol +++ b/src/Common.sol @@ -34,5 +34,5 @@ abstract contract Common is Initializable, ReentrancyGuard, Context, ERC721Holde bytes32 internal constant DOMAIN_SEPARATOR_TYPEHASH= 0x47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a79469218; // Function signature for the cancelProposal function. - bytes4 internal constant CANCEL_PROPOSAL_SELECTOR = bytes4(abi.encodeWithSignature("cancelProposal(uint256)")); + bytes4 internal constant CANCEL_PROPOSAL_SELECTOR = bytes4(abi.encodeWithSignature("cancel(uint256)")); } \ No newline at end of file