Skip to content

Commit

Permalink
Merge pull request #216 from zama-ai/fix-kmsverifier
Browse files Browse the repository at this point in the history
fix: view function scope (KMSVerifier)
  • Loading branch information
PacificYield authored Dec 26, 2024
2 parents b594c64 + 34e8d7b commit 01ff47d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/contracts/KMSVerifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ contract KMSVerifier is UUPSUpgradeable, Ownable2StepUpgradeable, EIP712Upgradea

function _authorizeUpgrade(address _newImplementation) internal virtual override onlyOwner {}

function isSigner(address account) public virtual returns (bool) {
function isSigner(address account) public view virtual returns (bool) {
KMSVerifierStorage storage $ = _getKMSVerifierStorage();
return $.isSigner[account];
}
Expand Down

0 comments on commit 01ff47d

Please sign in to comment.