Skip to content

Commit 42c8bbe

Browse files
committed
style: fix linter warning
1 parent 7c90f35 commit 42c8bbe

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

contracts/test/proofs/DeltaProof.t.sol

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ import {SignMagnitude} from "../libs/SignMagnitude.sol";
1414
import {TxGen} from "../libs/TxGen.sol";
1515

1616
library DeltaFuzzing {
17-
/// @dev This function exposes `Delta.verify` for the fuzzer.
18-
function verify(bytes memory proof, uint256[2] memory instance, bytes32 verifyingKey) public pure {
19-
Delta.verify({proof: proof, instance: instance, verifyingKey: verifyingKey});
20-
}
21-
2217
struct InstanceInputsExceptKind {
2318
uint256 valueCommitmentRandomness;
2419
uint128 quantity;
2520
bool consumed;
2621
}
22+
23+
/// @dev This function exposes `Delta.verify` for the fuzzer.
24+
function verify(bytes memory proof, uint256[2] memory instance, bytes32 verifyingKey) public pure {
25+
Delta.verify({proof: proof, instance: instance, verifyingKey: verifyingKey});
26+
}
2727
}
2828

2929
contract DeltaProofTest is Test {

0 commit comments

Comments
 (0)