Skip to content

Commit

Permalink
Fix function visibility overly permissive
Browse files Browse the repository at this point in the history
  • Loading branch information
vladbochok committed Nov 11, 2024
1 parent d7fabf8 commit 703acc1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ contract VerifierFflonk is IVerifierV2 {
function verify(
uint256[] calldata, // _publicInputs
uint256[] calldata // _proof
) public view virtual returns (bool) {
) external view virtual returns (bool) {
// Beginning of the big inline assembly block that makes all the verification work.
// Note: We use the custom memory layout, so the return value should be returned from the assembly, not
// Solidity code.
Expand Down

0 comments on commit 703acc1

Please sign in to comment.