forge fmt

This commit is contained in:
Luke Parker
2024-09-16 21:34:59 -04:00
parent 4bcea31c2a
commit ae61f3d359
6 changed files with 47 additions and 39 deletions

View File

@@ -4,12 +4,11 @@ pragma solidity ^0.8.26;
import "../Schnorr.sol";
contract TestSchnorr {
function verify(
bytes32 public_key,
bytes calldata message,
bytes32 c,
bytes32 s
) external pure returns (bool) {
function verify(bytes32 public_key, bytes calldata message, bytes32 c, bytes32 s)
external
pure
returns (bool)
{
return Schnorr.verify(public_key, message, c, s);
}
}