mirror of
https://github.com/codex-storage/codex-contracts-eth.git
synced 2025-01-10 20:06:09 +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;
|
||
|
}
|
||
|
}
|