Files
tokenbound/test/mocks/MockReverter.sol
Jayden Windle 6a9ebf78de Increased test coverage to 100% (#7)
* Brought test coverage up to 100% for core contracts

* Fixed warnings
2023-01-09 12:23:24 -08:00

12 lines
204 B
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
contract MockReverter {
error MockError();
function fail() external pure returns (uint256) {
revert MockError();
}
}