Skip to content

Commit

Permalink
fix: apply linter suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
xorsal committed Oct 8, 2024
1 parent f27f3d0 commit 900a06c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion solidity/test/mocks/MockCallback.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ contract MockCallback is IProphetCallback {
contract MockFailCallback is IProphetCallback {
error MockFailCallback_Fail();

function prophetCallback(bytes calldata /* _callData */ ) external pure returns (bytes memory /* _callResponse */ ) {
function prophetCallback(bytes calldata /* _callData */ ) external pure returns (bytes memory _callResponse) {
_callResponse = abi.encode(false);
revert MockFailCallback_Fail();
}
}

0 comments on commit 900a06c

Please sign in to comment.