mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-04 22:33:11 +00:00
16 lines
293 B
Solidity
16 lines
293 B
Solidity
|
|
// SPDX-License-Identifier: MIT
|
||
|
|
pragma solidity ^0.8.8;
|
||
|
|
|
||
|
|
import "./Verifier.sol";
|
||
|
|
|
||
|
|
contract TestVerifier is IVerifier {
|
||
|
|
function verifyProof(
|
||
|
|
uint[2] calldata,
|
||
|
|
uint[2][2] calldata,
|
||
|
|
uint[2] calldata,
|
||
|
|
uint[3] calldata
|
||
|
|
) external pure returns (bool) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
}
|